/* = Sweet alert ====================================================== */

body.stop-scrolling {
    height: 100%;
    overflow: hidden
}

.sweet-overlay {
    background-color: black;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    z-index: 10000
}

.sweet-alert {
    background-color: white;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    width: 478px;
    padding: 17px;
    border-radius: 5px;
    text-align: center;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -256px;
    margin-top: -200px;
    overflow: hidden;
    display: none;
    z-index: 99999
}

@media all and (max-width: 540px) {
    .sweet-alert {
        width: auto;
        margin-left: 0;
        margin-right: 0;
        left: 15px;
        right: 15px
    }
}

.sweet-alert h2 {
    color: #0098F0;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    text-transform: none;
    position: relative;
    margin: 25px 0;
    padding: 0;
    line-height: 40px;
    display: block
}

.sweet-alert p {
    color: #797979;
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    position: relative;
    text-align: inherit;
    float: none;
    margin: 0;
    padding: 0;
    line-height: normal
}

.sweet-alert fieldset {
    border: none;
    position: relative
}

.sweet-alert .sa-error-container {
    background-color: #f1f1f1;
    margin-left: -17px;
    margin-right: -17px;
    overflow: hidden;
    padding: 0 10px;
    max-height: 0;
    webkit-transition: padding 0.15s, max-height 0.15s;
    transition: padding 0.15s, max-height 0.15s
}

.sweet-alert .sa-error-container.show {
    padding: 10px 0;
    max-height: 100px;
    webkit-transition: padding 0.2s, max-height 0.2s;
    transition: padding 0.25s, max-height 0.25s
}

.sweet-alert .sa-error-container .icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ea7d7d;
    color: white;
    line-height: 24px;
    text-align: center;
    margin-right: 3px
}

.sweet-alert .sa-error-container p {
    display: inline-block
}

.sweet-alert .sa-input-error {
    position: absolute;
    top: 29px;
    right: 26px;
    width: 20px;
    height: 20px;
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.1s;
    transition: all 0.1s
}

.sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
    content: "";
    width: 20px;
    height: 6px;
    background-color: #f06e57;
    border-radius: 3px;
    position: absolute;
    top: 50%;
    margin-top: -4px;
    left: 50%;
    margin-left: -9px
}

.sweet-alert .sa-input-error::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.sweet-alert .sa-input-error::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.sweet-alert .sa-input-error.show {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.sweet-alert input {
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #d7d7d7;
    height: 43px;
    margin-top: 10px;
    margin-bottom: 17px;
    font-size: 18px;
    box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
    padding: 0 12px;
    display: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s
}

.sweet-alert input:focus {
    outline: none;
    box-shadow: 0px 0px 3px #c4e6f5;
    border: 1px solid #b4dbed
}

.sweet-alert input:focus::-moz-placeholder {
    transition: opacity 0.3s 0.03s ease;
    opacity: 0.5
}

.sweet-alert input:focus:-ms-input-placeholder {
    transition: opacity 0.3s 0.03s ease;
    opacity: 0.5
}

.sweet-alert input:focus::-webkit-input-placeholder {
    transition: opacity 0.3s 0.03s ease;
    opacity: 0.5
}

.sweet-alert input::-moz-placeholder {
    color: #bdbdbd
}

.sweet-alert input:-ms-input-placeholder {
    color: #bdbdbd
}

.sweet-alert input::-webkit-input-placeholder {
    color: #bdbdbd
}

.sweet-alert.show-input input {
    display: block
}

.sweet-alert .sa-confirm-button-container {
    display: inline-block;
    position: relative
}

.sweet-alert .la-ball-fall {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -27px;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden
}

.sweet-alert button {
    background-color: #8CD4F5;
    color: white;
    border: none;
    box-shadow: none;
    font-size: 17px;
    font-weight: 500;
    -webkit-border-radius: 4px;
    border-radius: 5px;
    margin: 26px 5px 0 5px;
    cursor: pointer;
    padding: 20px 30px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.sweet-alert button:focus {
    outline: none;
    box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05)
}

.sweet-alert button:hover {
    background-color: #7ecff4
}

.sweet-alert button:active {
    background-color: #5dc2f1
}

.sweet-alert button.cancel {
    background-color: #C1C1C1
}

.sweet-alert button.cancel:hover {
    background-color: #b9b9b9
}

.sweet-alert button.cancel:active {
    background-color: #a8a8a8
}

.sweet-alert button.cancel:focus {
    box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.04706) 0px 0px 0px 1px inset !important
}

.sweet-alert button[disabled] {
    opacity: .6;
    cursor: default
}

.sweet-alert button.confirm[disabled] {
    color: transparent
}

.sweet-alert button.confirm[disabled]~.la-ball-fall {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s
}

.sweet-alert button::-moz-focus-inner {
    border: 0
}

.sweet-alert[data-has-cancel-button=false] button {
    box-shadow: none !important
}

.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
    padding-bottom: 40px
}

.sweet-alert .sa-icon {
    width: 80px;
    height: 80px;
    border: 4px solid gray;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border-radius: 50%;
    margin: 20px auto;
    padding: 0;
    position: relative;
    box-sizing: content-box
}

.sweet-alert .sa-icon.sa-error {
    border-color: #F27474
}

.sweet-alert .sa-icon.sa-error .sa-x-mark {
    position: relative;
    display: block
}

.sweet-alert .sa-icon.sa-error .sa-line {
    position: absolute;
    height: 5px;
    width: 47px;
    background-color: #F27474;
    display: block;
    top: 37px;
    border-radius: 2px
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 17px
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 16px
}

.sweet-alert .sa-icon.sa-warning {
    border-color: #F8BB86
}

.sweet-alert .sa-icon.sa-warning .sa-body {
    position: absolute;
    width: 5px;
    height: 47px;
    left: 50%;
    top: 10px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    margin-left: -2px;
    background-color: #F8BB86
}

