/* Additional styles */
.transition{
-webkit-transition: all 0.2s ease-out;  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
transition: all 0.2s ease-out;  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}

.bg-dark-grey{
    background-color: #222;
    color: #eeeded;
}

.bg-dark-grey a:link{
    color: #eeeded;
}

/* text size options */
.text-size-larger{
    font-size: 18px;
}

.text-size-largest{
    font-size: 24px;
}

/*Table styles */
.table-head{
    background-color: rgba(37, 77, 99, 0.31);
}

/*FooTable icons */
span.footable-toggle{
    font-size: 12px !important;
    color: #222 !important;
    padding-right: 15px !important;
}

/*bubble pointer arrow box /right */
.arrow_box {
    position: relative;
    background: #222;
}
.arrow_box:after {
    left: 100%;
    top: 50%;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(34, 34, 34, 0);
    border-left-color: #222;
    border-width: 10px;
    margin-top: -10px;
}

/*icon tabs */
.quote-icons-wrapper{
    text-align: center;
    padding: 5px 20px;
    cursor: pointer;
}

.quote-icons-wrapper .panel {
    padding: 15px 30px;
    opacity: 0.6;
    height: 130px;
    line-height: 18px;

}

img.quote-icon{
    margin-bottom: 15px;
    height: 40px;
    width: auto;
}

.quote-icons-wrapper .active{
    border: solid 1px #4CAF50;
    border-top-width: 5px;
    color: #222;
    font-weight: bold;
    opacity: 1.0;
}

.quote-icons-wrapper span {
    display: block;
    font-size: 16px;
}


.quote-icons-wrapper .error{
    border: solid 2px #F44336;
}


/*Panels*/

.active-panel{
    visibility: visible;
}

.inactive-panel{
    visibility: hidden;

}

/* ------------------------------------------------------------------------------
 *
 *  # Form Validation
 *
 *  jQuery plugin for simple clientside form validation
 *
 *  Version: 1.0
 *  Latest update: May 25, 2015
 *
 * ---------------------------------------------------------------------------- */
.validation-error-label,
.validation-valid-label {
    margin-top: 8px;
    margin-bottom: 8px;
    display: block;
    color: #F44336;
    position: relative;
    padding-left: 26px;
}
.validation-valid-label {
    color: #4CAF50;
}
.validation-error-label:before,
.validation-valid-label:before {
    font-family: 'icomoon';
    position: absolute;
    top: 2px;
    left: 0;
    display: inline-block;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}
.validation-error-label:empty,
.validation-valid-label:empty {
    display: none;
}
.validation-error-label:before {
    content: '\ed63';
}
.validation-valid-label:before {
    content: '\ee73';
}


/*Form styles */
.control-label{
    color: #004b55;
    font-weight:bold;
}

#coverages-form .form-group{
    border-radius: 5px;
    border: solid 1px #ddd;
    padding: 5px 5px;
    margin: 5px;
}


/* Mobile */

@media screen and (max-width: 600px ){
.quote-icons-wrapper span{
    font-size: 12px;
}
    img.quote-icon{
        height: 40px;
        width: auto;
        margin-bottom: 10px;
    }
    .quote-icons-wrapper .panel {
        padding: 10px 10px;
        height: 100px;
    }

}

@media screen and (min-width: 1025px) and (max-width: 1300px){
    img.quote-icon{
        height: 40px;
        width: auto;
        margin-bottom: 10px;
    }
    .quote-icons-wrapper {
        padding: 10px 10px;

    }

}