.row{
    box-sizing: border-box;
    margin: 0 auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
}
.row.column{
    flex-direction: column;
}
.row.top{
    align-items: flex-start;
}
.row.middle{
    align-items: center;
}
.row.bottom{
    align-items: flex-end;
}
.row.left{
    justify-content: flex-start;
}
.row.center{
    justify-content: center;
}
.row.right{
    justify-content: flex-end;
}
.row.nowrap{
    flex-wrap: nowrap;
}

.no-scroll{
    overflow: hidden;
}

.bg{
    background-size: cover;
    background-position: center;
}

section .container{
    box-sizing: border-box;
    margin: 40px auto;
    padding: 50px;
    display: inline-block;
    width: 1355px;
    max-width: 100%;
    color: #fff;
    background: #675c9f;
    line-height: 1.3;
}

input:focus{
    outline: none;
}

/* Popup ------------------------------------*/

.popup{
    position: fixed;
    display: flex;
    box-sizing: border-box;
    padding: 30px;
    width: 100%;
    height: 100%;
    left: 0;
    top: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1001;
    overflow: auto;
}
  
.popup.show{
    top: 0;
}
  
.popup-box{
    position: relative;
    margin: auto;
    width: 800px;
    max-width: 100%;
    opacity: 0;
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
    -webkit-transition: opacity ease-out 0.25s;
    -moz-transition: opacity ease-out 0.25s;
    -o-transition: opacity ease-out 0.25s;
    transition: opacity ease-out 0.25s;
}

.popup-box h2{
    padding: 15px 50px 15px 20px;
    font-size: 22px;
    color: #fff17c;
    background: #675c9f;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.popup-box .content{
    position: relative;
    padding: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #fff;
}
.popup-box .btn{
    display: inline-block;
    font-size: 20px;
    padding: 12px 18px;
    min-height: unset;
    margin-top: 10px;
    transition: all 0.1s ease-out;
}
.popup-box .btn:hover{
    color: #fff17c;
    background-color: #675c9f;
}
.popup-box .loading .btn{
    transition: none;
}
  
.popup.show .popup-box{
    opacity: 1;
}
  
.close{
    position: absolute;
    display: block;
    width: 17px;
    height: 17px;
    top: 18px;
    right: 15px;
    cursor: pointer;
    z-index: 10;
}
  
.close:before,
.close:after{
    position: absolute;
    display: block;
    content: '';
    background: #fff;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
       -moz-transform: translate(-50%, -50%) rotate(45deg);
         -o-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transition: background ease-out 0.1s;
       -moz-transition: background ease-out 0.1s;
         -o-transition: background ease-out 0.1s;
            transition: background ease-out 0.1s;
}
.close:before{
    width: 100%;
    height: 2px;
}
.close:after{
    width: 2px;
    height: 100%;
}
  
.close:hover:before,
.close:hover:after{
    background: #fff17c;
}

#login-popup .tip,
#register-popup .tip{
    color: #fff;
    line-height: 1.2;
}
#login-popup .tip .link,
#register-popup .link{
    cursor: pointer;
    color: #fff17c;
    transition: all 0.1s ease-out;
}
#login-popup .tip .link:hover,
#register-popup .link:hover{
    filter: brightness(1.05);
}

#login-popup .popup-box,
#register-popup .popup-box{
    width: 305px;
}
#login-popup .popup-box .content,
#register-popup .popup-box .content{
    color: #fff;
    background: #9ec053;
}
#login-popup .popup-box input,
#register-popup .popup-box input{
    width: 100%;
    border-radius: 5px;
    border: solid 1px #fff;
    margin-bottom: 20px;
    padding: 0 10px;
    box-sizing: border-box;
    line-height: 33px;
    font-size: 16px;
}
#login-popup .popup-box .remember{
    margin-right: auto;
}
#login-popup .popup-box .btn{
    margin: 0 0 0 auto;
}
#login-popup .popup-box p,
#register-popup .popup-box p{
    font-size: 16px;
    color: #fff;
}
#login-popup .popup-box p{
    padding-left: 4px;
    margin-top: 4px;
}
#login-popup .popup-box a,
#login-popup .popup-box a:active,
#login-popup .popup-box a:visited,
#login-popup .popup-box a:focus{
    color: #fff;
}
#login-popup .popup-box a:hover{
    color: #fff17c;
}

#register-popup .content{
    text-align: center;
}
#register-popup .popup-box .btn{
    margin: 0 0 20px;
}

.invalid{
    border: solid 1px #e91e63 !important;
    color: #e91e63 !important;
}
.invalid::placeholder{
    color: #e91e63 !important;
}