.sweet-alert .sa-icon.sa-warning .sa-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-left: -3px;
    left: 50%;
    bottom: 10px;
    background-color: #F8BB86
}

.sweet-alert .sa-icon.sa-info {
    border-color: #C9DAE1
}

.sweet-alert .sa-icon.sa-info::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 29px;
    left: 50%;
    bottom: 17px;
    border-radius: 2px;
    margin-left: -2px;
    background-color: #C9DAE1
}

.sweet-alert .sa-icon.sa-info::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-left: -3px;
    top: 19px;
    background-color: #C9DAE1
}

.sweet-alert .sa-icon.sa-success {
    border-color: #A5DC86
}

.sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
    content: '';
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border-radius: 50%;
    position: absolute;
    width: 60px;
    height: 120px;
    background: white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.sweet-alert .sa-icon.sa-success::before {
    -webkit-border-radius: 120px 0 0 120px;
    border-radius: 120px 0 0 120px;
    top: -7px;
    left: -33px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 60px 60px;
    transform-origin: 60px 60px
}

.sweet-alert .sa-icon.sa-success::after {
    -webkit-border-radius: 0 120px 120px 0;
    border-radius: 0 120px 120px 0;
    top: -11px;
    left: 30px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 0px 60px;
    transform-origin: 0px 60px
}

.sweet-alert .sa-icon.sa-success .sa-placeholder {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(165, 220, 134, 0.2);
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
    left: -4px;
    top: -4px;
    z-index: 2
}

.sweet-alert .sa-icon.sa-success .sa-fix {
    width: 5px;
    height: 90px;
    background-color: white;
    position: absolute;
    left: 28px;
    top: 8px;
    z-index: 1;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.sweet-alert .sa-icon.sa-success .sa-line {
    height: 5px;
    background-color: #A5DC86;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 2
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
    width: 25px;
    left: 14px;
    top: 46px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
    width: 47px;
    right: 8px;
    top: 38px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.sweet-alert .sa-icon.sa-custom {
    background-size: contain;
    border-radius: 0;
    border: none;
    background-position: center center;
    background-repeat: no-repeat
}

.sweet-alert button {
    background-color: #24408E !important
}

.sweet-alert button:hover {
    color: #fff
}

@-webkit-keyframes showSweetAlert {
    0% {
        transform: scale(0.7);
        -webkit-transform: scale(0.7)
    }
    45% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05)
    }
    80% {
        transform: scale(0.95);
        -webkit-transform: scale(0.95)
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}

@keyframes showSweetAlert {
    0% {
        transform: scale(0.7);
        -webkit-transform: scale(0.7)
    }
    45% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05)
    }
    80% {
        transform: scale(0.95);
        -webkit-transform: scale(0.95)
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}

@-webkit-keyframes hideSweetAlert {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
    100% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5)
    }
}

@keyframes hideSweetAlert {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
    100% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5)
    }
}

@-webkit-keyframes slideFromTop {
    0% {
        top: 0%
    }
    100% {
        top: 50%
    }
}

@keyframes slideFromTop {
    0% {
        top: 0%
    }
    100% {
        top: 50%
    }
}

@-webkit-keyframes slideToTop {
    0% {
        top: 50%
    }
    100% {
        top: 0%
    }
}

@keyframes slideToTop {
    0% {
        top: 50%
    }
    100% {
        top: 0%
    }
}

@-webkit-keyframes slideFromBottom {
    0% {
        top: 70%
    }
    100% {
        top: 50%
    }
}

@keyframes slideFromBottom {
    0% {
        top: 70%
    }
    100% {
        top: 50%
    }
}

@-webkit-keyframes slideToBottom {
    0% {
        top: 50%
    }
    100% {
        top: 70%
    }
}

@keyframes slideToBottom {
    0% {
        top: 50%
    }
    100% {
        top: 70%
    }
}

.showSweetAlert[data-animation=pop] {
    -webkit-animation: showSweetAlert 0.3s;
    animation: showSweetAlert 0.3s
}

.showSweetAlert[data-animation=none] {
    -webkit-animation: none;
    animation: none
}

.showSweetAlert[data-animation=slide-from-top] {
    -webkit-animation: slideFromTop 0.3s;
    animation: slideFromTop 0.3s
}

.showSweetAlert[data-animation=slide-from-bottom] {
    -webkit-animation: slideFromBottom 0.3s;
    animation: slideFromBottom 0.3s
}

.hideSweetAlert[data-animation=pop] {
    -webkit-animation: hideSweetAlert 0.2s;
    animation: hideSweetAlert 0.2s
}

.hideSweetAlert[data-animation=none] {
    -webkit-animation: none;
    animation: none
}

.hideSweetAlert[data-animation=slide-from-top] {
    -webkit-animation: slideToTop 0.4s;
    animation: slideToTop 0.4s
}

.hideSweetAlert[data-animation=slide-from-bottom] {
    -webkit-animation: slideToBottom 0.3s;
    animation: slideToBottom 0.3s
}

@-webkit-keyframes animateSuccessTip {
    0% {
        width: 0;
        left: 1px;
        top: 19px
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px
    }
}

@keyframes animateSuccessTip {
    0% {
        width: 0;
        left: 1px;
        top: 19px
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px
    }
}

@-webkit-keyframes animateSuccessLong {
    0% {
        width: 0;
        right: 46px;
        top: 54px
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px
    }
}

@keyframes animateSuccessLong {
    0% {
        width: 0;
        right: 46px;
        top: 54px
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px
    }
}

@-webkit-keyframes rotatePlaceholder {
    0% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg)
    }
    5% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg)
    }
    12% {
        transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg)
    }
    100% {
        transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg)
    }
}

@keyframes rotatePlaceholder {
    0% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg)
    }
    5% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg)
    }
    12% {
        transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg)
    }
    100% {
        transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg)
    }
}

