@font-face {
    font-family: "Hello-Sunshine-Marker";
    src: url("fonts/Hello-Sunshine-Marker.otf") format("opentype");
}

@font-face {
    font-family: 'Helvetica';
    src: url('fonts/Helvetica.eot'); /* IE9 Compat Modes */
    src: url('fonts/Helvetica.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url("fonts/Helvetica.otf") format("opentype"),
         url('fonts/Helvetica.woff') format('woff'), /* Pretty Modern Browsers */
         url('fonts/Helvetica.ttc')  format('truetype'); /* Safari, Android, iOS */
}

@font-face {
    font-family: 'MyriadPro-Regular';
    src: url('fonts/MyriadPro-Regular.eot'); /* IE9 Compat Modes */
    src: url('fonts/MyriadPro-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url("fonts/MyriadPro-Regular.otf") format("opentype"),
         url('fonts/MyriadPro-Regular.woff') format('woff'), /* Pretty Modern Browsers */
         url('fonts/MyriadPro-Regular.ttf')  format('truetype'); /* Safari, Android, iOS */
}

@font-face {
    font-family: 'Sentinel-Semibold-Italic';
    src: url('fonts/Sentinel-Semibold-Italic.eot'); /* IE9 Compat Modes */
    src: url('fonts/Sentinel-Semibold-Italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url("fonts/Sentinel-Semibold-Italic.otf") format("opentype"),
         url('fonts/Sentinel-Semibold-Italic.woff') format('woff'), /* Pretty Modern Browsers */
         url('fonts/Sentinel-Semibold-Italic.ttf')  format('truetype'); /* Safari, Android, iOS */
}

body {
    background-color: #c7362f;
    font-family: Sentinel-Semibold-Italic, Arial, sans-serif;
    font-weight: 300;
    color: #ffffff;
}

::-webkit-input-placeholder { /* Edge */
    font-family: Sentinel-Semibold-Italic, Arial, sans-serif;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-family: Sentinel-Semibold-Italic, Arial, sans-serif;
}

::placeholder {
    font-family: Sentinel-Semibold-Italic, Arial, sans-serif;
    font-size: 14px;
    color: #a7a7a7;
}

.m-0 {
    margin: 0 !important;
}

/*************************** CLEARFIX ***************************/

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    zoom: 1; /* For IE 6/7 (trigger hasLayout) */
}

/*************************** INPUTS ***************************/

input[type='text'] {
    font-size: 14px;
    font-family: Sentinel-Semibold-Italic, Arial, sans-serif;
}

/*************************** CONTAINER ***************************/

.container {
    position: relative;
    width: 95%;
    max-width: 1200px;
    margin: auto;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
    }
}

/************************* INNER WRAPPER *************************/

.inner-wrapper {
    width: 90%;
    margin: auto;
}

/*@media (max-width: 768px) {*/
/*    .inner-wrapper {*/
/*        width: 100%;*/
/*    }*/
/*}*/


/*************************** HEADER ***************************/

header {
    position: relative;
    display: flex;
    height: 200px;
    z-index: 1;
}

header {
    -webkit-box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    0 3px 5px 0 rgba(50, 50, 50, 0.75);
    box-shadow:         0 3px 5px 0 rgba(50, 50, 50, 0.75);
}

header .left {
    position: relative;
    width: 100%;
    overflow: hidden;
}

header .left .image {
    position: absolute;
    background: transparent url("img/bgd-head-1.png") no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

header .logo {
    position: absolute;
    height: 100%;
    left: 20px;
}

header .logo img {
    height: 250px;
}

header .right {
    width: 200px;
}

header .right.regular .inner-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    /*justify-content: center;*/
    flex-direction: column;
    align-items: center;
}

header .right.regular .inner-wrapper .btn {
    display: block;
    width: 140px;
    margin: auto;
    font-size: 20px;
}

header .right.regular .inner-wrapper .btn:first-child {
    margin-bottom: 10px;
}

header .right.regular .inner-wrapper .btn:last-child {
    margin-top: 0;
}

header .right.loggedin .inner-wrapper {
    width: 100% !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

header .right.loggedin .inner-wrapper .user {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

header .right.loggedin .inner-wrapper .user .username {
    display: inline-block;
    margin: 0 5px 0 5px;
    font-size: 14px;
    font-family: Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    width: 130px;
    vertical-align: middle;
    overflow-wrap: break-word;
}

header .right.loggedin .inner-wrapper .user .username a {
    color: #ffffff;
}

header .right.loggedin .inner-wrapper .user .avatar {
    position: relative;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.4);
    text-align: center;
    border: 2px solid #ffffff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    background-size: 65px;
    background-repeat: no-repeat;
    background-position: center;
}

header .right.loggedin .inner-wrapper .user .avatar img {
    max-width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

header .right.loggedin .inner-wrapper .user .avatar i.fa-user {
    margin-top: 9px;
    font-size: 45px;
    color: #ffffff;
}

header .right.loggedin .inner-wrapper .user .avatar .dropdown {
    position: absolute;
    width: 190px;
    right: 0;
    /*bottom: -200px;*/
    bottom: -237px;
    background-color: #ffffff;
    font-size: 20px;
    -webkit-box-shadow: 0 1px 5px 0 rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    0 1px 5px 0 rgba(50, 50, 50, 0.75);
    box-shadow:         0 1px 5px 0 rgba(50, 50, 50, 0.75);
    z-index: 1;
    display: none;
}

header .right.loggedin .inner-wrapper .user .avatar .dropdown i.fa-caret-up {
    position: absolute;
    top: -13px;
    right: 27px;
    color: #ffffff;
}

header .right.loggedin .inner-wrapper .user .avatar .dropdown li {
    border-bottom: 2px dotted #a21c26;
}

header .right.loggedin .inner-wrapper .user .avatar .dropdown li span.num {
    padding: 0 5px;
    background: #a21c26;
    border: 2px solid #a21c26;
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

header .right.loggedin .inner-wrapper .user .avatar .dropdown li:last-child {
    border: none;
}

header .right.loggedin .inner-wrapper .user .avatar .dropdown a {
    display: block;
    padding: 3px 2px;
    color: #a21c26;
}

header .right.loggedin .inner-wrapper .user .avatar .notification {
    position: absolute;
    top: 5px;
    right: -10px;
    width: 26px;
    height: 30px;
    background: transparent url("img/icon-bell.png") no-repeat center center;
    background-size: 26px 30px;
}

header .right.loggedin .inner-wrapper .user .avatar .notification .num {
    display: block;
    position: absolute;
    right: -8px;
    width: 20px;
    height: 20px;
    background-color: #b5181d;
    border: 2px solid #ffffff;
    text-align: center;
    line-height: 20px;
    font-size: 13px;
    font-weight: bold;
    -webkit-animation: pulse 1.5s ease-in infinite;
    animation: pulse 1.5s ease-in infinite;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
    25% {
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
    }
    75% {
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
}

#openAvatarDropdown {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 10;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.openAvatarDropdown {
    cursor: pointer;
}

header .right.loggedin .inner-wrapper .moments {
    width: 80%;
    margin-bottom: 10px;
    font-size: 25px;
    color: #b5191d;
    background: transparent url("img/ribbon-white.png") no-repeat center center;
    background-size: contain;
    text-align: center;
    padding-top: 10px;
}

header .right.loggedin .inner-wrapper .moments a {
    color: #b5191d;
    font-size: 20px;
}

header .right.loggedin .inner-wrapper .moments a img {
    width: 30px;
    margin-top: 2px;
}

header .right.loggedin .inner-wrapper .challenges {
    display: flex;
    justify-content: space-between;
    width: 70%;
}

header .right.loggedin .inner-wrapper .challenges span {
    display: inline-block;
    width: 39px;
    height: 39px;
    border: 1px solid #ffffff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

header .right.loggedin .inner-wrapper .challenges span.check {
    background: transparent url("img/check-white.png") no-repeat center center;
}

header .right.loggedin .inner-wrapper .challenges span.uncheck {
    background: transparent url("img/izazov-x-white.png") no-repeat center center;
    background-size: 30px;
}

header .right.loggedin .inner-wrapper .challenges span.pending {
    background: transparent url("img/izazov-znak-white.png") no-repeat center center;
    background-size: 30px;
}

@media (max-width: 480px) {
    header .right.loggedin .inner-wrapper .moments {
        width: 100%;
    }
}

@media (max-width: 768px) {
    header .left {
        width: 100%;
    }

    header .right {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 60%;
        background-color: #a21c26;
        background: transparent;
    }
    
    header .right.loggedin .inner-wrapper .user .avatar { 
        margin-right: 15px;
        width: 55px;
        height: 55px;
    }
    
    header .right.loggedin .inner-wrapper .user .username a {
        margin-left: 15px;
    }
    
    header .logo {
        left: 0;
    }
    
    header .right.loggedin .inner-wrapper .challenges span {
        width: 30px; 
        height: 30px; 
    }
    
    header .right.loggedin .inner-wrapper .moments a img {
        width: 23px;
        margin-top: 2px;
    }
    header .right.loggedin .inner-wrapper .moments a {
        font-size: 18px;
    }
}

@media (min-width: 769px) {
    header .left .logo {
        left: 50px;
    }

    header .left {
        width: 80%;
    }

    header .right {
        width: 300px;
        background-color: #a21c26;
    }

    header .right.regular .inner-wrapper .btn {
        width: 180px;
        font-size: 25px;
    }
}

@media (min-width: 992px) {
    header .right.regular .inner-wrapper .btn,
    header .right.loggedin .inner-wrapper .user .avatar .dropdown a {
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    header .right.regular .inner-wrapper .btn:hover {
        background-color: #c7362f;
    }

    header .right.loggedin .inner-wrapper .user .username a:hover {
        text-decoration: underline;
    }

    header .right.loggedin .inner-wrapper .user .avatar .dropdown a:hover {
        background-color: #b5181d;
        color: #ffffff;
    }
}

/*************************** FOOTER ***************************/

footer {
    background-color: #c7362f;
    color: #ffffff;
    text-align: center;
}

footer .top .cta-btn {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

footer .top .cta-btn:active {
    background-color: #b5181d;
}

footer .bottom a {
    font-family: MyriadPro-Regular, Arial, sans-serif;
    color: #ffffff;
    text-decoration: underline;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

footer .bottom a:active {
    text-decoration: none;
}

footer .bottom a.img-link:active {
    opacity: 0.5;
}

@media (max-width: 768px) {
    footer {
        padding: 30px 0 0 0;
    }

    footer .top {
        margin-bottom: 25px;
    }

    footer .top .cta-btn {
        font-size: 24px;
    }

    footer .bottom {
        width: 100%;
        max-width: 298px;
        margin: auto;
    }

    footer .bottom a {
        display: block;
        margin-bottom: 12px;
    }

    footer .logo {
        display: block;
        padding: 30px 0;
        background-color: #b5181d;
    }

    footer .logo img {
        width: 100%;
        max-width: 298px;
        margin: auto;
    }
}

@media (min-width: 769px) {
    footer {
        padding: 30px 0;
    }

    footer .top {
        margin-bottom: 40px;
    }

    footer .top .cta-btn {
        font-size: 30px;
    }

    footer .bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    footer .bottom a {
        display: inline-block;
    }

    footer .logo {
        display: none;
    }
}

@media(min-width: 992px) {
    footer .top .cta-btn:hover {
        background-color: #b5181d;
    }

    footer .bottom a:hover {
        text-decoration: none;
    }

    footer .bottom a.img-link:hover {
        opacity: 0.5;
    }
}

/*************************** MAIN ***************************/

.main {
    padding: 60px 0;
    background-color: #b5181d;
}

.main .inner-wrapper {
    margin: auto;
}

@media (max-width: 574px) {
    .main .inner-wrapper {
        width: 90%;
    }
}

@media (min-width: 575px) {
    .main .inner-wrapper {
        /*max-width: 768px;*/
    }
}

/************************* TABLE PAGES *************************/

.table-page .page-title {
    margin-bottom: 20px;
}

.user-data-wrapper {
    overflow-x: auto;
    width: 100%;
}

table.user-data {
    width: 100%;
}

table.user-data thead {
    font-weight: bold;
}

table.user-data tbody {
    font-weight: normal;
}

table.user-data tr,
table.user-data td {
    border-bottom: 1px dotted #fff;
}

table.user-data td {
    padding: 5px 10px;
}

table.user-data td:first-child {
    padding: 5px 10px 5px 0;
}

table.user-data td a, table.user-data td a:visited{
    text-decoration: underline;
    color: #fff;
    cursor: pointer;
}

@media(max-width: 480px) {
    .table-page .page-title {
        font-size: 32px;
    }
}

/*************************** LOADER ***************************/

.loader-icon {
    /*animation: animate_rotateY 1.5s infinite ease-in-out;*/
}

.loader-icon i {
    color: #d71921;
    font-size: 120px;
}

@keyframes animate_rotateY {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/*************************** BUTTONS ***************************/

.cta-btn {
    display: inline-block;
    min-width: 100px;
    padding: 5px 14px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    font-size: 25px;
    transition: 0.4s;
    font-family: Sentinel-Semibold-Italic, Arial, sans-serif;
    text-align: center;
}

.ribbon-btn {
    background: transparent no-repeat center center;
    background-size: cover;
    font-family: Sentinel-Semibold-Italic, Arial, sans-serif;
}

.ribbon-btn.red {
    color: #ffffff;
    background-image: url("img/ribbon-red.png");
}

.ribbon-btn.white {
    background-image: url("img/ribbon-white.png");
    color: #b5181d;
}

.shine {
    position: relative;
}

.shine.up::before {
    content: '';
    width: 100px;
    height: 50px;
    background: transparent url("img/shine-up.png") no-repeat center;
    background-size: cover;
    position: absolute;
    top: -44px;
}

.shine.up.big::before {
    width: 151px;
    height: 64px;
    background-image: url("img/shine-up-big.png");
}

.shine.down::before {
    content: '';
    width: 100px;
    height: 50px;
    background: transparent url("img/shine-down.png") no-repeat center;
    background-size: cover;
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
}

.shine.down.big::before {
    width: 151px;
    height: 64px;
    background-image: url("img/shine-down-big.png");
}

.regular-btn-wrapper {
    margin: 40px 0 0 0;
    text-align: center;
}

.regular-btn {
    padding: 10px;
    background-color: #ffffff;
    color: #b5191d;
    border: 1px solid #ffffff;
    font-size: 32px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.opacity-hover {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.opacity-hover:active {
    opacity: 0.7;
}

@media(min-width: 992px) {
    .regular-btn:hover {
        background-color: #b5191d;
        color: #ffffff;
    }

    .opacity-hover:hover {
        opacity: 0.7;
    }
}

/********************************* POPUP *********************************/

.popup-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-wrapper .popup {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 539px;
    margin: auto;
    background: transparent url("img/border-2.png") no-repeat center;
    background-size: 100% 100%;
    color: #ffffff;
}

.popup-wrapper .popup .popup-header {
    padding: 30px 60px 0 0;
    text-align: right;
}

.popup-wrapper .popup .popup-header span {
    display: inline-block;
    font-size: 25px;
    margin: 0 5px 0 0;
}

.popup-wrapper .popup .popup-header .close-popup {
    width: 38px;
    height: 38px;
    background: transparent url("img/icon-close.png") no-repeat;
}

@media (max-width: 480px) {
    .popup-wrapper .popup {
        max-width: 300px;
        height: 269px;
    }

    .popup-wrapper .popup .popup-header {
        padding: 25px 30px 0 0;
    }

    .popup-wrapper .popup .popup-header span {
        font-size: 20px;
    }

    .popup-wrapper .popup .popup-header .close-popup {
        width: 23px;
        height: 23px;
        background-size: 23px 23px;
    }
}

@media (min-width: 481px) {
    .popup-wrapper .popup {
        max-width: 430px;
        height: 386px;
    }

    .popup-wrapper .popup .popup-header {
        padding: 25px 35px 0 0;
    }

    .popup-wrapper .popup .popup-header span {
        font-size: 21px;
    }

    .popup-wrapper .popup .popup-header .close-popup {
        width: 27px;
        height: 27px;
        background-size: 27px 27px;;
    }
}

@media (min-width: 575px) {
    .popup-wrapper .popup {
        max-width: 500px;
        height: 449px;
    }

    .popup-wrapper .popup .popup-header {
        padding: 25px 40px 0 0;
    }

    .popup-wrapper .popup .popup-header span {
        font-size: 23px;
    }

    .popup-wrapper .popup .popup-header .close-popup {
        width: 30px;
        height: 30px;
        background-size: 30px 30px;
    }
}

@media (min-width: 768px) {
    .popup-wrapper .popup {
        max-width: 600px;
        height: 539px;
    }

    .popup-wrapper .popup .popup-header {
        padding: 30px 60px 0 0;
    }

    .popup-wrapper .popup .popup-header span {
        font-size: 25px;
    }

    .popup-wrapper .popup .popup-header .close-popup {
        width: 38px;
        height: 38px;
        background-size: 38px 38px;
    }
}

/*************************** ENTER CODE POPUP ***************************/

.enter-code-popup {
    position: fixed;
    width: 95%;
    max-width: 500px;
    z-index: 999;
    display: none;
}

.enter-code-popup .ec-popup-header {
    padding: 10px 0;
    text-align: right;
}

.enter-code-popup .ec-popup-header span {
    font-size: 18px;
}

.enter-code-popup .ec-popup-header button {
    margin-left: 4px;
    padding: 0;
    background-color: transparent;
}

.enter-code-popup .ec-popup-header button img {
    max-width: 25px;
}

.enter-code-popup .field {
    position: relative;
    width: 100%;
    height: 84px;
    background: transparent url("img/enter-code-field.png") no-repeat center;
    background-size: cover;
    text-align: center;
    font-size: 40px;
    /*font-family: Helvetica, Arial, sans-serif;*/
}

.enter-code-popup .field::placeholder {
    font-size: 40px;
}

.enter-code-popup .verify-code-btn {
    position: absolute;
    right: 10px;
    top: 69px;
    padding: 10px 10px;
    background: #a21c26;
    color: #fff;
    font-size: 18px;
}


@media(max-width: 480px) {
    .enter-code-popup .field::placeholder {
        font-size: 27px;
    }

    .enter-code-popup .verify-code-btn {
        right: 6px;
        top: 75px;
        padding: 8px;
        font-size: 17px;
    }
}

/***************************** NC-SELECTBOX *****************************/

.nc-selectbox {
    position: relative;
}

.nc-selectbox .selectbox-value-display {
    position: relative;
    width: 90px;
    height: 50px;
    padding: 11px 0 0 0;
    background-image: url("img/ribbon-white-small1.png");
    background-repeat: no-repeat;
    background-size: 100% 200%;
    background-position: top;
    /*background-size: contain;*/
    color: #404040;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
}

.nc-selectbox .selectbox-value-display.warning {
    background-position: bottom;
    border: none !important;
}

.nc-selectbox .selectbox-value-display:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.nc-selectbox .selectbox-value-display.day-display:after {
    width: 24px;
    height: 29px;
    background-image: url("img/datum-dan.png");
}

.nc-selectbox .selectbox-value-display.month-display:after {
    width: 28px;
    height: 29px;
    background-image: url("img/datum-mesec.png");
}

.nc-selectbox .selectbox-value-display.year-display:after {
    width: 27px;
    height: 29px;
    background-image: url("img/datum-godina.png");
}

.nc-selectbox .selectbox-value-display.active:after {
    display: none;
}

.nc-selectbox .selectbox-options {
    position: absolute;
    width: 100%;
    top: 47px;
    max-height: 150px;
    overflow-y: auto;
    border: 1px solid #ffffff;
    display: none;
}

.nc-selectbox .selectbox-options .option {
    display: block;
    width: 100%;
    padding: 4px 2px;
    background-color: #ffffff;
    border: none;
}

.nc-selectbox .selectbox-options .option.active {
    background-color: #b5181d;
    color: #ffffff;
}

/****************************** SWALL MODAL ******************************/

.swal-icon {
    margin: 10px auto 0 auto !important;
    animation: none;
}

.swal-icon--success:before {
    display: none;
}

.swal-icon--success:after {
    display: none;
}

.swal-icon--success {
    border-color: #d31116 !important;
    background: transparent url("img/popup-success.png") no-repeat center;
}

.swal-icon--success__line,
.swal-icon--success__ring,
.swal-icon--success__hide-corners {
    display: none !important;
}

.swal-icon--error,
.swal-icon--warning {
    border-color: #d31116 !important;
    background: transparent url("img/popup-wraning.png") no-repeat center;

}

.swal-icon--warning__body,
.swal-icon--warning__dot {
    display: none;
}

.swal-icon--error__line {
    background-color: transparent !important;
}

.swal-modal {
    font-family: MyriadPro-Regular, Arial, sans-serif;
    background-color: #d31116;
}

.swal-title:before {
    content: "";
    display: block;
    margin: 0 auto;
    height: 90px;
    background: transparent url("img/shine-up.png") no-repeat center;
    background-size: 130px;
}

.swal-title {
    display: inline-block;
    margin: 0 0 20px 0;
    font-size: 110px;
    font-family: Hello-Sunshine-Marker, Arial, sans-serif;
    border-bottom: 2px dotted #ffffff;
    color: #fff;
    font-weight: 300;
    padding:0;
}

.swal-text {
    font-family: Sentinel-Semibold-Italic, Arial, sans-serif;
    font-weight: 300;
    color: #ffffff;
    font-size: 25px;
    text-align: center;
    display: block;
}

.swal-footer {
    text-align: center;
}

.swal-button,
.swal-button:not([disabled]):hover,
.swal-button:active {
    background-color: #fff;
    color: #d31116;
    border-radius: 0;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 24px;
    /*padding: 19px 24px 7px;*/
    padding: 13px 10px 0;
    font-weight: 600;
    border: none;
    width: 90px;
    height: 40px;
}

@media (max-width: 480px) {
    .swal-title {
        font-size: 80px;
    }

    .swal-text {
        font-size: 20px;
    }
}

/****************************** SLIDER ******************************/

.body-slider .image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    -webkit-backface-visibility: hidden;
    -webkit-animation: pageSliderImageAnimation 25s linear infinite 0s;
    -moz-animation: pageSliderImageAnimation 25s linear infinite 0s;
    -o-animation: pageSliderImageAnimation 25s linear infinite 0s;
    -ms-animation: pageSliderImageAnimation 25s linear infinite 0s;
    animation: pageSliderImageAnimation 25s linear infinite 0s;
}

.body-slider .image:nth-child(1) {
    background-image: url("img/bgd-head-1.png");
}
.body-slider .image:nth-child(2) {
    background-image: url("img/bgd-head-2.png");
    animation-delay: 5s;
}
.body-slider .image:nth-child(3) {
    background-image: url("img/bgd-head-3.png");
    animation-delay: 10s;
}
.body-slider .image:nth-child(4) {
    background-image: url("img/bgd-head-4.png");
    animation-delay: 15s;
}
.body-slider .image:nth-child(5) {
    background-image: url("img/bgd-head-5.png");
    animation-delay: 20s;
}

@keyframes pageSliderImageAnimation {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
    }
    8% {
        opacity: 1;
        animation-timing-function: ease-out;
    }
    17% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/****************************** COOKIE NOTICE ******************************/

.cookie-notice-wrapper {
    position: fixed;
    display: block;
    width: 100%;
    padding: 15px 0;
    bottom: 0;
    background: #c7362f;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    z-index: 9999;
    border: 2px white dashed;
}

.cookie-notice-wrapper .text {
    vertical-align: middle;
    display: inline-block;
    margin-top: 3px;
}

.cookie-notice-wrapper button {
    width: 150px;
    padding: 5px 4px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    text-align: center;
    font-size: 16px;
    font-family: Sentinel-Semibold-Italic, Arial, sans-serif;
    transition: 0.4s;
}

.cookie-notice-wrapper a {
    color: #ffffff;
    font-size: 16px;
    text-decoration: underline;
}

.cookie-notice-wrapper button:active {
    background-color: #ffffff;
    color: #d71923;
}

.cookie-notice-wrapper a:active {
    text-decoration: none;
}

@media (min-width: 992px) {
    .cookie-notice-wrapper button:hover {
        background-color: #ffffff;
        color: #d71923;
    }

    .cookie-notice-wrapper a:hover {
        text-decoration: none;
    }
}

/************************** BRANDING SIDE BANNERS **************************/

.brand-left {
    margin-left: -1200px;
    left: 50%;
    text-align: right;
    position: fixed;
    height: 1500px;
    top: 0;
    width: 600px;
    overflow: hidden;
    z-index: 20;
}

.brand-right {
    right: 50%;
    margin-right: -1200px;
    text-align: left;
    position: fixed;
    height: 1500px;
    top: 0;
    width: 600px;
    overflow: hidden;
    z-index: 20;
}

.brand-left img {
    margin-top: 40%;
    margin-right: 20px;
}

.brand-right img {
    margin-top: 40%;
    margin-left: 20px;
}

/******************************* BACK TO TOP *******************************/

#backTop {
    background-color: #d71921;
    border: 2px solid #fff;
    z-index: 999;
}


/*************************** SHOP COUNTDOWN TIMER ***************************/

.shop-countdown-timer-wrapper {
    margin-bottom: 20px;
    text-align: center;
}

.shop-countdown-timer {
    display: inline-block;
    padding: 3px 7px;
    background: #fff;
    color: #b5181d;
    font-size: 24px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.shop-countdown-timer i {
    margin-top: 6px;
    animation: animateSpinner linear 0.9s infinite;
}

@media (max-width: 480px) {
    .shop-countdown-timer span {
        display: block;
    }
}

@media (min-width: 768px) {
    .shop-countdown-timer-wrapper {
        text-align: left;
    }

    .shop-countdown-timer {
        font-size: 27px;
    }
}

@keyframes animateSpinner {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}


/******************************* OTHER *******************************/

.check-wrapper .btn-checkbox {
    display: inline-block;
    width: 17px;
    height: 17px;
    margin: 2px 4px 0 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.75);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.check-wrapper .btn-checkbox i {
    display: none;
    font-size: 15px;
    color: #b5181d;
}

.check-wrapper .btn-checkbox.checked i {
    display: block;
}

.check-wrapper .label {
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;
    text-transform: lowercase;
}

.spinner-button-wrapper .spinner-wrapper {
    display: none;
    text-align: center;
}

.spinner-button-wrapper .spinner-wrapper .spinner-icon {
    font-size: 60px;
}

.spinner-button-wrapper.disabled .spinner-wrapper {
    display: block;
}

.spinner-button-wrapper.disabled .spinner-wrapper .spinner-icon {
    animation: animateSpinner linear 0.9s infinite;
}

.spinner-button-wrapper.disabled .button-wrapper {
    display: none;
}

@media (max-width: 480px) {
    .spinner-wrapper .spinner-icon {
        font-size: 30px;
    }
}