﻿/******** Forms - start *******/

.error {
    display: block;
    clear: both;
    padding-top: 5px;
}

.control-label {
    display: block;
}

.form-section {
    position: relative;
}

.form-section + .form-section {
    margin-top: 45px;
    border-top: 1px solid #ddd;
    padding-top: 45px;
}

.form-section h3,
h3.subheading {
    font-size: 30px;
    margin-bottom: 45px;
    margin-top: 0;
}

.form-submit {
    border: 3px solid #ddd;
    padding: 15px;
    background-color: #eee;
    margin-top: 45px;
}

.form-submit:before,
.form-submit:after {
    display: table;
    content: " ";
}

.form-submit:after {
    clear: both;
}

.title-number {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: #ac173b;
    color: white;
    border-radius: 40px;
    font-size: 30px;
    margin-right: 15px;
}

.btn {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 35px;
    padding-right: 35px;
    border-radius: 0;
    height: 50px;
    line-height: 50px;
    min-width: 175px;
    font-size: 18px;
}

.btn-sm {
    padding: 5px 10px !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    height: auto !important;
    min-width: unset !important;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: #ac173b;
    border-color: #ac173b;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    opacity: .5;
}

.btn-next,
.btn-cancel {
    font-family: 'FontAwesome', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.form-submit > .btn {
    float: right;
}
.form-submit > .btn-cancel {
    float: left;
}

.form-control.error {
    border-color: red;
}

.form-group {
    margin-bottom: 35px;
}

.form-section .form-group:last-child {
    margin-bottom: 0;
}

.input-group-addon > .fa {
    width: 25px;
    text-align: center;
    font-size: 18px;
}

@media (min-width: 992px) {
    
}

@media (max-width: 767px) {
    .form-submit {
        padding: 5px;
    }

    .form-section > .panel-cta {
        margin-bottom: 35px;
    }

    .btn {
        padding-left: 20px;
        padding-right: 20px;
        height: 40px;
        line-height: 40px;
        min-width: 125px;
        font-size: inherit;
    }

    .title-number {
        width: 50px;
        height: 50px;
        line-height: 50px;
        border-radius: 25px;
        font-size: 20px;
        margin-right: 8px;
    }

    h3 {
        position: relative;
    }

    h3 > .title-number {
        float: left;
        margin-top: -10px;
    }

    .check-blocks > label {
        display: block;
        margin-bottom: 25px;
    }
}

/******** Forms - end *******/

/* --- */

/******** Shop - start *******/

.cart {
    margin-bottom: 35px;
}

.cart-item {
    border: solid 1px #ddd;
    border-radius: 4px;
    position: relative;
    padding: 20px;
}

.cart-item + .cart-item {
    margin-top: 35px;
}

.cart-item > h4,
.cart-total > h4 {
    margin-top: 0;
    color: #ac173b;
    font-size: 18px;
    margin-bottom: 20px;
}

.cart-item > .cart-cost {
    font-weight: bold;
}

.cart-total {
    border: solid 1px #ddd;
    padding: 20px;
    border-radius: 4px;
}

.cart-total > h4 {
    margin-bottom: 25px;
}

.cart .dl-horizontal {
    border-bottom: solid 1px #ddd;
}

.cart .dl-horizontal dt {
    padding-bottom: 5px;
    padding-top: 10px;
    border-top: solid 1px #ddd;
}

@media (min-width: 768px) {
    .cart-item > .cart-cta {
        position: absolute;
        bottom: 20px;
        right: 20px;
        margin-bottom: 0;
    }

    .cart .dl-horizontal dt {
        width: 65%;        
        text-overflow: unset;
        overflow: visible;
        white-space: normal;
        text-align: left;
        
    }

    .cart .dl-horizontal dd {
        margin-left: 65%;
        padding-bottom: 5px;
        padding-top: 10px;
        border-top: solid 1px #ddd;
    }
}

@media (max-width: 767px) {
    .cart-item,
    .cart-total {
        padding: 10px;
    }

    .cart-cta {
        margin-bottom: 0;
        text-align: right;
    }

    .cart .dl-horizontal dd {
        padding-bottom: 10px;
    }
}

/******** Shop - end *******/

/* --- */

/******** Custom - start *******/

.text-highlight {
    color: #ac173b;
}

hr {
    margin: 35px 0;
    border-top: 3px solid #eee;
}

.panel-summary {
    border: 1px solid #ddd;
    padding: 20px;
    background-color: #fff;
    margin-bottom: 35px;
    border-radius: 4px;
}

.panel-summary h4 {
    margin-top: 0;
    color: #ac173b;
    font-size: 18px;
    margin-bottom: 25px;
}

.panel-summary .dl-horizontal {
    margin-bottom: 0;
}

.panel-summary .dl-horizontal dd {
    padding-bottom: 8px;
}

.iframe-container {
    width: calc(100% - 20px);
}

h3 > .sfs-popover {
    position: relative;
    top: -4px;
    font-size: 18px;
}

@media (min-width: 768px) {
    .panel-summary .dl-horizontal dt {
        width: 30%;
        padding-bottom: 8px;
        text-overflow: unset;
        overflow: visible;
        white-space: normal;
        text-align: left;
    }

    .panel-summary .dl-horizontal dd {
        margin-left: calc(30% + 20px);
    }
}

@media (max-width: 991px) {
    .col-margin-sm {
        margin-top: 35px;
    }
}

@media (max-width: 768px) {
    .col-margin-xs {
        margin-top: 35px;
    }
}

@media (max-width: 767px) {
    .panel-summary {
        padding: 10px;
    }
}

/******** Custom - end *******/