.animateSuccessTip {
    -webkit-animation: animateSuccessTip 0.75s;
    animation: animateSuccessTip 0.75s
}

.animateSuccessLong {
    -webkit-animation: animateSuccessLong 0.75s;
    animation: animateSuccessLong 0.75s
}

.sa-icon.sa-success.animate::after {
    -webkit-animation: rotatePlaceholder 4.25s ease-in;
    animation: rotatePlaceholder 4.25s ease-in
}

@-webkit-keyframes animateErrorIcon {
    0% {
        transform: rotateX(100deg);
        -webkit-transform: rotateX(100deg);
        opacity: 0
    }
    100% {
        transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
        opacity: 1
    }
}

@keyframes animateErrorIcon {
    0% {
        transform: rotateX(100deg);
        -webkit-transform: rotateX(100deg);
        opacity: 0
    }
    100% {
        transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
        opacity: 1
    }
}

.animateErrorIcon {
    -webkit-animation: animateErrorIcon 0.5s;
    animation: animateErrorIcon 0.5s
}

@-webkit-keyframes animateXMark {
    0% {
        transform: scale(0.4);
        -webkit-transform: scale(0.4);
        margin-top: 26px;
        opacity: 0
    }
    50% {
        transform: scale(0.4);
        -webkit-transform: scale(0.4);
        margin-top: 26px;
        opacity: 0
    }
    80% {
        transform: scale(1.15);
        -webkit-transform: scale(1.15);
        margin-top: -6px
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        margin-top: 0;
        opacity: 1
    }
}

@keyframes animateXMark {
    0% {
        transform: scale(0.4);
        -webkit-transform: scale(0.4);
        margin-top: 26px;
        opacity: 0
    }
    50% {
        transform: scale(0.4);
        -webkit-transform: scale(0.4);
        margin-top: 26px;
        opacity: 0
    }
    80% {
        transform: scale(1.15);
        -webkit-transform: scale(1.15);
        margin-top: -6px
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        margin-top: 0;
        opacity: 1
    }
}

.animateXMark {
    -webkit-animation: animateXMark 0.5s;
    animation: animateXMark 0.5s
}

@-webkit-keyframes pulseWarning {
    0% {
        border-color: #F8D486
    }
    100% {
        border-color: #F8BB86
    }
}

@keyframes pulseWarning {
    0% {
        border-color: #F8D486
    }
    100% {
        border-color: #F8BB86
    }
}

.pulseWarning {
    -webkit-animation: pulseWarning 0.75s infinite alternate;
    animation: pulseWarning 0.75s infinite alternate
}

@-webkit-keyframes pulseWarningIns {
    0% {
        background-color: #F8D486
    }
    100% {
        background-color: #F8BB86
    }
}

@keyframes pulseWarningIns {
    0% {
        background-color: #F8D486
    }
    100% {
        background-color: #F8BB86
    }
}

.pulseWarningIns {
    -webkit-animation: pulseWarningIns 0.75s infinite alternate;
    animation: pulseWarningIns 0.75s infinite alternate
}

@-webkit-keyframes rotate-loading {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
    -ms-transform: rotate(45deg) 9
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
    -ms-transform: rotate(-45deg) 9
}

.sweet-alert .sa-icon.sa-success {
    border-color: transparent9
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
    -ms-transform: rotate(45deg) 9
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
    -ms-transform: rotate(-45deg) 9
}

@charset "utf-8";
/* CSS Document */

@import url("https://use.typekit.net/gki8nym.css");
/* Custom 
@media screen and (max-width: 1025px) {
    .large-8 {
    	width: 100%;
    }
}*/

.font-normal {
    font-weight: 400 !important;
}

.pointer-events-none {
    pointer-events: none;
}

.no-lft-mar {
    margin-left: 0 !important;
}

.no-rgt-mar {
    margin-right: 0 !important;
}

h1, h2, h3, h4, h5 {
    color: #0098F0;
    font-family: Gotham, sans-serif;
    font-weight: 300;
    line-height: 1.4;
    margin: 0;
}

.dp4-swal button.confirm {
    font-family: Gotham, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    border: solid 1px #24408E;
    background-color: #24408E !important;
    min-width: 120px;
    padding: 10.5px 20px;
    border-radius: 50px;
}
/* To fix by Ryan
p {
    text-align: left;
}
*/
.border-top-grey {
    border-top: 1px solid #F0F0F0;
}
.border-btm-grey {
    border-bottom: 1px solid #F0F0F0;
}

.bg-light-blue {
    background-color: #f3fcff;
}

.pad-20 {
    padding: 20px;
}
.pad-30 {
    padding: 30px;
}

.display-flex-middle {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
}

.font-36px {
    font-size: 36px;
}

.font-46px {
    font-size: 46px;
}

.float-right-medium {
    float: right;
}

.float-left-medium {
    float: left;
}

ul li, li {
    font-size: 16px;
}

.p-title {
    color: #24408E;
    font-family: "open-sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
}

.p-custom-title, .p-price {
    color: #24408E;
    font-family: "open-sans", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 25px;
}

.p-price span {
    font-size: 14px;
    padding-left: 5px;
}

.p-etc {
    font-size: 16px;
    font-style: italic;
}

.font-h1 {
    font-size: 46px;
    color: #0098F0;
    font-family: Gotham, sans-serif;
    font-weight: 300;
    line-height: 1.4;
}

.p-mini {
    color: #24408e;
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
}

.ul-features li {
    text-align: left;
    line-height: 24px;
    padding-bottom: 10px;
    position: relative;
    padding-left: 30px;
    vertical-align: top;
}

.ul-features li::before {
    content: '•';
    font-size: 35px;
    position: absolute;
    left: 7px;
    top: 0px;
    color: #24408e;
}

.sub-container {
    border: 1px solid #ededed;
    padding: 30px 20px 20px 20px;
    margin-bottom: 20px;
}

