#loader{
    width:100vw;
    height: 100%;
    position: fixed;
    top:0px;left:0px;
    background: rgba(0,0,0,.7);
    display: none;
    z-index: 9999;
}
#spinner{
    border: 16px solid rgba(0,0,0,0);
    border-top: 16px solid #929699;
    border-bottom: 16px solid #055186;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin-top:calc(50vh - 60px);
    margin-left: calc(50vw - 60px);

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
body{
    font-family: MuseoSans-300;
    font-size: 16px;

}
.shippingTimeSelector{
    cursor: pointer;
}
.row{
    margin:0;
}
.container {
    max-width: 960px;
}
.mainContainer{
padding-top:110px;
}

/*
 * Custom translucent site header
 */
h1{
    font-family: MuseoSans-100;
    font-size: 45px;
    color:#464646;
    line-height: 45px;
}
h2{
    font-family: MuseoSans-300;
    font-size: 18px;
    color:#464646;
    line-height: 35px;
    margin-bottom:30px;
}
h3{  font-family: MuseoSans-300;
    font-size: 18px !important;
    color:#ffffff;
    line-height: 35px;
    margin-bottom:30px;
}
h5{
    font-size: 20px;
}
.site-header {
    background-color: rgba(0, 0, 0, .85);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
}
.site-header a {
    color: #999;
    transition: ease-in-out color .15s;
}
.site-header a:hover {
    color: #fff;
    text-decoration: none;
}

/*
 * Dummy devices (replace them with your own or something else entirely!)
 */

.product-device {
    position: absolute;
    right: 10%;
    bottom: -30%;
    width: 300px;
    height: 540px;
    background-color: #333;
    border-radius: 21px;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
}

.product-device::before {
    position: absolute;
    top: 10%;
    right: 10px;
    bottom: 10%;
    left: 10px;
    content: "";
    background-color: rgba(255, 255, 255, .1);
    border-radius: 5px;
}

.product-device-2 {
    top: -25%;
    right: auto;
    bottom: 0;
    left: 5%;
    background-color: #e5e5e5;
}


/*
 * Extra utilities
 */

.flex-equal > * {
    -ms-flex: 1;
    flex: 1;
}
@media (min-width: 768px) {
    .flex-md-equal > * {
        -ms-flex: 1;
        flex: 1;
    }
}

.overflow-hidden { overflow: hidden; }
.bold{
    font-weight: bold;
}


/*****************************custom checkboxes***************************/
.radio,
.checkbox {
    padding-left: 20px;
    position: relative;
    display: block;
}
.radio input,
.checkbox input {
    opacity: 0;
    position: absolute;
    z-index: 1;
    cursor: pointer;
    margin-left: -20px;
}
.radio input:checked + label::before,
.checkbox input:checked + label::before {
    border-color: #0467ad;
}
.radio input:checked + label::after,
.checkbox input:checked + label::after {
    content: '';
    display: inline-block;
    position: absolute;
    width: 13px;
    height: 13px;
    left: 2px;
    top: 4px;
    margin-left: 10px;
    border: 1px solid #0467ad;
    border-radius: 50%;
    background-color: #0467ad;
}
.radio label,
.checkbox label {
    display: inline-block;
    position: relative;
    padding-left: 40px;
}
.radio label::before,
.checkbox label::before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    top: 2px;
    margin-left: 10px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background-color: #fff;
}
.radio.disabled label,
.checkbox.disabled label {
    color: #ccc;
}
.radio.disabled label::before,
.checkbox.disabled label::before {
    opacity: 0.54;
    border-color: #ccc;
}
.checkbox input:checked + label::before {
    border-color:#0467ad;
    background-color:#0467ad;
}
.checkbox input:checked + label::after {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 13px;
    color: #fff;
    top: 0;
    left: 1px;
    border-color: transparent;
    background-color: transparent;
}
.checkbox label::before {
    border-radius: 2px;
}
.footer-copyright{
    margin-left:15px;
}
.footer-social{
    margin-left:15px;
    line-height: 40px;
    vertical-align: middle;

}
.social-icon{
    color: #fff;
    margin-right: 10px;
    font-size: 40px;
}
.no-padding{
    padding: 0!important;
}