:root {
    --accent: #75aaf8;
    --border-width: 6px;
    --border-radius: 55px;
    --font-size: 18px;
}
#toggle1, #toggle2 {
    position: relative;
    border: solid var(--border-width) var(--accent);
    border-radius: var(--border-radius);
    transition: transform cubic-bezier(0, 0, 0.30, 2) .4s;
    transform-style: preserve-3d;
    perspective: 800px;
    display: flex;
}

#toggle1>input[type="radio"], #toggle2>input[type="radio"] {
    display: none;
}

#toggle1>#choice1:checked~#flap1, #toggle2>#choice3:checked~#flap2 {
    transform: rotateY(-180deg);
}

#toggle1>#choice1:checked~#flap1>.content1, #toggle2>#choice3:checked~#flap2>.content2 {
    transform: rotateY(-180deg);
}

#toggle1>#choice2:checked~#flap1, #toggle2>#choice4:checked~#flap2 {
    transform: rotateY(0deg);
}

#toggle1>label, #toggle2>label {
    display: inline-block;
    min-width: 66px;
    padding: 0;
    font-size: var(--font-size);
    text-align: center;
    color: var(--accent);
    cursor: pointer;
    margin-bottom: 0;
}

#toggle1>label, #toggle2>label,
#toggle1>#flap1, #toggle2>#flap2 {
    font-weight: 500;
    text-transform: capitalize;
}

#toggle1>#flap1, #toggle2>#flap2 {
    position: absolute;
    top: calc( 0px - var(--border-width));
    left: 50%;
    height: calc(100% + var(--border-width) * 2);
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--font-size);
    background-color: var(--accent);
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    transform-style: preserve-3d;
    transform-origin: left;
    transition: transform cubic-bezier(0.4, 0, 0.2, 1) .5s;
}

#toggle1>#flap1>.content1, #toggle2>#flap2>.content2 {
    color: #fff;
    transition: transform 0s linear .25s;
    transform-style: preserve-3d;
}

.option-icon {
    display: none;
}
.option-icon img {
    max-width: 100%;
    height: auto;
}
.toggle .option-title {
    text-align: left;
    margin: 10px 0;
}
a.info-bubble {
    padding: 0 0 0 4px;
    color: #bcbcbc;
    transition: all .2s ease-in-out;
    -webkit-backface-visibility: hidden;
}
svg:not(:root).svg-inline--fa {
    overflow: visible;
}
.svg-inline--fa.fa-w-16 {
    width: 1em;
}
.svg-inline--fa {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -.125em;
}

@media (min-width: 1000px) {
    .option-icon {
        display: inline-block;
    }
    .option-title{
        margin: 0;
    }
}

.custom-control-label {
    margin-top: 40px;
}
.mortgagee-btn {
    background-color: #04aee8;
    border: 0;
    color: #fff;
    border-radius: 4px;
    padding: 8px 30px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: .1em;
    margin-top: 30px;
    transition: all .2s ease-in-out;
}
.mortgagee-btn:hover, .mortgagee-btn:focus {
    color: #ffffff;
}
.remove {
    background-color: #ff0082;
    border: 0;
    color: #fff;
    border-radius: 4px;
    padding: 8px 30px;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: .1em;
    margin-top: 30px;
    transition: all .2s ease-in-out;
}
.chekout-details-section {
    background-color: #f3f3f3;
    border: 1px solid #c8c8c8;
    padding: 20px;
}
.effective-date-section, .property-address-section, .property-details-section, .deductible-section,
.coverage-detail-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.checkout-section-title {
    color: #04aee8;
}
.property-detail-title {
    line-height: 1em;
    color: #7d7d7d;
}
.checkout-totals {
    color: #04aee8;
    font-weight: 700;
}
.checkout-section .div-block-12 {
    height: auto !important;
    margin-top: 0 !important;
    width: auto !important;
}
a:hover, a:focus {
    text-decoration: none;
    color: inherit;
}
.checkout-calculated-section {
    position: sticky;
    top: 112px;
}
.ui-datepicker {
    width: 100%;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: 1px solid #eeeeee;
    background: #04aee8;
    color: #ffffff;
}
.ui-autocomplete {
    z-index: 1541;
}
#editDeductible input[type="radio"] {
    width: 80px;
    height: 40px;
    border-radius: 10px;
    border: 2px solid #c8c8c8;
    background-color: white;
    -webkit-appearance: none; /*to disable the default appearance of radio button*/
    -moz-appearance: none;
    cursor: pointer;
}

#editDeductible input[type="radio"]:focus { /*no need, if you don't disable default appearance*/
    outline-color: transparent; /*to remove the square border on focus*/
}

#editDeductible input[type="radio"]:checked { /*no need, if you don't disable default appearance*/
    background-color: #04aee8;
    border: 2px solid #04aee8;
}

#editDeductible input[type="radio"]:checked ~ span {
    color: white;
}

#editDeductible label span {
    position: relative;
    left: 0;
    top: -38px;
    font-size: 16px;
    color: #212529;
    cursor: pointer;
}
#ErrorSection {
    margin: 80px;
    flex-wrap: wrap;
}
#mailingAddressSection {
    display: none;
}
#removeMailingAddressBtn {
    background-color: #ff0082 !important;
}

@media (max-width: 767px) {
    #ErrorSection {
        margin: 10px 0 10px 0;
    }
}

@media (max-width: 575px) {
    #toggle1, #toggle2 {
        width: 145px;
        margin-top: 15px;
    }
    .form-block-3-copy {
        min-width: 200px;
    }
    .mortgagee-btn {
        padding: 8px 8px;
        font-weight: 600;
        font-size: 11px;
    }
    .chekout-details-section {
        padding: 15px 10px;
    }
}