.sub-container:last-child {
    margin-bottom: 0;
}

.product-list {
    margin-bottom: 10px;
}

.product-list:last-child {
    margin-bottom: 0;
}

.product-list .price {
    text-align: left;
    padding: 10px;
}

.product-list .btn-main, .product-list .btn-hollow, .product-list .hollow {
    width: 160px;
    padding: 10px 0 !important;
    font-weight: 600;
    text-align: center;
}

.product-list .product-btn {
    text-align: right;
}

.product-list .select-btn {
    text-align: right;
    margin-bottom: 20px;
}

.product-list .product-btn button[disabled], .product-list .product-btn button[disabled="disabled"], .product-list .product-btn button[disabled=""] {
    opacity: 1;
}

.btn-main span {
    padding-left: 20px;
}

.product-list .inline {
    vertical-align: middle;
}

.inline {
    display: inline-block;
    margin-left: -5px;
}

.inline:first-child {
    margin-left: 0;
}


.inline-large-100 {
    width: 100%;
}

.inline-large-50 {
    width: 50%;
}

.inline-large-25 {
    width: 25%;
}

.btn-main, .btn-hollow, .hollow {
    font-family: "open-sans", sans-serif !important;
    font-weight: 600 !important;
    padding: 15px 25px !important;
}

.btn-main:focus {
    background-color: #24408E;
    outline: none;
}

.btn-hollow:focus, .hollow:focus {
    outline: none;
    background: transparent;
}

.btn-main i {
    padding-right: 15px;
}

.btn-medium {
    padding: 10px 0 !important;
    width: 160px;
}

}

button.hollow {
    cursor: pointer;
    font-weight: 600 !important;
}

.border-btm-grey {
    border-bottom: 1px solid #EDEDED;
}
.row.shop-items {
    display: table;
    width: 100%;
    min-height: 100px;
}
.shop-items .column {
    display: table-cell !important;
    vertical-align: middle;
    float: none;
}
.shop-items .column img {
    width: 100%;
}
@media screen and (max-width: 640px) {
    .shop-items .column.img-cart-item {
        display: none !important;
    }
}

@media screen and (max-width: 1150px) {
    .inline-medium-100 {
        width: 100%;
    }
    .inline-medium-50 {
        width: 50%;
    }
    .product-list .price {
        text-align: right;
    }
}

@media screen and (max-width: 39.9375em) {
    .font-h1 {
        font-size: 32px;
    }
    .p-title {
        font-size: 16px;
    }
    .p-custom-title, .p-price {
        font-size: 20px;
    }
    .p-price span {
        font-size: 12px;
    }
    ul li, li {
        font-size: 14px;
    }
    .ul-features li {
        padding-bottom: 5px;
    }
    .ul-features li::before {
        font-size: 25px;
    }
    .p-mini {
        font-size: 12px;
    }
    .inline-small-100 {
        width: 100%;
    }
    .product-list .price {
        text-align: left;
        padding-top: 0;
        padding-left: 0;
    }
    .product-list .select-btn {
        margin-top: 20px;
    }
    .p-etc {
        font-size: 14px;
    }
}

@media screen and (max-width: 639px) {
    .float-right-medium {
        float: left;
    }
    .float-left-medium {
        float: right;
    }
}

/* Introduction */

.log-lnk-dp4 {
    padding-top: 0 !important;
}

.filler-106 {
    width: 100%;
    height: 116px;
}
.filler-68 {
    width: 100%;
    height: 65px;
}

