* {
    padding: 0px;
    margin: 0px;
    outline: none!important;
}

.mobile {
    display: none;
}

.nav {
    height: 100px;
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    position: fixed;
    top: 0px;
    box-shadow: 0px -16px 6px 15px #555;
    z-index: 99999;
}

.logo {
    width: 260px;
    height: 65px;
    margin-left: 5%;
    margin-top: 20px;
    float: left;
}

.slider {
    width: 85%;
    margin: 0 auto;
    top: -20px;
}

.slick-dots {
    bottom: -90px;
}

.slick-dots li.slick-active button:before {
    color: #FFF;
}

.slick-dots li button:before {
    font-size: 20px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 75px;
}

.slick-prev {
    left: -90px;
    z-index: 9000;
    width: 75px;
    height: 75px;
}

.slick-next {
    right: -90px;
    z-index: 9000;
    width: 75px;
    height: 75px;
}


/* radio && checkbox && input  */

.checkbox-custom,
.radio-custom {
    opacity: 0;
    position: absolute;
}

.checkbox-custom,
.checkbox-custom-label,
.radio-custom,
.radio-custom-label {
    /* display: inline-block;
    vertical-align: middle;
    margin: 5px;
    cursor: pointer; */
    margin-left: 10px;
    cursor: pointer;
}

.checkbox-custom-label,
.radio-custom-label {
    /* position: relative; */
}

.checkbox-custom+.checkbox-custom-label:before,
.radio-custom+.radio-custom-label:before {
    content: '';
    background: #fff;
    /* border: 2px solid #ddd; */
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    padding: 2px;
    margin-right: 10px;
    text-align: center;
    margin-top: -5px;
    border-radius: 50%;
}

.checkbox-custom:checked+.checkbox-custom-label:before {
    background: #2B4977;
    border-radius: 50%;
    box-shadow: inset 0px 0px 0px 4px #fff;
}

.radio-custom+.radio-custom-label:before {
    border-radius: 50%;
}

.radio-custom:checked+.radio-custom-label:before {
    background: #2B4977;
    box-shadow: inset 0px 0px 0px 4px #fff;
}

.checkbox-custom:focus+.checkbox-custom-label,
.radio-custom:focus+.radio-custom-label {
    /* outline: 1px solid #ddd;  */
}

.scrollbar::-webkit-scrollbar {
    background-color: #fff;
    width: 16px
}


/* background of the scrollbar except button or resizer */

.scrollbar::-webkit-scrollbar-track {
    background-color: #1D2F4C;
}

.scrollbar::-webkit-scrollbar-track:hover {
    /* background-color:#f4f4f4 */
}


/* scrollbar itself */

.scrollbar::-webkit-scrollbar-thumb {
    background-color: #111;
    border-radius: 16px;
    border: 4px solid #1D2F4C
}

.scrollbar::-webkit-scrollbar-thumb:hover {
    /* background-color:#222; */
    /* border:4px solid #f4f4f4 */
}


/* set button(top and bottom of the scrollbar) */

.scrollbar::-webkit-scrollbar-button {
    display: none
}

.loading {
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    top: 0px;
    left: 0px;
    z-index: 999999999;
    display: none;
    width: 100%;
    height: 100%;
}

@keyframes rolling-loader {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes rolling-loader {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.rolling-loader {
    position: relative;
    width: 100px !important;
    height: 100px !important;
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
    transform: translate(-50px, -50px) scale(1) translate(50px, 50px);
}

.rolling-loader div,
.rolling-loader div:after {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 10px solid #FFF;
    border-top-color: transparent;
    border-radius: 50%;
}

.rolling-loader div {
    animation: rolling-loader 1s linear infinite;
    top: 50%;
    left: 50%;
}

.rolling-loader div:after {
    transform: rotate(90deg);
}

.btn_close {
    background-image: url(../images/btn_close.png);
    top: 5px;
    width: 50px;
    height: 50px;
    /* background: #F00; */
    position: absolute;
    right: 5px;
    cursor: pointer;
    background-repeat: no-repeat;
}

a {
    text-decoration: none;
    color: #1D2F4C;
}

.slick-prev:before {
    content: '〈';
    font-weight: bold;
}

.slick-next:before {
    content: '〉';
    font-weight: bold;
}