.checkbox{
    display: inline-block;
    position: relative;
    padding-left: 22px;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.1s ease-out;
}
.checkbox:hover{
    color: #fff17c;
}
.checkbox:before{
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    border: solid 1px #fff;
    background: rgba(255,255,255, 0.2);
}
.checkbox.checked:after{
    content: '';
    position: absolute;
    left: 9px;
    top: -1px;
    width: 4px;
    height: 9px;
    border-bottom: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);

}
/* Loading --------------------------- */

.loading-anim{
    position: absolute;
    visibility: hidden;
    opacity: 0;
    width: 58px;
    height: 58px;
    left: 50%;
    top: 50%;
    z-index: -100;
    -webkit-transform: scale(0.8) translate(-70%, -60%);
       -moz-transform: scale(0.8) translate(-70%, -60%);
         -o-transform: scale(0.8) translate(-70%, -60%);
            transform: scale(0.8) translate(-70%, -60%);
    -webkit-transition: opacity 0.25s ease-out 0.25s;
       -moz-transition: opacity 0.25s ease-out 0.25s;
         -o-transition: opacity 0.25s ease-out 0.25s;
            transition: opacity 0.25s ease-out 0.25s;
}

.loading > *,
.error > *,
.done > *{
    visibility: hidden;
}

.loading .btn,
.error .btn{
    transition: none !important;
}

.tip{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 80%;
    left: 50%;
    top: 50%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.error .tip,
.done .tip{
    visibility: visible;
    opacity: 1;
    font-size: 20px;
    -webkit-transition: opacity 0.25s ease-out 0.25s;
       -moz-transition: opacity 0.25s ease-out 0.25s;
         -o-transition: opacity 0.25s ease-out 0.25s;
            transition: opacity 0.25s ease-out 0.25s;
}

.error .tip{
    color: #ff7c7c;
}

.loading > .loading-anim{
    visibility: visible;
    opacity: 1;
    z-index: 1;
}
.circularG{
    position:absolute;
    background-color: #fff;
    width:14px;
    height:14px;
    transform:scale(0);
    border-radius:9px;
        -o-border-radius:9px;
        -ms-border-radius:9px;
        -webkit-border-radius:9px;
        -moz-border-radius:9px;
    animation-name:bounce_circularG;
        -o-animation-name:bounce_circularG;
        -ms-animation-name:bounce_circularG;
        -webkit-animation-name:bounce_circularG;
        -moz-animation-name:bounce_circularG;
    animation-duration:1.1s;
        -o-animation-duration:1.1s;
        -ms-animation-duration:1.1s;
        -webkit-animation-duration:1.1s;
        -moz-animation-duration:1.1s;
    animation-iteration-count:infinite;
        -o-animation-iteration-count:infinite;
        -ms-animation-iteration-count:infinite;
        -webkit-animation-iteration-count:infinite;
        -moz-animation-iteration-count:infinite;
    animation-direction:normal;
        -o-animation-direction:normal;
        -ms-animation-direction:normal;
        -webkit-animation-direction:normal;
        -moz-animation-direction:normal;
}
#circularG_1{
    left:0;
    top:23px;
    animation-delay:0.41s;
        -o-animation-delay:0.41s;
        -ms-animation-delay:0.41s;
        -webkit-animation-delay:0.41s;
        -moz-animation-delay:0.41s;
}
#circularG_2{
    left:6px;
    top:6px;
    animation-delay:0.55s;
        -o-animation-delay:0.55s;
        -ms-animation-delay:0.55s;
        -webkit-animation-delay:0.55s;
        -moz-animation-delay:0.55s;
}
#circularG_3{
    top:0;
    left:23px;
    animation-delay:0.69s;
        -o-animation-delay:0.69s;
        -ms-animation-delay:0.69s;
        -webkit-animation-delay:0.69s;
        -moz-animation-delay:0.69s;
}
#circularG_4{
    right:6px;
    top:6px;
    animation-delay:0.83s;
        -o-animation-delay:0.83s;
        -ms-animation-delay:0.83s;
        -webkit-animation-delay:0.83s;
        -moz-animation-delay:0.83s;
}
#circularG_5{
    right:0;
    top:23px;
    animation-delay:0.97s;
        -o-animation-delay:0.97s;
        -ms-animation-delay:0.97s;
        -webkit-animation-delay:0.97s;
        -moz-animation-delay:0.97s;
}
#circularG_6{
    right:6px;
    bottom:6px;
    animation-delay:1.1s;
        -o-animation-delay:1.1s;
        -ms-animation-delay:1.1s;
        -webkit-animation-delay:1.1s;
        -moz-animation-delay:1.1s;
}
#circularG_7{
    left:23px;
    bottom:0;
    animation-delay:1.24s;
        -o-animation-delay:1.24s;
        -ms-animation-delay:1.24s;
        -webkit-animation-delay:1.24s;
        -moz-animation-delay:1.24s;
}
#circularG_8{
    left:6px;
    bottom:6px;
    animation-delay:1.38s;
        -o-animation-delay:1.38s;
        -ms-animation-delay:1.38s;
        -webkit-animation-delay:1.38s;
        -moz-animation-delay:1.38s;
}
@keyframes bounce_circularG{
    0% { transform:scale(1); }
    100%{ transform:scale(.3); }
}
@-o-keyframes bounce_circularG{
    0% { -o-transform:scale(1); }
    100%{ -o-transform:scale(.3); }
}