.intro-header {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#24408e+1,00aeef+100 */
    background: #24408e;
    /* Old browsers */
    background: -moz-linear-gradient(left, #24408e 1%, #00aeef 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #24408e 1%, #00aeef 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #24408e 1%, #00aeef 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    background-size: cover;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#24408e', endColorstr='#00aeef', GradientType=1);
    /* IE6-9 */
    position: relative;
}

.intro-header p {
    line-height: 25px;
    margin: 0;
    color: #fff;
    font-weight: normal;
    padding: 15px 0;
}

.intro-header p a {
    color: #fff;
    text-decoration: underline;
}

.footer .footer-top .logo-lnk {
    padding-bottom: 0;
}

.home-hero-dp4-bg {
    z-index: -1;
    background: url(/staging/Images/background-dp4-white.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: -1;
    z-index: -1;
    height: 47rem;
    margin-bottom: -41rem;
}

.with-dp4-bg {
    /*background: url(/staging/Images/background-dp4-white.jpg) center 450px no-repeat;
    background: url(/staging/Images/background-dp4-white.jpg) no-repeat center center fixed;*/
    -webkit-background-size: cover;
    background: #F3FCFF;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/* To fix by Ryan
.image img {
    border-radius: 100px;
    border: 1px solid #f0f0f0;
}*/

.play-video {
    cursor: pointer;
}

.play-video:hover .play-button {
    filter: brightness(120%);
}

.play-button {
    position: absolute;
    top: 42.5%;
    right: 42.5%;
    width: 14%;
}

.dp4-video:hover .play-overlay {
    opacity: 1;
}

.play-overlay {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.play-overlay .play-icon {
    display: table;
    height: 100%;
    margin: 0 auto;
}

.play-overlay .play-icon .icon-play {
    display: table-cell;
    font-size: 50px;
    vertical-align: middle;
    color: #F3FCFF;
}

.overlay-dp4 {
    position: fixed;
    top: 0;
    background: #fefefe;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: table;
}

.overlay-container {
    display: table-cell;
    vertical-align: middle;
}

.overlay-dp4 .img-container {
    max-width: 1280px;
    margin: 0 auto;
}

.overlay-dp4 .close {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 50px;
    color: #ccc;
    cursor: pointer;
    z-index: 101;
}

.overlay-dp4 .close:hover {
    color: #bbb;
}

.overlay-dp4 .wistia_responsive_padding {
    z-index: 100;
}

.overflow-hidden {
    overflow: hidden;
}

.dp4-list-item {
    display: block;
    margin: 50px auto;
}

.dp4-list-item a {
    display: block;
    position: relative;
    max-width: 180px;
    width: 100%;
    margin: auto;
}

.dp4-list-item .image {
    position: relative;
    bottom: 0px;
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0);
    border-radius: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    max-width: 180px;
    margin: 0 auto;
}

.dp4-list-item .image img {
    max-width: 180px;
    border-radius: 100%;
    border: 1px solid #f3f3f3;
}

.dp4-list-item .name {
    text-align: center;
    margin-top: 30px;
}

.dp4-list-item .name p {
    display: inline-block;
    position: relative;
    font-weight: 600;
    line-height: 1.6;
    color: #24408E;
    margin: 0px;
}

.footer .footer-top .footer-case1 {
    margin-bottom: 0 !important;
}

/*.dp4-list-item .name p::before{
    content: "";
    position:absolute;
    width:100%;
    height: 6px;
    background-color: #CCEAFD;
    bottom: 1px;
    z-index: -1;
    -webkit-transition:all 0.4s;
    transition:all 0.4s;
}
---Hover States---
.dp4-list-item:hover .name p::before{
    height: 89%;
}
.dp4-list-item:hover .image{
    box-shadow: 0px 9px 22px 0px rgba(108,108,108,0.2);;
    bottom: 10px;
}*/

.site-accreditation.dp4 {
    width: 100%;
}

.site-accreditation a {
    text-decoration: underline;
}
.logo-container {
	width: 30%;
}
.logo-links {
    width: 70%;
}
@media screen and (max-width: 1024px) {
    .dp4-video {
        padding: 0;
    }
}

@media screen and (max-width: 930px) {
.logo-links {
    width: 100%;
}
	.filler-106 {
    	height: 96px;
    }
    .nav-dropdown ul {
    	font-size: 0;
    }
    .header .header-cont .logo-lnk {
    	margin-bottom: 0;
    }
}

@media screen and (max-width: 650px) {
    .home-hero-dp4-bg {
        display: none;
    }
    .home-hero-dp4-bg-small {
        background: url(/staging/Images/background-dp4-white.jpg) no-repeat center center;
        padding-top: 70px;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }
}

@media screen and (max-width: 640px) {
    .filler-106 {
        height: 96px;
    }
    .nav-dropdown ul {
    	font-size: 0;
    }
    
    .logo-dp4 {
        width: 300px;
    }
    .logo-lnk {
        margin-bottom: 0 !important;
    }
    .logo-lnk img {
        padding: 0 10px;
    }
    .with-dp4-bg {
        /*background: #fefefe;*/
        background: #F3FCFF;
        border-top: 1px solid #f0f0f0;
        border-bottom: 1px solid #f0f0f0;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }
    .logo-lnk {
        width: 100%;
        text-align: center;
        margin-bottom: 0;
    }
    .dp4-md, .dp4-pro {
        padding-top: 50px;
    }
    .dp4-md, .dp4-md p, .dp4-pro, .dp4-pro p {
        text-align: center !important;
    }
}

/* Forms */

.form-group {
    position: relative;
    /* margin-bottom: 20px; */
    margin-bottom: 40px;
    padding-top: 0;
}

.form-group select {
    height: 37px;
    background: url(/staging/Images/icondrop.png) no-repeat right;
}

.form-group input {
    display: block;
    background: none;
    padding: 0.125rem 0.125rem 0.0625rem;
    border-width: 0;
    border-color: transparent;
    line-height: 1.9;
    width: 100%;
    color: #3e3e3e;
    -webkit-transition: all 0.28s ease;
    transition: all 0.28s ease;
    box-shadow: none;
    margin-bottom: 0;
    font-weight: normal;
}

.form-group .bar {
    position: relative;
    border-bottom: 0.0625rem solid #dddddd;
    display: block;
}

.form-group .control-label {
    text-align: left;
    width: 100%;
    position: absolute;
    /*top: 24px;*/
    top: -14px;
    left: 0;
    pointer-events: none;
    padding-left: 0.125rem;
    z-index: 1;
    color: #0669b2;
    font-weight: normal;
    /*-webkit-transition: all 0.28s ease;*/
    transition: all 0.28s ease;
    margin-bottom: 0;
    font-size: 13px;
}

#login-form .form-group .control-label {
    top: 7px;
}

.form-group.select.active .control-label {
    top: -15px;
    color: #0669b2;
}

.form-group select:focus, .form-group in put:focus, .form-group textarea:focus {
    outline: none;
    box-shadow: none;
    /*background: transparent;*/
}

.form-group input:focus~.control-label, .form-group .has-value~.control-label,
.form-group input:focus~.control-label, .form-group .has-value-login~.control-label, .form-group input:focus~.control-label, .form-group textarea:focus~.control-label, .form-group .has-value~.control-label  {
    color: #0669b2;
    top: 0;
    left: 0;
    font-size: 13px;
    top: -14px;
}

.form-reg input:focus~.control-label, .form-reg .has-value~.control-label,
.form-reg input:focus~.control-label, .form-reg .has-value-login~.control-label {
    top: -16px!important;

}

#login-form .form-group input:focus~.control-label, #login-form .form-group .has-value~.control-label, 
#login-form .form-group input:focus~.control-label, #login-form .form-group .has-value-login~.control-label {
    top: -16px;
}

.form-group .bar::before {
    content: '';
    height: 0.125rem;
    width: 0;
    left: 50%;
    bottom: -0.0625rem;
    position: absolute;
    background: #24408E;
    -webkit-transition: left 0.28s ease, width 0.28s ease;
    transition: left 0.28s ease, width 0.28s ease;
    z-index: 2;
}

.form-group.select:before {
    top: 9px;
}

.form-group input:focus~.bar::before, .form-group select:focus~.bar::before {
    width: 100%;
    left: 0;
}

.form-error, .error-2 {
    display: none;
    margin-bottom: 1rem;
    font-size: .75rem;
    position: absolute;
    left: 3px;
    color: #e15241;
    text-align: left;
}

.form-group .is-invalid-input:not(:focus)+label+span+.bar, .form-group .is-invalid-input2:not(:focus)+label+span+.bar, .error-2.is-visible+.bar {
    border-color: #e15241;
}

/* Login */

.navigation-header {
    background: #fff;
    border-top: solid 1px #f0f0f0;
    border-bottom: solid 1px #f0f0f0;
    padding: 19px 0;
	z-index: 46;
}

.go-back a {
    font-size: 14px;
    font-weight: 600;
    padding-left: 30px;
    position: relative;
}

.go-back a::before {
    font-family: 'dermapen-icons';
    padding-right: 10px;
    content: "\e910";
    font-size: 18px;
    position: absolute;
    left: 0;
}

.form-group.no-pad-top {
    padding-top: 0;
}

.login-container {
    background: #f3fcff;
    text-align: center;
}

.login-button {
    width: 200px;
    cursor: pointer;
}

.login-button:disabled {
    background: #dcdcdc;
    opacity: 0.75;
    cursor: not-allowed;
}

.forgot {
    position: absolute;
    font-size: 14px;
    right: 0;
    top: 40px;
    font-weight: 600;
}

#form-registration .flag-container, #form-registration .selected-flag { width: 100%; }

.prozone-registration {
    text-align: center;
    width: 100%;
    margin: 0;
}

.prozone-registration a {
    text-decoration: underline;
}

p.p-title-login {
    color: #24408E;
    font-size: 14px;
    font-weight: 600;
    line-height: 25px;
}

.underline-a {
    text-decoration: underline;
}

#login-form .bar {
    border-bottom: 0.0625rem solid #5D5B58;
}

/* @media screen and (max-width: 639px) {
    .forgot {
        left: 84%;
    }
} */

/* Model Page */

.cart-total {
    color: #24408e;
    font-size: 14px;
    font-weight: 600;
    line-height: 25px;
    padding-right: 15px;
    float: right;
}

.view-cart,
a.view-cart {
    min-width: 10px !important;
    font-size: 14px !important;
    padding: 1px 12px !important;
    font-weight: 600 !important;
    float: right;
}

.view-cart i {
    padding-right: 5px;
}

.dp4-cat {
    margin-bottom: 50px;
}

.dp4-cat:last-child {
    margin-bottom: 0;
}

.ul-features ul {
    list-style-type: none;
    width: 49%;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}

.features-btn {
    text-align: right;
}

.features-btn a.btn-hollow {
    width: 160px;
    padding: 10px 20px !important;
    text-align: center;
    margin-bottom: 10px;
}

@media screen and (max-width: 639px) {
    .ul-features ul {
        width: 100%;
    }
}

/* Detail Page */

.btn-add_to_cart {
    cursor: pointer;
}

p.p-choose {
    height: 20px;
    color: #24408E;
    font-family: Gotham;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 19px;
}

p.p-detail-title, p.p-detail-price {
    color: #24408E;
    font-size: 24px;
    font-weight: 600;
    line-height: 25px;
}

p.p-detail-price {
    text-align: right;
}

p.p-detail-price span {
    font-size: 14px;
    padding-left: 5px;
}

.detail-container {
    border: 1px solid #ededed;
    padding: 30px 20px;
}

p.p-kit {
    color: #24408e;
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
}

.ul-kit ul {
    list-style-type: none;
    width: 49%;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}

.ul-kit li {
    text-align: left;
    line-height: 24px;
    padding-bottom: 10px;
    position: relative;
    padding-left: 30px;
    vertical-align: top;
}

.ul-kit li::before {
    content: '•';
    font-size: 35px;
    position: absolute;
    left: 7px;
    top: 0px;
    color: #24408e;
}

.kit-btn {
    text-align: right;
}

.kit-btn a {
    padding-left: 60px;
    padding-right: 60px;
    font-family: 'open-sans', sans-serif;
}

@media screen and (max-width: 639px) {
    .ul-kit ul {
        width: 100%;
    }
    .features-btn {
        text-align: center;
        margin-top: 30px;
    }
    p.p-detail-price {
        text-align: left;
    }
}

/* Shopping Cart */

.dp4-shopping-cart .row {
    margin-left: 0;
    margin-right: 0;
}

.line-h-32 {
    line-height: 32px;
}

.shop-title {
    color: #24408E;
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
    margin: 0;
    padding-bottom: 10px;
}

.shop-items {
    margin-right: 0;
    margin-left: 0;
}

.shop-items p {
    color: #231F20;
    font-weight: 600;
}

.shop-items p.desc {
    font-weight: 400;
    margin-top: 5px;
    font-size: 14px;
}

.shop-limited {
    background: #24408e;
    background: -moz-linear-gradient(left, #24408e 1%, #00aeef 100%);
    background: -webkit-linear-gradient(left, #24408e 1%, #00aeef 100%);
    background: linear-gradient(to right, #24408e 1%, #00aeef 100%);
    background-size: cover;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#24408e', endColorstr='#00aeef', GradientType=1);
    position: relative;
}

.shop-limited p.limited {
    text-transform: uppercase;
    color: #fff;
    font-family: Gotham;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 16px;
    text-align: center;
}

.shop-total>div, .shop-subtotal>div {
    margin-right: 0;
    margin-left: 0;
}

.shop-total {
    border-bottom: 1px solid #EDEDED;
}

.shop-subtotal .price {
    color: #24408E;
    font-size: 24px;
    font-weight: 600;
    line-height: 33px;
}

.shop-subtotal .disc {
    color: #5D5B58;
    font-size: 14px;
    line-height: 22px;
    text-align: right;
}

.discount-dp3 {
    background-color: #F3FCFF;
}

.md-checkbox {
    margin: 20px 0 20px;
    padding-left: 50px;
}

.md-checkbox input[type="checkbox"], 
.md-checkbox input[type="radio"] {
    display: none;
}

.md-checkbox p {
    color: #5D5B58;
    font-size: 14px;
    line-height: 22px;
    margin-left: .5rem;
    margin-right: 0;
    margin-bottom: 0;
    margin-top: 5px;
}

.md-checkbox a {
    text-decoration: underline;
}

.md-checkbox label {
    margin-left: .5rem;
    margin-right: 0;
    display: inline-block;
    height: 20px;
    position: relative;
    margin-bottom: 0;
    margin-left: 0;
    cursor: pointer;
    vertical-align: bottom;
    padding-top: 2px;
    color: #24408E;
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.md-checkbox label.gray-font {
	color: #5D5B58;
    
}
.md-checkbox label:before, .md-checkbox label:after {
    position: absolute;
    content: '';
    transition: all .3s ease;
    transition-property: transform, border-color;
    background-color: transparent;
}

.md-checkbox label:after {
    top: 6px;
    left: -34px;
    width: 5px;
    height: 9px;
    display: block;
    border: none;
    transform: rotate(45deg);
}

.md-checkbox input[type="checkbox"]:hover+label:hover:before {
    border: 2px solid #24408E;
}

.md-checkbox input[type="checkbox"]:checked+label:before {
    border-color: solid 1px #fff;
    animation: ripple 0.2s linear forwards;
    background-color: #24408E;
    border: 2px solid #24408E;
}

.md-checkbox input[type="checkbox"]:checked+label:after {
    border: solid 1px #fff;
    border-width: 0 2px 2px 0;
    background-color: #24408E;
}

.md-checkbox label:before {
    left: -40px;
    top: 3px;
    width: 17px;
    height: 17px;
    border-radius: 2px;
    border: 2px solid #d2d2d2;
}

.md-checkbox input[type="radio"]~label:before {
    border-radius: 50%;
    border: 2px solid #d2d2d2;
}


.md-checkbox input[type="radio"]:checked~label:before {
    border: 2px solid #24408E;
}

.md-checkbox input[type="radio"]:checked~label:after {
	left: -36px;
    top: 7px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #25408e;
}

.md-checkbox label:before, .md-checkbox label:after {
    position: absolute;
    content: '';
    transition: all .3s ease;
    transition-property: transform, border-color;
}

.btn-shop {
    border: 1px solid #24408E;
    border-radius: 50%;
    min-height: 32px !important;
    min-width: 32px !important;
    padding: 0 !important;
    height: 32px;
    width: 32px;
    cursor: pointer;
}

.btn-shop-minus {
    float: left;
    margin-left: 30px;
}

.btn-shop span {
    font-size: 16px;
}

.btn-shop-plus {
    float: right;
    margin-right: 30px;
}

#shopping-cart.pointer-events-none a.btn-main {
    /*opacity: 0.4;*/
}

.cartLink {
    margin: 100px auto;
    display: inline-block;
}

#catCartDetails {
    text-align: center;
}

.view-cart.a-checkout {
    text-align: center;
    width: 90px;
}

@media screen and (max-width: 639px) {
    .shop-items p.desc {
        font-size: 13px;
    }
    .shop-subtotal .disc {
        font-size: 12px;
    }
    .btn-shop-minus {
        margin-left: 15px;
    }
    .btn-shop span {
        font-size: 14px;
    }
    .btn-shop-plus {
        margin-right: 15px;
    }
    span.item-quantity {}
}

/* REQUEST PROZONE ACCOUNT */

.request-container {
    background: #f3fcff;
    text-align: center;
}

.request-container .form-group {
    padding-top: 0;
}

/* LOADER */

.loader {
    line-height: 1.5px;
}

.loader span {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #ffffff;
    margin: 9px 0.5px;
    opacity: 0;
    padding-left: 0;
}

.my-loc .loader {
	position: relative;
    left: 0;
}

.my-loc-text .loader {
	display: inline-block;
    position: relative;
	left: 0;
}

.my-loc-text .loader span {
    background-color: #24408E;
    vertical-align: middle;
}

.loader span:nth-child(1) {
    animation: opacitychange 0.4s ease-in-out infinite;
}

.loader span:nth-child(2) {
    animation: opacitychange 0.4s ease-in-out 0.11s infinite;
}

.loader span:nth-child(3) {
    animation: opacitychange 0.4s ease-in-out 0.22s infinite;
}

.btn-main span.btn-span {
    padding-left: 0;
}

@keyframes opacitychange {
    0%, 100% {
        opacity: 0;
    }
    60% {
        opacity: 1;
    }
}

.request-container .form-group .control-label {
    top: 8px;
	
}

.request-container .form-group input:focus~.control-label,
.request-container.form-group .has-value~.control-label {
    top: -14px;
}

@media screen and (max-width: 639px) {
    .request-container .g-recaptcha > div {
        margin: 0 auto;
    }
}

.prod-desc {
    padding-top: 20px;
    margin: 0;
}
.prod-desc li {
	font-size: 14px;
    padding-bottom: 5px;
}

.md-checkbox-attributes {
	margin: 10px 0 0px;
}
.md-checkbox-attributes input[type=checkbox]+label {
    margin-left: 0;
}
.md-checkbox-attributes label:before {
    left: -29px;
}
.md-checkbox-attributes label:after {
    left: -23px;
}
.md-checkbox-attributes.pointer-events-none label {
    color: #d2d2d2;
    font-weight: 400;
}
.md-checkbox-attributes.pointer-events-none input[type="checkbox"]:checked+label {
    color: #24408E;
    font-weight: 600;
}

.md-checkbox-attributes.pointer-events-none input[type="checkbox"]:checked+label:before {
    display: none;
}

.md-checkbox-attributes.pointer-events-none input[type="checkbox"]:checked+label:after {
    border: solid 1px #24408E;
    border-width: 0 2px 2px 0;
    background-color: #fff;
}

.btn-add_to_cart[disabled] {
	opacity: 1;
}

.login-swal button.cancel {
	background-color: #fff !important;
    color: #24408E;
    border: 1px solid #24408E;
}

.login-swal button.cancel:hover {
	background-color: #24408E !important;
    color: #fff;
}

.check-out-form .form-group.select.active .control-label {
    top: -15px;
}

.check-out-form .form-group.select:before {
    top: 22px;
}

#sidebar-nav {
    margin: 0;
    width: 90%;
    list-style-type: none;
}

#sidebar-nav a,
#sidebar-nav a:visited {
    transition: none;
    display: block;
    padding: 15px;
    margin-bottom: 5px;
    font-weight: 800;
    color: #24408E;
}
#sidebar-nav li.active a,
#sidebar-nav a:hover {
    background: #24408E;
    color: #fff;
}
.my-account-form {
    padding: 50px 50px 70px 50px;
}
.my-account-form .form-group .control-label {
    width: 40%;
}
.my-account-form .form-group input {
    padding-left: 10px;
    padding-right: 10px;
}
.my-account-form .form-group input, .my-account-form .form-group select {
    width: 60%;
    float: right;
}
.my-account-form .form-group input[readonly=""],
.my-account-form .form-group input[readonly="readonly"] {
    color: #25408e;
    font-weight: 600;
}
.my-account-form .form-group input[disabled=""],
.my-account-form .form-group input[disabled="disabled"],
.my-account-form .form-group select[disabled=""],
.my-account-form .form-group select[disabled="disabled"] {
    background: #fff;
    color: #0a0a0a;
    font-weight: 400;
    cursor: auto;
    pointer-events: none;
}
.my-account-form .form-group.select .icon-chevron-down {
    position: absolute;
    right: 0;
    top: 27px;
}


.my-account-form .form-group input[readonly=""]~.icon-lock,
.my-account-form .form-group input[readonly="readonly"]~.icon-lock {
    position: absolute;
    right: 0;
    top: 14px;
}

.my-account-form .form-group input[disabled=""]~.icon-lock,
.my-account-form .form-group input[disabled="disabled"]~.icon-lock,
.my-account-form .form-group input[disabled=""]~.bar,
.my-account-form .form-group input[disabled="disabled"]~.bar,
.my-account-form .form-group select[disabled=""]~.bar,
.my-account-form .form-group select[disabled="disabled"]~.bar,
.my-account-form .form-group select[disabled=""]~.icon-chevron-down,
.my-account-form .form-group select[disabled="disabled"]~.icon-chevron-down  {
    display: none;
}
.my-account-form .form-group .form-error {
    left: 40%;
    top: 37px;
}

.my-account-form .inputs {
    margin-top: 15px;
}

.my-account-form .form-group .bar {
    width: 60%;
    float: right;
    position: absolute;
    right: 0;
    bottom: -37px;
}
.my-account-form .form-group .control-label {
    color: #0a0a0a;
    font-weight: 600;
}
.my-account-form .form-group input:focus~.control-label,
.my-account-form .form-group input.has-value~.control-label,
.my-account-form .form-group select:focus~.control-label,
.my-account-form .form-group select.has-value~.control-label {
    top: 8px;
    font-size: 16px;
}
.my-account-form .form-group input:focus~.control-label,
.my-account-form .form-group select:focus~.control-label {
    color: #25408e;
}
.my-account-form .required {
    display: none;
}
.my-account-form .form-group.select.active .control-label {
    top: 8px;
    color: #0a0a0a;
    font-size: 16px;
}
.my-account-form .form-group.select:before {
    top: 22px;
    display: none;
}
.my-account-form .row {
    margin: 0;
}
.my-account-form input[type=checkbox]+label, input[type=radio]+label {
    margin-right: 0;
}
#tncModal {
    padding: 50px 30px;
}
#tnc {
    border: 1px solid #ccc;
    padding: 15px;
    font-size: 13px;
    height: 300px;
    overflow-y: scroll;
}
#tnc p {
    font-size: 13px;
}