@-ms-keyframes bounce_circularG{
    0% { -ms-transform:scale(1); }
    100%{ -ms-transform:scale(.3); }
}

@-webkit-keyframes bounce_circularG{
    0% { -webkit-transform:scale(1); }
    100%{ -webkit-transform:scale(.3); }
}

@-moz-keyframes bounce_circularG{
    0% { -moz-transform:scale(1); }
    100%{ -moz-transform:scale(.3); }
}

/* ------------------------- */

img{
    vertical-align: top;
}

img.svg{
    opacity: 0;
}
svg{
    vertical-align: top;
    transition: all 0.1s ease-out;
}

header .profile{
    position: relative;
    cursor: pointer;
    background: #675c9f;
    height: 38px;
    line-height: 38px;
    position: absolute;
    top: 20px;
    right: 90px;
    z-index: 2;
    color: #fff;
    border-radius: 8px;
    letter-spacing: 1px;
}
header .profile.open{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
header .profile span{
    display: block;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    padding: 0 10px 0 28px;
    transition: all 0.1s ease-out;
}
header .profile.arrow span{
    padding-right: 24px;
}
header .profile.arrow span:after{
    content: "";
    position: absolute;
    top: 16px;
    right: 10px;
    width: 0; 
    height: 0; 
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #fff;
    transition: all 0.1s ease-out;
}
header .profile.arrow:hover span:after,
header .profile.arrow.open span:after{
    border-top-color: #fff17c;
}
header .profile.arrow:hover span,
header .profile.arrow.open span{
    color: #fff17c;
}
header .profile span svg{
    fill: #fff;
}
header .profile.arrow:hover span svg,
header .profile.arrow.open span svg{
    fill: #fff17c;
}
header .profile img,
header .profile svg{
    position: absolute;
    left: 8px;
    top: 0;
    width: 16px;
    height: 38px;
}
header .profile span i{
    font-style: normal;
    font-weight: 400;
}
header .profile span a,
header .profile span a:active,
header .profile span a:visited,
header .profile span a:focus{
    color: #fff;
}
header .profile span a:hover{
    color: #fff17c;
}
header .profile ul{
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border: solid 1px #675c9f;
    border-top: none;
}
header .profile ul li{
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 28px;
    font-weight: bold;
    color: #675c9f;
    transition: all 0.1s ease-out;
}
header .profile ul li > *{
    padding: 0 10px;
}
header .profile ul li:first-child > *{
    padding-top: 6px;
}
header .profile ul li:last-child > *{
    padding-bottom: 6px;
}
header .profile ul li a{
    display: block;
}
header .profile ul li a,
header .profile ul li a:active,
header .profile ul li a:visited,
header .profile ul li a:focus,
header .profile ul li a:hover{
    color: rgb(103, 92, 159);
}
header .profile ul li:hover{
    background: rgba(103, 92, 159, 0.1);
}

.dropdown{
    display: none;
}
.has-dropdown.open .dropdown{
    display: block;
}

/* Woocommerce ----------------------------- */

.wc-pdf-product-vouchers-order-item-voucher a,
.wc-pdf-product-vouchers-order-item-voucher a:active,
.wc-pdf-product-vouchers-order-item-voucher a:visited,
.wc-pdf-product-vouchers-order-item-voucher a:focus{
    color: #fff17c;
}
.wc-pdf-product-vouchers-order-item-voucher a:hover{
    color: #ffb23b;
}

.woocommerce-table__product-name.product-name .ticket-info{
    width: 100%;
    margin-top: 10px;
}
.woocommerce-table__product-name.product-name .ticket-info .photo{
    width: 200px;
    height: 200px;
    background-color: rgba(255,255,255,0.5);
    background-image: url('../img/icons/default-photo.png');
    border: solid 1px #fff;
    margin-right: 20px;
}
.woocommerce-table__product-name.product-name .ticket-info p{
    margin: 0 0 9px;
    font-size: 20px;
}
.woocommerce-table__product-name.product-name .ticket-info p:last-child{
    margin-bottom: 0;
}