.form-group .is-invalid-input:not(:focus)+label+span+span+.bar {
    border-color: #e15241;
}
@media screen and (max-width: 850px) {
    .my-account-form .form-group .control-label {
        width: 100%;
        top: -18px;
    }
    .my-account-form .form-group input, .my-account-form .form-group select {
        width: 100%;
        margin-bottom: 20px;
    }
    .my-account-form .form-group input:focus~.control-label, .my-account-form .form-group input.has-value~.control-label, .my-account-form .form-group select:focus~.control-label, .my-account-form .form-group select.has-value~.control-label {
        top: -18px;
    }
    .my-account-form .form-group .form-error {
        left: 0;
    }
    .my-account-form .form-group .bar {
        width: 100%;
    }
    .my-account-form .form-group.select.active .control-label {
        top: -18px;
    }
    .my-account-form {
        padding: 20px 20px 30px 20px;
    }
}
@media screen and (max-width: 639px) {
    #sidebar-nav {
        /* display: none; */
        width: 100%;
        margin-bottom: 50px;
    }
    .my-account-form .form-group .control-label {
        top: -5px;
    }
    #sidebar-nav a {
        padding: 10px;
    }
    #shopping-cart .line-h-32 {
    	line-height: 23px;
    }
    #shopping-cart .btn-shop {
        min-height: 22px !important;
        min-width: 22px !important;
        height: 22px;
        width: 22px;
    	line-height: 22px;
    }
}
@media screen and (max-width: 320px) {
    .btn-shop-plus {
        margin-right: 5px;
    }
    .btn-shop-minus {
        margin-left: 5px;
    }
    
}