@import url('https://fonts.googleapis.com/css?family=Lato:100,300,300i,400,400i,700,900&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Poppins:600');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap');

/* reset default style options */
:root {
    --font-family-sans-serif: 'Lato', sans-serif;
    --font-family-monospace: 'Lato', sans-serif;
    --font-weight-thin: 100;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-semi-bold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    --nav-primary-color: #5ca9ff;
    --nav-secondary-color: #fff;
    
    --primary-color: #5ca9ff;
    --secondary-color: #c0deff;
    --active-color: #fff;
    --tertiary-color: #666666;
    --tertiary-color-login: #c4c4c4;
    --disabled-color: #c5c5c5;

    --interactivity-empty: rgba(255, 0, 0, 0.3);

    --designer-outline-color: #05e9d1;
}

/* hide borders around images when it has empty src on safari */
img[src='']{
    content: '';
    visibility: hidden;
}

/* prevent drag'n'drop select on safari */
body {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}

body {
    background-color: #f6f6f6;
    position:relative;
}

/* for centering remainig page content */
html, body {
    height: 100%;
}

body > .container-fluid {
    /* main navigation height = 102px */
    height: calc(100% - 102px);
}

body.with-counter > .container-fluid {
    height: auto;
    padding-bottom: 7vw;
}

body.flipbook.with-counter > .container-fluid {
    padding-bottom: 9vw;
}

@media (min-width: 500px) {
    body.with-counter > .container-fluid {
        padding-bottom: 45px;
    }

    body.flipbook.with-counter > .container-fluid {
        padding-bottom: 75px;
    }
}

body.web-designer > .container-fluid,
body.mobile-designer > .container-fluid,
body.interactivities > .container-fluid {
    height: auto;
}

@media (max-width: 991px) {
    
    @media (orientation: landscape) {
        body.flipbook > .container-fluid {
            padding-left: 25px;
            padding-right: 25px;
        }
        
    }
}
@media (max-width: 767px) {
    body.flipbook > .container-fluid {
        /* main navigation height = 102px */
        padding-left: 5px;
        padding-right: 5px;
    }
}


body > .container-fluid.has-header {
    /* main navigation height = 102px */
    /* page-header height = 96px */
    height: calc(100% - 198px);
}

@media (max-width: 767px) {
    body > .container-fluid.has-header.disallow-mobile {
        /* main navigation height = 102px */
        height: calc(100% - 102px);
    }
}

.mobile-portrait {
    display: none !important;
}

@media (orientation: portrait) {
    .mobile-portrait {
        display: flex !important;
    }
}

.mobile-landscape {
    display: none !important;
}

@media (orientation: landscape) {
    .mobile-landscape {
        display: flex !important;
    }
}

.center-content-vertically {
    display: flex;
    flex-direction: column;
    height:100%;
}

.center-content-vertically > * {
    flex-shrink: 0;
}

.center-content-vertically > :first-child {
    margin-top: auto !important;
}

.center-content-vertically > :last-child {
    margin-bottom: auto !important;
}

/* styles */
html {
    font-size: 62.5%;
}

body {
    font-family: var(--font-family-sans-serif);
    font-weight: var(--font-weight-regular);
    font-size: 1.5rem;    
}

a:focus,
button:focus {
    outline: none;
}

a:hover {
    text-decoration: none;
}

.form-check-input.is-valid~.form-check-label, .was-validated .form-check-input:valid~.form-check-label {
    color: inherit;
}

.font-weight-black {
    font-weight: var(--font-weight-black) !important;
}

.tooltip {
    font-family: var(--font-family-sans-serif);
    font-weight: var(--font-weight-regular);
    font-size: 1.3rem;  
}

/* clear iphone style */
input[type=text] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
 }

/* remove outline */
.form-control:focus,
.btn.focus, 
.btn:focus,
.btn:not(:disabled):not(.disabled).active:focus, 
.btn:not(:disabled):not(.disabled):active:focus, 
.show > .btn.dropdown-toggle:focus {
    box-shadow: none;
}

/* remove borders */
.btn {
    border: none;
    transition: none;
}

/* styles */

.no-transition {
    transition: none !important;
}

.text-primary {
    color: var(--primary-color);
}

.border-primary {
    border-color: var(--primary-color);
}

svg {
    display:block;
}

.svg-link {
    cursor: pointer;
}

.svg-link > svg {
    max-width: 30px;
    width: 100%;
    max-height: 30px;
    height: auto;
}

.svg-link:hover > svg path {
    fill: var(--primary-color);
}

.btn {
    font-size: 1.5rem;
}

.btn:not(:disabled):not(.disabled):hover,
.btn:not(:disabled):not(.disabled).active, 
.btn:not(:disabled):not(.disabled):active, 
.btn:not(:disabled):not(.disabled).active-colorpicker, 
.btn:not(:disabled):not(.disabled).active-sidebar, 
.show > .btn-primary.dropdown-toggle {
    background: var(--primary-color);
    color: var(--active-color);
    box-shadow: none;
    border-color: var(--primary-color);
}

.btn-outline-secondary {
    border: 1px solid var(--primary-color);
    text-align: center;
    text-transform: uppercase;
    padding: 1.3rem 2.7rem;
    border-radius: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:not(:disabled):not(.disabled):active {
    border-color:var(--primary-color);
}

.btn-outline-secondary > svg {
    max-width: 19px;
    width: 100%;
    max-height: 19px;
    height: auto;
}

.btn-outline-secondary > svg .symbol {
    fill: var(--primary-color);
}

.btn-outline-secondary:hover > svg .symbol {
    fill: #fff;
}

.btn-outline-group {
    border: 1px solid #d9d9d9;
    background:transparent;
    color: var(--primary-color);
        font-size: 1.75rem;
    padding: .375rem 1.25rem;
}

.btn.btn-outline-group:not(:disabled):not(.disabled):hover {
    border: 1px solid #d9d9d9 !important;
    color: var(--primary-color) !important;
}

.form-control, .custom-select {
    font-size: 1.2rem;
    padding: 1rem;
    border-radius: 0.5rem;
    border-color: #d2d2d2;
    color: var(--tertiary-color);
    box-shadow: none;
}

.form-control:focus {
    border-color: #d2d2d2;
}

.form-control::placeholder {
    text-align: center;
    font-weight: var(--font-weight-light);
    color:#d9d9d9;
}

.form-control:focus::placeholder {
    color: transparent !important;
}

.form-control::-ms-input-placeholder {
    text-align: center;
    font-weight: var(--font-weight-light);
    color:#d9d9d9;
}

.form-control:focus::-ms-input-placeholder {
    color: transparent !important;
}

.form-control[readonly]::placeholder {
    color: #d9d9d9;
}

.form-control[readonly]::-ms-input-placeholder {
    color: #d9d9d9;
}

.form-control[readonly].datepicker,
.form-control[readonly].datetimepicker {
    background: #fff;
}

.form-check-label {
    margin-left: 5px;
}

.form-check-input.is-invalid ~ .form-check-label, .was-validated .form-check-input:invalid ~ .form-check-label {
    color: inherit;
    border-bottom: 1px solid #dc3545 !important;
}

.custom-select.is-invalid, 
.form-control.is-invalid, 
.was-validated .custom-select:invalid, 
.was-validated .form-control:invalid,
.was-validated [type=checkbox]:invalid
.StripeElement.invalid {
    border-color: #dc3545 !important;
}

.form-control.is-valid, 
.was-validated .custom-select:valid, 
.was-validated .form-control:valid {
    border-color: #d2d2d2 !important;
}

.form-control:valid:focus,
.form-control:invalid:focus {
    box-shadow: none !important;
}

.form-control + span:empty {
    display: none;
}

.form-control:required + span {
    display: inline;
}

.form-with-required-indicators .form-control:required + span::after,
.form-with-required-indicators .custom-select:required + span::after {
    content: '*';
    position: absolute;
    top: -0.1rem;
    right: 1.25rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    display: block;
}

.input-counter-wrapper {
    position: relative;
}

.input-counter {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    right:10px;
    bottom:0;
    position:absolute;
    letter-spacing: .05rem;
    color: #828491;
}

.pseudo-placeholder-wrapper {
    display: table;
    position: relative;
    padding: 0 15px;
}

.pseudo-placeholder {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    right:25px;
    bottom:1px;
    position:absolute;
    letter-spacing: .05rem;
    color: #828491;
}

.col-form-label.bolded {
    font-weight: var(--font-weight-bold);
    font-size: 1.9rem;
    letter-spacing: 0.05rem;
    height: 100%;
    margin-top: auto;
    padding-bottom: 0;
    padding-top: 0;
}

.custom-select {
    cursor:pointer;
    height: calc(4.1rem + 2px);
    background:#fff url('../img/icon-chevron-down.svg') no-repeat right 0 center;
    padding-right: 2.5rem !important;
    border-color: #d2d2d2;
    border-radius: 0.5rem;
    text-align: center;
    text-align-last: center;
}

.custom-select:invalid {
    color: #d9d9d9;
}

.custom-select:disabled {
    background: #e9ecef;
    padding-right: 0 !important;
    cursor: auto;
}

.custom-select:focus,
.custom-select.is-valid:focus, 
.form-control.is-valid:focus, 
.was-validated .custom-select:valid:focus, 
.was-validated .form-control:valid:focus{
    border-color: #d2d2d2;
    box-shadow: none;   
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
    background:transparent;
}
.custom-control-input.is-valid ~ .custom-control-label, 
.was-validated .custom-control-input:valid ~ .custom-control-label {
    color:inherit;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
    box-shadow: none;   
}

.form-control-secondary {
    font-family: 'Lato', sans-serif;
    font-weight: var(--font-weight-regular);
    color: #666666;
    text-align: center;
    border-color: #d2d2d2;
}

.form-control-secondary:focus {
    color: #d9d9d9;
    border-color: #d2d2d2;
}


.form-control-secondary:disabled, .form-control-secondary[readonly] {
    background: #fff;
}

.input-group > .input-group-append > .btn-outline-secondary:hover svg .fill {
    fill: #000;
}

textarea.form-control-plaintext[readonly] {
    resize: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.42vw;
}

h3.issues {
    font-weight: var(--font-weight-light);
    font-size: 3rem;
    text-transform: none;
}

.h5, h5 {
    font-size: 2rem;
}

h6 {
    font-size: 1.4rem;
    color: #000;
}

h6.bigger {
    font-weight: var(--font-weight-regular);
    font-size: 3rem;
}

.pt-6r, .py-6r {
    padding-top: 6rem !important;
}

.pb-6r, .py-6r {
    padding-bottom: 6rem !important;
}

.w-60 {
    width: 60% !important;
}

.w-40 {
    width: 40% !important;
}

.close {
    font-size: 2.4rem;
}

.relative {
    position: relative;
}



.public-page #logo {
    margin: 4.0rem 0;
    height: 5rem;
}





.public-page .panel-register #registerFormColumn1{
    
}
.public-page .panel-register #registerFormColumn2{
    width: 1px;
    background-color: rgba(250,250,250, 0.5);
    max-width: 1px;
    padding: 0px;
}
.public-page .panel-register #registerFormColumn3{
    min-height: 450px;
}



@media (max-width: 700px) {
    .public-page .panel-register #registerFormColumn1{
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .public-page .panel-register #registerFormColumn2{
        display:none !important;
    }
    .public-page .panel-register #registerFormColumn3{
        display:none !important;
    }
}

.public-page-tos {
    background: var(--primary-color);
    color: #fff;
}

.public-page-tos ol {
    margin-bottom: 0;
}

.public-page-tos ol[type="I"] {
    text-align: left;
}

.public-page-tos ol[type="I"] li {
    margin-left: 5px;
}

.public-page-tos a {
    color: #fff;
    text-decoration: none;
}

.public-page-tos li > p {
    margin-bottom: 13px !important;
}

.public-page-tos .section-start {
    padding-top: 61px !important;
    padding-bottom: 13px !important;
    margin-bottom: 0 !important;
}

.public-page-tos .section-title {
    padding-bottom: 13px !important;
    margin-bottom: 0 !important;
}

.testimonial-row{
    bottom: 0px;
    position: absolute;
}

.testimonial-row img{
    display: inline-block; vertical-align: middle; width: 56px; height: 56px; border-radius: 50%;
    float: left;
    
    
}

.public-page h2 {
    font-weight: var(--font-weight-regular);
    color: #000;
    font-size: 2rem;
    letter-spacing: 0.05rem;
}

.public-page h3 {
    font-weight: var(--font-weight-black);
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: 0.05rem;
    text-transform: none;
}

/* overrides for public-page "smaller" version */
body.public-page .btn {
    padding: .5rem 1.6rem;
    min-width: auto;
    font-size: 1.5rem;
    width: 100%;
    text-transform: unset;
    letter-spacing: 0.1rem;
    border-radius: 0.5rem !important;
    
}



.text-danger{
        font-weight: 300;
    font-size: 1.5rem;
}




/* main navigation */
#main-navigation.navbar-light {
    padding: 0.63vw 0.52vw;
}

#main-navigation > .container {
    max-width: 1820px;
}

#main-navigation.navbar-light .nav-items {
    margin-left: 0;
    justify-content: center;
}

@media (min-width: 992px) {
    #main-navigation.navbar-light .nav-items {
        /*margin-left: 30vw;*/
        left: 50%;
        transform: translateX(-50%);
        margin: 0px;
        position: absolute;
    }
}
@media (max-width: 992px) {
    #main-navigation.navbar-light .nav-items {
        /* 17px = scrollbar width */
        width: calc(100vw - 140px - 70px);
    }
}


#main-navigation.navbar-light .nav-items hr {
    height: 1px;
    border: 0;
    border-top: 1px dotted #fff;
    width: 30px;
    margin: auto 10px;
    background: transparent;
}


#main-navigation.navbar-light .nav-items .link {
    width: 80px;
    height: 80px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.3;
    letter-spacing: .1rem;
    white-space: nowrap;
    outline:0;
    text-decoration: none;
    position:relative;
    flex-shrink:0;
    font-weight: var(--font-weight-bold);
    cursor: pointer;
}

@media (max-width: 991px) {
    #main-navigation.navbar-light .nav-items hr {
        border-top: 0px dotted #fff;
        width: 0px;
        margin: auto 0px;
    }
    
    
    @media (orientation: landscape) {
        #main-navigation.navbar-light {
            padding: 0.0vw 0px;
        }

        #main-navigation.navbar-light .nav-items .link {
            max-height: 50px;
            height: 50px;
            max-width: 100px;
            width: 100px;
            font-size: 12px;
            margin: 0px 0;
            border: 0px solid #fff;
            border-radius: 0px;
            
        }
    }
    @media (orientation: portrait) {
        #main-navigation.navbar-light .nav-items .link {
            max-width: 60px;
            max-height: 60px;
            font-size: 11px;
            margin: 11px 10px;
        }
        #main-navigation.navbar-light {
            padding: 0.0vw 0px;
        }
    }
}

#main-navigation.navbar-light .nav-items .link:last-of-type {
    margin-right: 0;
}

#main-navigation.navbar-light .nav-items .link:last-of-type:after {
    display:none;
}

#main-navigation.navbar-light .nav-items .link.active,
#main-navigation.navbar-light .nav-items .link:hover {
    background: var(--nav-secondary-color);
    color: var(--nav-primary-color);
}

#main-navigation.navbar-light .nav-items .link.highlighted {
    z-index: 1010;
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    pointer-events: none;
}

#main-navigation.navbar-light .nav-items .link > span {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);

}

#main-navigation.navbar-light .navbar-nav .nav-link {
    border: 1px solid #fff;
    border-radius: 2rem;
    color: #fff;
    margin: 0 3px;
    text-align: center;
    font-size: 1.235rem;
    padding: .5rem 2.4rem;
    letter-spacing: 0.05rem;
    white-space: nowrap;
}


@media (max-width: 991px) {
    
    #main-navigation.navbar-light .navbar-nav .nav-link {
        padding: .3rem 2.4rem;
    }
}

#main-navigation.navbar-light .navbar-nav .nav-item.active > .nav-link, 
#main-navigation.navbar-light .navbar-nav .nav-link:hover {
    background: var(--nav-secondary-color);
    color: var(--nav-primary-color);
}

#main-navigation.navbar-light .navbar-nav .nav-item.active > .nav-link:hover {
    background: var(--nav-primary-color);
    color: var(--nav-secondary-color);
}

#main-navigation .navbar-brand > img {
    width: auto;
    height: 35px;
}

@media (max-width: 991px) {
    #main-navigation .navbar-brand > img {
        height: 19px;
        margin-left: 8px;
    }
    
    @media (orientation: portrait) { 
        #main-navigation .navbar-brand > img {
            visibility: hidden;
            margin-left: 0px;
        }
        
        .navbar-brand {
            margin: 0px;
        }
    }
}

#main-navigation.navbar-light .navbar-toggler {
    border: none;
    font-size: 1.75rem;
    margin-right: 8px;
    margin-left: 1.45rem;
}


    @media (orientation: landscape) { 
        #main-navigation.navbar-light .navbar-toggler {
            margin-right: 30px;
        }
        
    }

#main-navigation.navbar-light .navbar-toggler.highlighted {
    z-index: 1010;
    border-color: var(--primary-color);
    pointer-events: none;
}

#main-navigation.navbar-light .navbar-toggler.highlighted .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%235ca9ff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* navigation icons */
#main-navigation .nav-icon-wrapper {
    border-radius: 100%;
    width: auto;
    height: auto;
    position: relative;
}

#main-navigation .nav-icon-wrapper.active {
    box-shadow: 0 0 0 1px #fff inset, 0 0 10px 0 #fff inset;
}

#main-navigation .nav-icon-wrapper.attention {
    box-shadow: 0 0 0 1px #cb4d4d inset, 0 0 10px 0 #fff inset;
    margin: 0 2px;
}

#main-navigation .nav-icon-wrapper.highlighted {
    z-index: 1010;
    pointer-events: none;
}

#main-navigation .nav-icon-wrapper.highlighted svg .emblem {
    fill: var(--primary-color);
}

#main-navigation .nav-icon {
    border-radius: 100%;
    margin: 5px;
    display: block;
    padding: 0.8rem;
}

@media (max-width: 991px) {
    #main-navigation .nav-icon-wrapper {
        margin: 5px;
        width: 38px;
        height: 38px;
    }
    
    #main-navigation .nav-icon {
        padding: 0.1rem;
    }
}

#main-navigation .nav-icon-wrapper.attention .nav-icon,
#main-navigation .nav-icon-wrapper.active .nav-icon,
#main-navigation .nav-icon:hover {
    background: var(--nav-secondary-color);
}

@media (max-width: 991px) {
    
    #main-navigation .nav-icon-wrapper.attention .nav-icon,
#main-navigation .nav-icon-wrapper.active .nav-icon {
    
        background: var(--nav-secondary-color);
        width: 28px;    
        height: 28px;    
        
    
    }
    
    #main-navigation .nav-icon:hover{
        background: transparent;
    }
}


#main-navigation .nav-icon-wrapper.active svg .emblem {
    fill: #4b4b4b;
}

#main-navigation .nav-icon-wrapper.attention svg .emblem {
    fill: #cb4d4d;
}

#main-navigation .nav-icon svg {
    display: block;
    width: 1.77vw;
    height: 1.77vw;
}

@media (max-width: 991px) {
    #main-navigation .nav-icon svg {
        width: 26px;
        height: 26px;
        float: left;
        
    }
    
    
    #main-navigation .nav-icon::after{
        /*content: 'Push notifications';*/
        color: white;
        line-height: 40px;
        height: 40px;
        margin-left: 10px;
        float: left;
    }

    @media (orientation: landscape) {
        .navbar-brand{
            margin-left: 30px;
        }
    }
}

#main-navigation .nav-icon-wrapper.active .nav-icon svg {
    padding: 3px;
}

#main-navigation .nav-icon svg .emblem, 
#main-navigation .nav-icon svg .emblem {
    fill:var(--nav-secondary-color);
}

#main-navigation .nav-icon:hover svg .emblem {
    fill: var(--nav-primary-color);
}

#main-navigation .nav-icon-wrapper.attention .nav-icon:hover svg .emblem {
    fill: #cb4d4d;
}

@media (max-width: 991px) {
    #main-navigation .navbar-collapse {
        margin-top: 0px;
        background: #87befb;
        /*min-height: 400px;//calc(100vh - 102px);*/
    }
    
    #main-navigation .nav-icon:hover svg .emblem {
        fill: #ffffff;
    }
 

}

#main-navigation .navbar-collapse > div {
    margin: 0 5px;
}


#main-navigation.navbar-light .navbar-nav .nav-link.large {
    /*font-size: 0.83vw;*/
        font-size: 1.2rem;
}

@media (max-width: 991px) {
    #main-navigation.navbar-light .navbar-nav .nav-link.large {
        font-size: 14px;
        margin: 5px;
        /*margin-top: 10px;*/
        /*margin-bottom: 20px;*/
    }

    #main-navigation .navbar-collapse > div {
        margin: 5px 5px;
         flex-direction: unset !important;
    }

    
   
}

#main-navigation  h4 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: var(--font-weight-bold);
}

#main-navigation.navbar {
    background: var(--nav-primary-color) !important;
    min-height: 102px;
}


@media (max-width: 991px) {
    @media (orientation: landscape) { 
        #main-navigation.navbar {
            min-height: 50px;
        }
    }
    @media (orientation: portrait) { 
        #main-navigation.navbar {
            min-height: 82px;
        }
    } 
}


/*#main-navigation.navbar.navbar-disabled a:not(.nav-link) {
    pointer-events: none;
}
#main-navigation.navbar.navbar-disabled div#nav-settings a:not(.nav-link){
    pointer-events: all;
}*/

#main-navigation.navbar.navbar-disabled a#nav-web:not(.nav-link),
#main-navigation.navbar.navbar-disabled a#nav-app:not(.nav-link)
{
    opacity:0.5;
    pointer-events: none;
}
#main-navigation.navbar.navbar-disabled div#nav-notifications a:not(.nav-link),
#main-navigation.navbar.navbar-disabled div#nav-stats a:not(.nav-link),
#main-navigation.navbar.navbar-disabled div#nav-sales a:not(.nav-link)
/*#main-navigation.navbar.navbar-disabled div#nav-settings a:not(.nav-link)*/
{
    opacity:0.5;
    
    pointer-events: none;
}

#main-navigation.navbar.navbar-disabled-all a:not(.navbar-brand):not(.nav-link)
{
    opacity:0.5;
    pointer-events: none;
}

#main-navigation .spacer {
    width: 25px;
}

#main-navigation .nav-upgrade {
    left: 22.9%;
    transform: translateX(-50%);
    position: absolute;
}

#main-navigation .navbar-collapse .nav-upgrade {
    display: none;
    position: static;
    left: auto;
    transform: none;
}

@media (max-width: 991px) {
    #main-navigation .nav-upgrade {
        display: none;
    }

    #main-navigation .navbar-collapse .nav-upgrade {
        display: block;
    }
}

/* when navigation bar buttons begin to overlap */
@media (max-width: 1230px) {
    #main-navigation .nav-upgrade {
        position: static;
        left: auto;
        transform: none;
    }

    #main-navigation.navbar-light .nav-items {
        position: static;
        left: auto;
        transform: none;
        margin-left: auto;
    }

    #main-navigation .navbar-collapse {
        flex-grow: 0;
    }

    #main-navigation.navbar-light .nav-upgrade .nav-link {
        margin: 0 0 0 0.8rem;
    }
}

#main-navigation.navbar-light .navbar-nav.nav-upgrade .nav-link {
    background: var(--primary-color);//#fff;
    border-color: #fff;//ar(--primary-color);
    color: #fff;//var(--primary-color);
    transition: all ease-in-out .15s;
    letter-spacing: 0.075rem;
    font-weight: 700;
}

#main-navigation.navbar-light .navbar-nav.nav-upgrade .nav-link:hover {
    background: #fff;
    /*border-color: #fff;*/
     border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
}

/* custom "table" styles */
.table-custom > .header {
    margin-bottom: .5rem;
}

.table-custom > .header > div {
    font-weight: var(--font-weight-regular);
}

.table-custom.sortable > .header > div {
    cursor: pointer;
    font-weight: var(--font-weight-bold);
    
}

.table-custom.sortable > .header > div > span {
    position: relative;
    padding: .5rem 1rem;
    border-radius: 5rem;
}

.table-custom.sortable > .header > .asc > span::after {
    background:#fff url('../img/icon-chevron-up.png') no-repeat right .5rem top .5rem;
    content: '';
    width:25px;
    height:25px;
    right:-30px;
    position: absolute;
}

.table-custom.sortable > .header > .desc > span::after {
    background:#fff url('../img/icon-chevron-down.png') no-repeat right .5rem top .5rem;
    content: '';
    width:25px;
    height:25px;
    right:-30px;
    position: absolute;
}

.table-custom.sortable > .header > .asc > span, 
.table-custom.sortable > .header > .desc > span {
    background: var(--active-color);
}

.table-custom > .row.body {
    margin-bottom: .5rem;
}

.table-custom > .body .bordered {
    border: 1px solid #d2d2d2;
    border-radius: .5rem;
    padding: .375rem;
    height: 100%;
    width: 100%;
    line-height: 2;
}

.table-custom > .body > div .bordered.highlighted {
    background: #e9ecef;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.table-custom > .body .form-control {
    padding: .75rem;
    line-height: 1.5;
}

.table-custom > .body .custom-select {
    height: 100%;
}

.table-custom > .body .input-group {
    height:100%;
}

.table-custom img, 
.table-custom svg,
.min-table svg,
.min-table img {
    max-height: 22px;
    max-width: 22px;
}

.table-custom .custom-select {
    height:100%;
}

.table-custom input,
.table-custom select {
    font-weight: var(--font-weight-bold);
    font-size: 1.4rem;
    height:100%;
    vertical-align:middle;
    padding: 1rem;
}

.table-custom .bordered input {
    padding: 0.75rem;
}

.table-custom .btn {
    font-size: 1.4rem;
}

.table-custom .btn-outline-secondary {
    padding: 0.375rem 0.75rem;
}

.table-custom .btn-outline-group {
    border-radius: 0.5rem;
}

.modal-footer > .table-custom {
    max-height:32vh;
    overflow-y: auto;
}

.row-small-gutter {
    margin-left: -4.5px;
    margin-right: -4.5px;
}

.row-small-gutter > * {
    padding-left: 4.5px;
    padding-right: 4.5px;
}

/* other */
h4 {
    color: #b5b5b5;
}

h3 {
    font-weight: var(--font-weight-black);
    font-size: .9vw;
    text-transform: uppercase;
    margin-top: 3rem;
    color:var(--tertiary-color);
}

h3:first-child {
    margin-top: 0;
}

h1.page-title {
    font-size: 4rem;
    font-weight: var(--font-weight-regular);
}

h1.table-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-regular);
    color: var(--tertiary-color);
}

h2.page-line {
    font-size: 2.3rem;
    font-weight: var(--font-weight-bold);
    margin: 4rem 0;
    color:#597a9e;
}

h2.page-line.stronger {
    margin: 6rem 0 4rem 0;
    font-size: 2.2rem;
    letter-spacing: 0.15rem;
}



@media (max-width: 901px) {
    @media (orientation: portrait) {
        h2.page-line.stronger {
            margin: 3rem 0 3rem 0;
            font-size: 2.2rem;
            letter-spacing: 0.15rem;
        }
        
    }
    @media (orientation: landscape) {
        h2.page-line.stronger {
            margin: 1rem 0 1rem 0;
            font-size: 2.0rem;
            letter-spacing: 0.15rem;
        }
        
    }
    
}
h3.page-line {
    font-size: 2rem;
    font-weight: var(--font-weight-regular);
    margin: 2rem 0;
    text-transform: none;
}

.page-line > span {
    font-size: 1.2rem;
    font-weight: var(--font-weight-regular);
    color: var(--primary-color);
    display: block;
    margin-top:1rem;
}

hr {
    background: #b5b5b5;
}
/* custom dropdown - select replacemenet */
.btn.btn-dropdown {
    cursor:pointer;
    font-size: 1.2rem;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: none;
    text-align: center;
    width: 100%;
    border: 1px solid #d2d2d2;
    color: var(--tertiary-color);
    background: #fff;
    letter-spacing: 0.05rem;
}

.btn.btn-dropdown:disabled {
    background-color: #e9ecef;
    opacity: 1;
    cursor: auto;
}

.btn.btn-dropdown.dropdown-toggle::after {
    position: absolute;
    top: 16px;
    right: 10px;
    border-top-width: 7px;
    border-right-width: 7px;
    border-left-width: 7px;
}

.btn.btn-dropdown.dropdown-toggle:disabled::after {
    display: none;
}

.btn.btn-dropdown:not(:disabled):not(.disabled):hover {
    border: 1px solid #d2d2d2;
    color: var(--tertiary-color);
    background: #fff;
}

.dropdown.dropdown-select .btn, 
.dropdown.dropdown-select .dropdown-item {
    font-weight: var(--font-weight-bold);
}

.dropdown.dropdown-select > .dropdown-menu {
    right: 0;
    border-radius: 0.5rem;
}

.dropdown.dropdown-select > .dropdown-menu > .dropdown-item {
    font-size: 1.5rem;
    color: var(--tertiary-color);
    text-align: center;
    letter-spacing: 0.05rem;
    font-weight: var(--font-weight-regular);
}

.dropdown.dropdown-select > .btn-dropdown > .separator,
.dropdown.dropdown-select > .dropdown-menu > .dropdown-item > .separator {
    color: var(--primary-color);
}
/* end custom dropdown - select replacemenet */

.dropdown.dropdown-select > .dropdown-menu > .dropdown-item:hover,
.dropdown.dropdown-select > .dropdown-menu > .dropdown-item:focus {
    background-color: #d2d2d2;
}

.btn-primary {
    color: #fff;
    background: var(--primary-color);
    min-width: 185px;
    text-align: center;
    text-transform: uppercase;
    padding: 1.3rem 2.7rem;
    border-radius: 3rem;
    font-weight: var(--font-weight-black);
    border: 1px solid transparent;
}

a:not([href]):not([tabindex]).btn-primary {
    color: #fff;
}

.btn:not(:disabled):not(.disabled).btn-primary:hover {
    border: 1px solid var(--primary-color);
}

.btn-primary.alt {
    border: 1px solid var(--primary-color);
    background: #fff;
    color: var(--primary-color);
}

.btn:not(:disabled):not(.disabled).btn-primary.alt:hover {
    border: 1px solid #fff;
    background: var(--primary-color);
    color: #fff;
}

.btn:not(:disabled):not(.disabled).btn-outline-primary,
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    min-width: 185px;
    text-align: center;
    text-transform: uppercase;
    padding: 1.3rem 2.7rem;
    border-radius: 3rem;
    font-weight: var(--font-weight-regular);
}

.btn:not(:disabled):not(.disabled).btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    cursor: not-allowed;
}

.btn:not(:disabled):not(.disabled).btn-outline-primary.btn-alt,
.btn.btn-outline-primary.btn-alt:disabled {
    font-weight: var(--font-weight-bold);
    border-radius: 3rem;
    font-size: 1.4rem;
    letter-spacing: 0.075rem;
}

.btn-outline-action {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 10rem;
    font-size: 1.1rem;
    font-weight: var(--font-weight-regular);
    text-transform: uppercase;
    letter-spacing: 0.075rem;
    padding: 0.7rem 0;
    width:16.5rem;
}

.btn-outline-action:disabled,
.btn-outline-action:hover:disabled,
.btn-outline-action.disabled
.btn-outline-action:hover.disabled {
    opacity: 1;
    border-color: #c5c5c5;
    color: #c5c5c5;
}

.btn-outline-action.btn:not(:disabled):not(.disabled):hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-outline-action.active {
    color: var(--primary-color);
}

.btn-outline-action.active:hover {
    border-color: var(--primary-color);
}

.btn-outline-action.btn-alt.active:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-outline-action.highlighted {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    z-index: 1010;
    pointer-events: none;
    position: relative;
}

.btn-success {
    background: #00e15f;
    border-radius: 10rem;
    padding: .75rem 3rem;
}

.fake-btn {
    display: inline-block;
    border: 0;
    background: #00e15f;
    border-radius: 10rem;
    padding: .75rem 3rem;
    color: #fff;
}

.btn-link-svg > svg .symbol {
    fill:#d2d2d2;
}

.btn-link-svg:hover,
.btn-link-svg:focus,
.btn.btn-link-svg:not(:disabled):not(.disabled):active {
    background:transparent;
}

.btn-svg {
    background: transparent;
    padding: .6rem 0;
}

.modal-footer .btn:not(:disabled):not(.disabled).btn-svg:hover,
.btn:not(:disabled):not(.disabled).btn-svg:hover {
    background: transparent;
}

.btn-svg > svg {
    width: 3.2rem;
    height: 3.2rem;
    display: block;
    margin: auto auto;
}

.btn-svg > svg .symbol {
    fill: var(--primary-color);
}

.btn-public {
    width: 100%;
    background: #6da9f8;
    border-radius: 0;
    text-transform: uppercase;
    color: #fff;
}

#interactivities-thumbnails {
    font-weight: var(--font-weight-black);
    margin-right: 27px;
    background: #e7e7e7;
    margin-top: 10px;
    min-height: 100%;
    /*height: 100%;*/
}

#interactivities-thumbnails > img { 
    width: 170px;
    max-height: 234px;
    object-fit: contain;
    cursor: pointer; 
    filter: drop-shadow(0 -1px var(--tertiary-color)) drop-shadow(0 1px var(--tertiary-color)) drop-shadow(-1px 0 var(--tertiary-color)) drop-shadow(1px 0 var(--tertiary-color));
}

#interactivities-thumbnails > img[src$="loader.svg"] {
    box-shadow: none;
    filter: none;
}

#interactivities-thumbnails > img:first-child { 
    margin-top:2px;
}

#interactivities-thumbnails > img.active { 
    filter: drop-shadow(0 -3px var(--primary-color)) drop-shadow(0 3px var(--primary-color)) drop-shadow(-3px 0 var(--primary-color)) drop-shadow(3px 0 var(--primary-color));
}

#interactivities-thumbnails > img.active[src$="loader.svg"] {
    box-shadow: none;
    filter: none;
}

#interactivities-thumbnails > label {
    font-weight: var(--font-weight-regular);
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--tertiary-color);
}

#interactivities-container { 
    position: relative; 
    background: #e7e7e7;
    padding: 5px 22px;
    margin: 0 30px;
    border-radius: 10px;
    width: 595px;
    flex-shrink: 0;
    /* 
        1.26vw = navigation padding (top+bottom); 
        4.32vw = navigation height (big buttons); 
        14.9vh = top bar height;
        10px = bottom margin;
    */
    height: calc((((100vh - 1.26vw) - 4.32vw) - 14.9vh) - 10px);
}

#interactivities-overlay { 
    position: absolute; 
    left:0; 
    top:0; 
    width:100%; 
    height:100%;
}

#interactivities-overlay.show-areas .interactivity-area {
    background: rgba(93, 169, 255, 0.6);
}

#interactivities-overlay.show-areas .interactivity-area.empty {
    background: var(--interactivity-empty);
}

.interactivities-sidebar {
    width: 240px;
    flex-shrink: 0;
    position: relative;
}

.interactivities-sidebar .top {
    position: absolute;
    background: #f6f6f6;
    top: 0;
    left: 0;
    right: 27px;
    height: 10px;
    z-index: 999;
}

.interactivities-sidebar .top-inside {
    width:100%;
    height:100%;
    background: #e7e7e7;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.interactivities-sidebar.sidebar-right > * {
    max-width: 100px;
}

.interactivities-sidebar.sidebar-right > .highlightable {
    max-width: 130px;
    margin-left: -15px;
    color: #5ca9ff;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.075rem;
}
.interactivities-sidebar.sidebar-right > .highlightable.on {
    background-color: transparent;
    color: var(--nav-primary-color);
}

.interactivities-sidebar.sidebar-right .btn-circular-outline-primary {
    font-size: 1.2vh;
}

.interactivities-sidebar.sidebar-right .btn-circular-outline-primary > .btn-upgrade-small {
    /* font-size * line-height; 4px for extra including borders */
    top: calc(-1 * ((1.23vh * 1.6) + 4px));
    padding: 0 2.25vh;
    font-size: 1.23vh;
    line-height: 1.6;
}

.interactivities-sidebar.sidebar-right div:last-child {
    margin: 0.0vh 0 0.1vh 0;
}

.interactivities-sidebar.sidebar-right label.small{
    font-weight: var(--font-weight-regular);
    color: #666;
}

#interactivities-canvas {
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

#interactivities-canvas.horizontal {
    width: 100%;
    height: auto;
}

#interactivities-canvas.vertical {
    width: auto;
    height: 100%;
}

.interactivity-area {
    position: absolute;
    background: rgba(93, 169, 255, 0.6);
    cursor: move;
}

.interactivity-area.selected {
    background: rgba(93, 169, 255, 0.9) !important;
    z-index: 333;
}

.interactivity-area.selected::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 2px dashed var(--primary-color);
}

.interactivity-area.selected.empty::before {
    border-color: var(--interactivity-empty);
}

.interactivity-area.hide-area.empty {
    background-color: var(--interactivity-empty);
}

.interactivity-area.hide-area.empty.selected {
    background-color: var(--interactivity-empty) !important;
    border-color: var(--interactivity-empty);
}

.interactivity-area.hide-area.empty.selected::before {
    border-color: var(--interactivity-empty);
}

.interactivity-area.hide-icon > .interactivity-intra-btn {
    display: none;
}

.interactivity-area.hide-icon.empty,  
.interactivity-area.hide-icon.empty.selected {
    background: var(--interactivity-empty) !important;
}

.interactivity-btn {
    width:20px;
    height:20px;
    background-size: cover !important;
    position: absolute;
}

.interactivity-intra-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.interactivity-intra-btn > svg {
    width: 100%;
    height: 100%;
    padding: 17.25%;
    display: block;
    cursor: grab;
}

.interactivity-intra-btn > svg.svg-video-1 {
    padding: 7px;
}

.interactivity-area .resize-handle {
    width: 6px;
    height: 6px;
    background: transparent;
    position: absolute;
}

.interactivity-area.selected .resize-handle {
    background-color: #005fca;
    z-index: 100;
}

.interactivity-area.selected.empty .resize-handle {
    background: var(--interactivity-empty);
}

.interactivity-area.selected .resize-handle.n {
    cursor: ns-resize;
}

.interactivity-area.selected .resize-handle.s {
    cursor: ns-resize;
}

.interactivity-area.selected .resize-handle.e {
    cursor: ew-resize;
}

.interactivity-area.selected .resize-handle.w {
    cursor: ew-resize;
}

.interactivity-area.selected .resize-handle.ne {
    cursor: nwse-resize;
}

.interactivity-area.selected .resize-handle.nw {
    cursor: nesw-resize;
}

.interactivity-area.selected .resize-handle.se {
    cursor: nesw-resize;
}

.interactivity-area.selected .resize-handle.sw {
    cursor: nwse-resize;
}

.btn.btn-outline-secondary.interactivity-option {
    border-radius: 100px;
    width: 7.8vh;
    height: 7.8vh;
    border-color: #5ca9ff;
    border-width: 2px;
    position:relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.set-default-style {
    margin-bottom:2rem;
}

.btn.btn-outline-secondary.set-default-style:active,
.btn.btn-outline-secondary.set-default-style:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

@media (min-width:1200px) {
    .set-default-style {
        margin-top: 25%;
    }
}

.btn.btn-outline-secondary.interactivity-option:hover {
    border-color: transparent;
    background: var(--primary-color);
}

.btn.btn-outline-secondary.interactivity-option > svg {
    width: 58%;
    height: 58%;
    display: block;
    max-width: none;
    max-height: none;
}

.btn.btn-outline-secondary.interactivity-option > svg .symbol {
    fill: #5ca9ff;
}

.btn.btn-outline-secondary.interactivity-option:hover > svg .symbol {
    fill: #fff;
}

.btn.btn-outline-secondary.interactivity-option > svg.svg-video-1 .symbol {
    stroke: #5ca9ff;
  
    fill:none;
}

.btn.btn-outline-secondary.interactivity-option:hover > svg.svg-video-1 .symbol {
    stroke: #fff;
    fill:none;
}

.btn.btn-outline-secondary.interactivity-style {
    border-radius: 0.5rem;
    width:8.1rem;
    height:8.1rem;
    padding: 0;
    border-color: #ececec;
    border-width: 2px;
    margin: 0 0.5rem;
}

.btn.btn-outline-secondary.interactivity-style.active,
.btn.btn-outline-secondary.interactivity-style:hover,
.btn.btn-outline-secondary.interactivity-style:focus {
    border-color: transparent;
}

.btn.btn-outline-secondary.interactivity-style > svg {
    max-width: 4rem;
    width: 100%;
    max-height: 100%;
    height: auto;
    display: block;
    margin: auto;
}

.btn.btn-outline-secondary.interactivity-style > svg .symbol {
    fill: #d8d8d8;
}

.btn.btn-outline-secondary.interactivity-style.active > svg .symbol,
.btn.btn-outline-secondary.interactivity-style:hover > svg .symbol,
.btn.btn-outline-secondary.interactivity-style:focus > svg .symbol {
    fill: #4b4b4b;
}
/* dropzone styles */

.dropzone {
    display: inline-block;
    border: 0;
    padding: 0;
    min-height: auto;
    background: transparent;
}

.dropzone[disabled] {
    pointer-events: none;
}

.dropzone .dz-message {
    margin: 0;
}

.dropzone.with-bottom-margin {
    margin-bottom: 4rem;
}

.dz-error-message {
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
}

.upload-preview-item {
    position: relative;
    border: 2px solid #d2d2d2;
    border-radius: 0.5rem;
    display: inline-block;
    width: 153px;
    height: 122px;
}

.upload-preview-item img {
    display: none;
}

.upload-preview-item img[src] {
    display: block;
}

.dz-complete.upload-preview-item {
    background: rgba(0, 0, 0, 0.05);
}

.dz-complete.upload-preview-item > img {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    object-fit: cover;
    border-radius: 0.5rem;
}

#audio-dropzone .dz-complete.upload-preview-item > img {
    object-fit: contain;
}

.dropzone .upload-preview-item img {
    border: 0;
}

.upload-preview-medium {
    width:180px;
    height:180px;
}

.upload-preview-item .btn-remove {
    position: absolute;
    top: -0.68vw;
    right: -0.68vw;
    width: 1.25vw;
    height: 1.25vw;
    background: #ff0000;
    color: #ffffff;
    font-size: 0.94vw;
    line-height:100%;
    border-radius: 1.25vw;
    font-weight: var(--font-weight-bold);
    display: none;
    padding: 0;
}

.dropzone[disabled] .btn-remove, .dropzone.disabled .btn-remove {
    display: none !important;
}

.upload-preview-item img {
    top: 0;
    left: 0;
    transform: none;
    border-radius: 0;
    width:100%;
    height: 100%;
    padding: 3rem;
    object-fit: contain;
    position: static;
    max-width: 100%;
    max-height: 100%;
}

#video-preview video,
#audio-preview audio,
.upload-preview-item video,
.upload-preview-item audio {
    max-width: 100%;
    width: 42rem;
    height: 28.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: transparent;
}

.upload-preview-item .symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #d2d2d2;
    font-size: 3.4rem;
    font-weight: var(--font-weight-regular);
    z-index: 1;
    line-height: 4rem;
}

.upload-preview-item.dz-processing .symbol,
.upload-preview-item.dz-complete .symbol,
.upload-preview-item.dz-processing .help-text,
.upload-preview-item.dz-complete .help-text {
    opacity: 0;
}

.upload-preview-item .progress {
    position: absolute;
    bottom: 1rem;
    left: 2rem;
    right: 2rem;
    background-color: #d2d2d2;
    height: 0.5rem;
    border-radius: 0.5rem;
}

.upload-preview-item > .progress {
    opacity: 0;
}

.upload-preview-item .progress-bar {
    background-color: var(--primary-color);
    border-radius: 0.5rem;
}

.upload-preview-item.dz-success .btn-remove,
.upload-preview-item.dz-complete .btn-remove {
    display: block;
    z-index: 10;
}

.upload-preview-item-dotted.dz-processing .progress,
.upload-preview-item.dz-processing .progress {
    opacity: 1;
}

.upload-preview-item.dz-success .progress,
.upload-preview-item.dz-complete .progress {
    opacity: 0;
}

.dropzone .upload-preview-item.upload-preview-icon .progress {
    bottom: 50%;
    transform: translateY(-50%);
}

.dropzone .upload-preview-item.upload-preview-icon .progress .progress-bar {
    background-color: var(--primary-color);
}

.dropzone .upload-preview-item-dotted.upload-preview-icon {
    width: 160px;
    height: 160px;
}

.dropzone .dz-processing.upload-preview-item-dotted.upload-preview-icon {
    border-color:transparent;
}

.dropzone .upload-preview-item-dotted.upload-preview-icon .or-drop-here {
    font-size: 1.3rem;
    top: 65%;
}

.dropzone .upload-preview-item-dotted.upload-preview-icon .upload-file {
    font-size: 1.3rem;
    top: 44%;
}

.dropzone .upload-preview-item-dotted.upload-preview-icon .or-drop-here,
.dropzone .upload-preview-item-dotted.upload-preview-icon .upload-file {
    padding: 0.5rem 1.1rem;
}

.dropzone .upload-preview-item-dotted.upload-preview-icon > img,
.dropzone .dz-complete.upload-preview-item-dotted.upload-preview-icon > img {
    padding: 0;
    border-radius: 2rem;
}


.upload-preview-item.upload-preview-icon.dz-success .btn-remove,
.upload-preview-item.upload-preview-icon.dz-complete .btn-remove {
    top: 1rem;
    right: 1rem;
    width: 3.3rem;
    height: 3.3rem;
    font-size: 2.4rem;
}

.upload-preview-item.upload-preview-icon .btn-remove:hover {
    color: #fff;
    background: #ff0000;
}

#interactivity-audio-player {
    width: 521px;
    border-radius: 0.5rem;
}

/* loader overlay layer */
.loader-overlay {
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    z-index: 98;
    background: #ebf1f7;
}

.loader-overlay > div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.loader-overlay .lds-dual-ring {
    width: 100px !important;
    height: 100px !important;
}

.loader-overlay .lds-dual-ring div {
    width: 80px !important;
    height: 80px !important;
    top: 10px;
    left: 10px;
}

.modal-content .loader-overlay {
    padding: 20rem;
    position:static;
    background:#fff;
}

/* general designer */
.btn-designer-container {
    flex-shrink: 0;
    width: 100%;
    max-width:100%;
    justify-content: center;
}

@media (min-width: 768px) {
    .btn-designer-container {
        justify-content: normal;
    }
}

.designer-sidebar {
    max-width: 100%;
}

@media (min-width:767px) {
    .designer-sidebar {
        max-width: 12.5vw;
        width: 100%;
    }
}

.btn-designer-wrapper {
    margin-top: 0.78vw;
    width: 15%;
}
/* remove todo? */
@media (min-width: 768px) {
    .btn-designer-wrapper {
        width: 50%;
    }
}

.btn-designer-wrapper.interactivity {
    margin: 0 2vh;
    width: auto;
    min-width: none;
    max-width: none;
}

@media (max-width:767px) {
    .btn-designer-wrapper.interactivity {
        min-width: none;
        max-width: none;
    }
}

.btn-designer-wrapper.interactivity > .btn-designer {
    width: 6.8vh;
    height: 6.8vh;
}

.btn-designer-wrapper.interactivity > .btn-designer svg {
    width: 57%;
    max-width: 100%;
    height: 57%;
    max-height: 100%;
}

.btn-designer-wrapper.interactivity > .btn-designer > .wrapper svg {
    width: 100%;
    height: 100%;
}

.btn.btn-designer {
    background: transparent;
    border: 2px solid #cacaca;
    padding: 0;
    position: relative;
    margin: 0 auto;
    border-radius: 5px;
    width: 4.7vw;
    height: 4.7vw;
}

.btn.btn-designer.highlighted {
    z-index: 1010;
    pointer-events: none;
    border-color: var(--primary-color);
}

.btn.btn-designer.highlighted svg .symbol {
    fill: var(--primary-color);
}

.btn.btn-designer.highlighted svg .fill {
    fill: #6f6f6f;
}

.btn.btn-designer.interactivity-action {
    border-color: #dadada;
}

.btn.btn-designer:not(:disabled):not(.disabled):active {
    background: #fff;
}

.btn.btn-designer > svg {
    max-width: 1.88vw;
    max-height: 100%;
    width: 100%;
    height: auto;
    display:block;
    margin: auto;
    padding: 2px;
}

.btn.btn-designer > .wrapper {
    width: 57%;
    max-width: 100%;
    height: 57%;
    max-height: 100%;
    margin: auto;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    padding: 5px;
}

.btn.btn-designer.disabled > .wrapper {
    border-color: #d8d8d8;
}

.btn.btn-designer.background > .wrapper {
    background: var(--primary-color);
}

.btn.btn-designer.background.disabled > .wrapper {
    background: #d8d8d8;
}

.btn.btn-designer.background > .wrapper > svg .symbol {
    fill: #fff;
}

.btn.btn-designer.small > svg {
    max-width: 1.3vw;
}

.btn.btn-designer > svg.icon-show-state {
    max-width: 50px;
}

.btn.btn-designer > svg.icon-file-settings {
    width: 67%;
    height: 67%;
}

.btn.btn-designer > svg.svg-icon-description {
    max-width: 60px;
}

.btn.btn-designer > .color-value {
    display: none;
}

.btn.btn-designer:not(:disabled):not(.disabled):hover,
.btn.btn-designer:not(:disabled):not(.disabled).active,
.btn.btn-designer:not(:disabled):not(.disabled).active-colorpicker, 
.btn.btn-designer:not(:disabled):not(.disabled).active-sidebar {
    background: transparent;
}

.btn.btn-designer .symbol {
    fill: #cacaca;
}

.btn.btn-designer.interactivity-action .symbol {
    fill: #cacaca;
    stroke: none;
}

.btn.btn-designer .icon-file-settings .symbol {
    fill: transparent;
    stroke: #cacaca;
}

.btn.btn-designer .svg-icon-tap-area .symbol {
    stroke: #cacaca;
}

.btn.btn-designer .symbol.inactive {
    fill: #cacaca !important;
}

.interactivities-menu {
    padding: 3.8vh 0 2vh 0;
    width: 595px;
    margin: 0 15px;
}

.interactivities-menu .btn.btn-designer.on .symbol,
.btn.btn-designer:hover .symbol,
.btn.btn-designer.active .symbol,
.btn.btn-designer.active-colorpicker .symbol, 
.btn.btn-designer.active-sidebar .symbol  {
    fill: var(--primary-color);
    stroke: none;
}

.interactivities-menu .btn.btn-designer.on .icon-file-settings .symbol {
    stroke: var(--primary-color);
    fill: transparent;
}

.interactivities-menu .btn.btn-designer.on .svg-icon-tap-area .symbol {
    fill: var(--primary-color);
    stroke: var(--primary-color);
}

.interactivities-menu-secondary {
    padding: 3.8vh 0 2vh 0;
}

.interactivities-menu-secondary > .wrapper {
    max-width: 120px;
}

.interactivities-menu-secondary .btn-outline-action,
.interactivities-menu-secondary .has-tooltip {
    width: 100%;
    padding: calc(0.85vh - 1px) 0 !important;
    font-size: 1.15vh !important;
    max-width: 14vh;
}

.interactivities-menu-secondary .btn-outline-action + .btn-outline-action {
    margin-top: 1vh;
}

.interactivities-menu-secondary .btn-outline-action.has-tooltip.selected-tooltip {
    padding: calc(0.85vh - 2px) 0;
}

.btn.btn-designer ~ label {
    width: 100%;
    font-size: 0.7vw;
    margin-top: 0.16vw;
    text-align: center;
    padding:0 2px;
    color:var(--tertiary-color);
    line-height: 1.4;
}

.btn-designer-wrapper.interactivity .btn.btn-designer ~ label {
    font-size: 1.2vh;
    color: #d8d8d8;
    margin-top: 0.15vh;
}

.btn-designer-wrapper.interactivity .btn.btn-designer.on ~ label {
    color: var(--tertiary-color);
}

.icon-tiny {
    height: 40px;
    width: 40px;
    display: inline-block;
}

.icon-tiny {
    height: 35px;
    width: 35px;
}

.icon-tiny > svg {
    height:100%;
    width:100%;
    display: block;
}

.icon-tiny > svg .fill {
    fill: transparent;
}

.icon-tiny > svg .emblem {
    fill: #000;
}

.icon-tiny.inverse > svg .emblem {
    fill: #fff;
}

.btn.btn-designer > svg.icon-nav-bg-color {
    max-width: 1.98vw;
}

.btn.btn-designer > svg.icon-nav-logotype {
    max-width: 2.19vw;
}

.btn.btn-designer > svg.icon-main-upload-image {
    max-width: 1.82vw;
}

.btn.btn-designer > svg.icon-main-icon-bg-color {
    max-width: 1.98vw;
}

#designer-btn-icon-bg-color:hover > svg.icon-main-icon-bg-color .fill{
    fill: var(--primary-color)!important;
}

#designer-btn-icon-bg-color.active > svg.icon-main-icon-bg-color .fill
{
    fill: var(--primary-color)!important;
}

#designer-btn-icon-bg-color.active-colorpicker > svg.icon-main-icon-bg-color .fill,
#designer-btn-icon-bg-color.active-sidebar > svg.icon-main-icon-bg-color .fill
{
    fill: var(--primary-color)!important;
}

.btn.btn-designer > svg.icon-main-text-color {
    max-width: 1.67vw;
}

.btn.btn-designer > svg.icon-main-lines-color {
    max-width: 1.98vw;
}

.btn.btn-designer > svg.icon-main-banner {
    max-width: 3.03vw;
}

.btn.btn-designer > svg.icon-main-icon-color {
    max-width: 1.98vw;
}

.btn.btn-designer.disabled {
    opacity: 1;
    pointer-events: none;
}

.btn.btn-designer.disabled:hover {
    border-color: #dadada;
}

.btn.btn-designer.disabled.on .symbol,
.btn.btn-designer.disabled:hover .symbol,
.btn.btn-designer.disabled:focus .symbol {
    fill: #cacaca;
}

.btn.btn-designer.disabled.on .icon-file-settings .symbol,
.btn.btn-designer.disabled:hover .icon-file-settings .symbol,
.btn.btn-designer.disabled:focus .icon-file-settings .symbol {
    fill: transparent;
}


.btn.btn-designer.disabled.interactivity-action.bare-icon > svg.svg-link-1 .symbol,
.btn.btn-designer.disabled.interactivity-action.bare-icon > svg.svg-photo-1 .symbol,
.btn.btn-designer.disabled.interactivity-action.bare-icon > svg.svg-video-1 .symbol,
.btn.btn-designer.disabled.interactivity-action.bare-icon > svg.svg-sound-1 .symbol {
    fill: #cacaca;
}

.btn.btn-designer.interactivity-action.bare-icon > svg.svg-link-1, 
.btn.btn-designer.interactivity-action.bare-icon > svg.svg-photo-1,
.btn.btn-designer.interactivity-action.bare-icon > svg.svg-video-1,
.btn.btn-designer.interactivity-action.bare-icon > svg.svg-sound-1 {
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    background: none !important;
}

.btn.btn-designer.on.interactivity-action.bare-icon > svg.svg-link-1 .symbol, 
.btn.btn-designer.on.interactivity-action.bare-icon > svg.svg-photo-1 .symbol,
.btn.btn-designer.on.interactivity-action.bare-icon > svg.svg-video-1 .symbol,
.btn.btn-designer.on.interactivity-action.bare-icon > svg.svg-sound-1 .symbol {
    fill: var(--primary-color);
}

#designer-preview {
    position: relative;
}

.designer-active {
    outline: 2px solid var(--designer-outline-color) !important;
    z-index: 90;
}

#designer-preview svg {
    -webkit-backface-visibility: initial;
}

.designer-active.cover-line-name {
    outline-offset: -2px;
}

.designer-active.svg-icon-cart-transparent,
.designer-active.svg-icon-settings,
.designer-active.svg-icon-logout {
    outline-offset: -1px;
}

.designer-active.pricing > .line {
    display: none;
}

#tablet-nav-h.designer-active,
#tablet-nav-v.designer-active,
#tablet-v-secondary-nav.designer-active,
#phone-nav-v.designer-active,
#phone-v-line.designer-active {
    outline-offset: -2px;
}

.designer-navigation-icon-menu.designer-active {

}

#tablet-h-line.designer-active,
#tablet-v-line.designer-active,
#designer-phone-v .tabs.designer-active {
    outline-offset: -2px;
}

#designer-phone-v .banner img.designer-active {
    outline-offset: -2px;
}

.prevent-designer-highlight {
    outline: 0 !important;
}

/* custom color picker style */
#mycolorpicker {
    position: absolute;
    top: 102px;
    left: 0;
    right: auto;
    bottom: 0;
    width: 325px;
    padding: 0;
    z-index: 1005;
    background: #353535;
    transition: left 0.3s ease-out, right 0.3s ease-out, opacity .15s linear;
    opacity: 1;
}

@media(orientation: portrait) {
    #mycolorpicker {
        display: none;
    }
}

#mycolorpicker.right {
    left: auto;
    right: 0;
}

#mycolorpicker.left {
    left: 0;
    right: auto;
}

#mycolorpicker.hidden {
    left: -325px;
    right: auto;
    opacity: 0;
}

#mycolorpicker.hidden.right {
    left: auto;
    right: -325px;
}

#mycolorpicker.hidden.left {
    left: -325px;
    right: auto;
}

.colorpickle {
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #353535 !important;
}

.colorpickle .title {
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    font-size: 2rem;
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
}

.colorpickle .colorPickerWrapper {
    overflow: hidden;
}

.colorpickle .colorPickerWrapper,
.colorpickle .swatchHex {
    margin-top: 0px !important;
}

.colorpickle .sliderWrapper:not(.hWrapper):not(.aWrapper) {
    display: none !important;
}

.colorpickle .sliderWrapper.hWrapper {
    position: absolute !important;
    left: 273px;
    top: 95px;
    width: 405px;
    transform: rotate(90deg);
    transform-origin: 0;
    height: 20px;
}

.left > .colorpickle .sliderWrapper.hWrapper {
    left: 53px;
}

.colorpickle .hWrapper .sliderDiv .slider
{
    cursor: ns-resize;
}

/* colorpicker thumb styles Mozilla+WebKit+Ms */
.colorpickle .hWrapper .sliderDiv .slider::-moz-range-thumb
{
    border: none !important;
    width: 1px !important;
    background: #000 !important;
    border-radius: 0 !important;
    height: 20px !important;
    margin: 0;
    transform: none;
    box-sizing: border-box;
}

.colorpickle .hWrapper .sliderDiv .slider::-webkit-slider-thumb {
    border: none !important;
    width: 1px !important;
    background: #000 !important;
    border-radius: 0 !important;
    height: 20px !important;
    margin: 0;
    transform: none;
}

.colorpickle .hWrapper .sliderDiv .slider::-ms-thumb {
    border: none !important;
    width: 1px !important;
    background: #000 !important;
    border-radius: 0 !important;
    margin: 0;
    transform: none;
}

/* colorpicker track styles Mozilla+WebKit+Ms */
.colorpickle .hWrapper .sliderDiv .slider::-moz-range-track {
    height: 20px;
}

.colorpickle .hWrapper .sliderDiv .slider::-webkit-slider-runnable-track {
    height: 20px;
}

.colorpickle .hWrapper .sliderDiv .slider::-ms-track {
    height: 20px;
}

.colorpickle .sliderWrapper.hWrapper label,
.colorpickle .sliderWrapper.hWrapper .hInput {
    display: none;
}

.colorpickle .sliderWrapper.aWrapper{
    position: absolute !important;
    left: 50%;
    transform: translateX(-50%);
    top: 580px;
    width: 242px;
    z-index: 100;
}

.colorpickle .sliderWrapper.aWrapper label {
    color: #ffffff;
    line-height: 100%;
    position: absolute;
    top: -15px;
    left: 1px;
    padding: .1rem .5rem;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

.colorpickle .sliderWrapper.aWrapper .hInput {
    display: none;
}

.colorpickle .aWrapper .sliderBg {
    display:none;
}

.colorpickle .aWrapper .sliderDiv {
    left: 0;
    right: 0;
    top: 5px;
}

.colorpickle .aWrapper .sliderDiv .slider {
    margin: 0;
    background: #9bd0ff;
    height: 5px;
    border-radius: 1rem;
}

/* FF style */
.colorpickle .aWrapper .sliderDiv .slider::-moz-range-progress {
    background: var(--primary-color);
    height: 5px;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.colorpickle .aWrapper .sliderDiv .slider::-moz-range-thumb {
    border: 0 !important;
}

.colorpickle .aWrapper .sliderDiv .slider::-moz-range-track {
    background: #9bd0ff;
    height: 5px;
}

/* Chrome style */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .colorpickle .aWrapper .sliderDiv .slider {
        /* overflow: hidden; */
    }
    
    .colorpickle .aWrapper .sliderDiv .slider::-webkit-slider-thumb {
        /* box-shadow: -100vw 0 0 100vw var(--primary-color); */
        border: 0 !important;
    }

    .colorpickle .aWrapper .sliderDiv .slider::-webkit-runnable-track
    {
        background: #9bd0ff;
    }
}

/* Edge style */
.colorpickle .aWrapper .sliderDiv input.slider::-ms-fill-lower {
    background: #5ca9ff !important;
    height: 5px !important;
}

.colorpickle .aWrapper .sliderDiv .slider::-ms-thumb {
    border: 0 !important;
}

.colorpickle .aWrapper .sliderDiv .slider::-ms-fill-upper {
    background: #9bd0ff !important;
    height: 5px !important;
}

.colorpickle .aWrapper .aInput {
    display: none;
}

.colorpickle .sliderBg {
    border: 0;
    border-radius: 1rem;
}

.colorpickle .swatchHex {
    position: absolute !important;
    top: 80px;
    left: 0;
    width: 100%;
    
    /*left: 62pxsx;*/
    /*width: 222px;*/
}

#mycolorpicker .colorpickle .swatchHex {
  
    left: 42px;
    width: 242px;
}

.colorpickle .swatch {
    width: 110px !important;
    height: 180px !important;
    margin: 0 !important;
    border: 0 !important;
    display:none;
}

.colorpickle .hexValue {
    display: block;
    width: 90px !important;
    margin: 0 auto;
    border: 0 !important;
    border-bottom: 1px solid #ffffff !important;
    background: transparent !important;
    color: #ffffff !important;
    text-align: center;
    float: right;
}

.colorpickle .hWrapper .sliderBg {
    border-radius: 0;
    top: -1px;
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    border: 0px solid #e5e5e5;
}

.left .colorpickle .hWrapper .sliderBg {
    top: 0;
    bottom: -1px;
}

.colorpickle .hWrapper .sliderDiv {
    left: 0;
    right: 0;
    height: 20px;
}

.colorpickle .hWrapper .sliderDiv .slider {
    margin: 0;
    height: 20px;
    padding: 0 1px;
}

.colorpickle .colorPickerWrapper {
    position: absolute !important;
    left: 42px;
    top: 105px;
    width: 222px !important;
    height: 405px !important;
    border: 0px solid #e5e5e5 !important;
    border-right: none !important;
}

.left .colorpickle .colorPickerWrapper {
    left: 62px;
    border: 0px solid #e5e5e5 !important;
    border-left: none !important;
}

.colorpickle .buttonsWrapper {
    top: 660px !important;
    left: 0 !important;
    bottom: auto !important;
    right: 0 !important;
}

.colorpickle button.cancelBtn {
    position: absolute;
    top: -647px;
    left: 0;
    background: transparent url('../img/svg-icon-hide.svg') no-repeat center center;
    background-size: 100%;
    border: 0;
    border-radius: 0;
    width: 3.5rem;
    height: 3.5rem;
    transform: rotate(90deg);
    cursor: pointer;
}

#mycolorpicker.left .colorpickle button.cancelBtn {
    left: auto;
    right: 0;
    transform: rotate(-90deg);
}

.colorpickle button.cancelSecondaryBtn {
    position: absolute;
    top: -2.4rem;
    right: -2.4rem;
    border: 2px solid #696969;
    border-radius: 2.4rem;
    background: #fff;
    color: #696969;
    width: 2.4rem;
    height: 2.4rem;
    padding:0;
    margin:0;
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    z-index:10;
    line-height: 100%;
}

.colorpickle button.okBtn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    cursor: pointer;
    width: 82px;
    margin:0;
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    background: transparent;
    text-align: center;
    border-radius: 3rem;
    color: var(--primary-color);
    font-weight: var(--font-weight-black);
    border: 1px solid var(--primary-color);
    min-width: 130px;
    letter-spacing: 0.05rem;
    background-color: #fff;
    border: 0px;
}

.colorpickle button.okBtn:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: none;
}

.colorpickle .colorPickerIndicator {
    width: 20px !important;
    height: 20px !important;
    border-color: #fff !important;
}

.colorpickle .colorPickerIndicator::before,
.colorpickle .colorPickerIndicator::after {
    border: none !important;
}

#mycolorpicker-background,
#mycolorpicker-text-color,
#mycolorpicker-icon-emblem-color,
#mycolorpicker-icon-background-color {
    display: inline-block;
}

#mycolorpicker-background .colorpickle,
#mycolorpicker-text-color .colorpickle,
#mycolorpicker-icon-emblem-color .colorpickle,
#mycolorpicker-icon-background-color .colorpickle {
    width: 242px !important;
    height: 282px !important;
}

#mycolorpicker-background .colorpickle .swatchHex,
#mycolorpicker-text-color .colorpickle .swatchHex,
#mycolorpicker-icon-emblem-color .colorpickle .swatchHex,
#mycolorpicker-icon-background-color .colorpickle .swatchHex {
    top: 0;
}

#mycolorpicker-background .colorpickle .sliderWrapper.hWrapper,
#mycolorpicker-text-color .colorpickle .sliderWrapper.hWrapper,
#mycolorpicker-icon-emblem-color .colorpickle .sliderWrapper.hWrapper,
#mycolorpicker-icon-background-color .colorpickle .sliderWrapper.hWrapper {
    top: 15px;
    left: 11px;
    width: 222px;
}

#mycolorpicker-background .colorpickle .sliderWrapper.aWrapper,
#mycolorpicker-text-color .colorpickle .sliderWrapper.aWrapper,
#mycolorpicker-icon-emblem-color .colorpickle .sliderWrapper.aWrapper,
#mycolorpicker-icon-background-color .colorpickle .sliderWrapper.aWrapper {
    top: 275px;
}

#mycolorpicker-background .colorpickle .colorPickerWrapper,
#mycolorpicker-text-color .colorpickle .colorPickerWrapper,
#mycolorpicker-icon-emblem-color .colorpickle .colorPickerWrapper,
#mycolorpicker-icon-background-color .colorpickle .colorPickerWrapper {
    top: 25px;
    left: 20px;
    width: 222px !important;
    height: 222px !important;
    border: 0px solid #e5e5e5 !important;
    border-left: none !important;
}

input[type="range"] {
    cursor:pointer;
    overflow: visible;
}

input[type="range"]::-moz-range-thumb {
    width: 17px !important;
    height: 17px !important;
    background: var(--primary-color) !important;
    border: 2px solid #fff !important;
    border-radius: 50% !important;
    cursor: pointer;
}


input[type="range"]::-moz-range-progress {
    height:100%;
}

input[type="range"]::-webkit-slider-thumb {
    width: 17px !important;
    height: 17px !important;
    background: var(--primary-color) !important;
    border: 2px solid #fff !important;
    border-radius: 50% !important;
    transform:translateY(2px);
    cursor: pointer;
}

input[type=range]::-ms-thumb {
    width: 17px !important;
    height: 17px !important;
    background: var(--primary-color) !important;
    border: 2px solid #fff !important;
    border-radius: 50% !important;
    transform:translateY(65%);
    cursor: pointer;
}

/* DESIGNERS COMMON */
.cover-wrapper {
    position: relative;
}

.designer-container {
    cursor: pointer;
}

.designer-frame {
    display:block;
    width: 100%;
    height: 100%;
    z-index: -1;
    position:absolute;
    top:0;
    left:0;
}

.designer-frame.highlighted {
    outline: 2px solid var(--primary-color);
    z-index: 1010;
    pointer-events: none;
}

.subscription-line.hide,
.show-when-free.hide,
.show-when-paid.hide {
    display: none !important;
}

.show-when-free > svg,
.show-when-paid > svg {
    width: 100%;
    height: 100%;
}

.featured-double {
    position: absolute;
    top: 0;
    height: 0;
    left: 0;
    width: 0;
    z-index: 5;
}

/* PC DESIGNER */
#designer-pc {
    font-family: 'Lato', sans-serif !important;
    position: relative;
    max-width: 42vw;
    width: 100vw;
    max-height: 23.45vw;
    height: 100vh;
    margin: 4.75% 5% 9% 5%;
}

@media (max-width: 767px) {
    #designer-pc {
        max-width: 72vw;
        max-height: 40.3vw;
    }
}

#designer-pc .designer-container  {
    width: 100%;
    height: 100%;
    padding: 0 15px;
}

#designer-pc #designer-pc-image {
    position: absolute;
    top: -5.2vw;
    left: -6.95vw;
    width: 132.9%;
    z-index: -1;
}

@media (max-width: 767px) {
    #designer-pc #designer-pc-image {
        top: -9vw;
        left: -12vw;
        width: 133.3%;
    }
}

#designer-pc .icon {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;   
    display: block; 
    max-width: 100%;
    max-height: 100%;
}

#designer-pc #navigation {
    background-color: #fdfefeff;
    margin:0 -15px;
    outline-offset: -1px;
    padding: 9.5px 10px;
    height: 11.6%;
    flex-shrink: 0;
}

#designer-pc #navigation > * {
    flex: 1;
}

#designer-pc #navigation .navbar-brand {
    padding: 0;
    height: 100%;
}
#designer-pc #navigation .navbar-nav {
   

margin-bottom: 0.5vw;
}

#designer-pc #navigation #logo {
    height: 100%;
    max-width: 100%;
    display:block;
    margin:0 auto;
}

#designer-pc .navbar-expand .navbar-nav .nav-link {
    padding: 0 0.2vw;
}

#designer-pc #navigation .icon {
    width: 1.905vw;
    height: 1.905vw;
}

@media (max-width: 768px) {
    #designer-pc #navigation .icon {
        width: 1vw;
        height: 1vw;
    }
    
}

#designer-pc .featured-icon {
    display: block;
}

#designer-pc .featured-icon > svg {
    display: block;
}

#designer-pc-filler {
    height:0;
    width:100%;
    padding-top: 2%;
}

#designer-pc .cover-wrapper:not(.cover-wrapper-featured) .progress-wrapper > .progress {
    height: 5px;
}

/* PC DESIGNER navigation icons */
#designer-pc #navigation .svg-icon-cart-transparent:hover .emblem,
#designer-pc #navigation .svg-icon-login:hover .emblem,
#designer-pc #navigation .svg-icon-logout:hover .emblem,
#designer-pc #navigation .svg-icon-settings:hover .emblem
{
    display: none;
}

#designer-pc #navigation .svg-icon-cart-transparent:hover .fill,
#designer-pc #navigation .svg-icon-login:hover .fill,
#designer-pc #navigation .svg-icon-logout:hover .fill,
#designer-pc #navigation .svg-icon-settings:hover .fill {
    display: none;
}

#designer-pc #navigation .svg-icon-cart-transparent:hover .fill-full,
#designer-pc #navigation .svg-icon-login:hover .fill-full,
#designer-pc #navigation .svg-icon-logout:hover .fill-full,
#designer-pc #navigation .svg-icon-settings:hover .fill-full {
    display: block;
}

/* PC DESIGNER featured icons */
#designer-pc .svg-icon-share .emblem,
#designer-pc .svg-icon-favorite .emblem,
#designer-pc .svg-icon-info .emblem {
    fill:#6e6e6e;
}
#designer-pc .svg-icon-share:hover .emblem,
#designer-pc .svg-icon-favorite:hover .emblem,
#designer-pc .active .svg-icon-favorite .emblem,
#designer-pc .svg-icon-info:hover .emblem {
    fill:#c7c7c7;
}
#designer-pc .svg-icon-share .fill,
#designer-pc .svg-icon-favorite .fill,
#designer-pc .svg-icon-info .fill {
    fill:#6e6e6e;
    display:block;
}
#designer-pc .svg-icon-share:hover .fill,
#designer-pc .svg-icon-favorite:hover .fill,
#designer-pc .active .svg-icon-favorite .fill,
#designer-pc .svg-icon-info:hover .fill {
    display:none;
}
#designer-pc .svg-icon-share .fill-full,
#designer-pc .svg-icon-favorite .fill-full,
#designer-pc .svg-icon-info .fill-full {
    display:none;
}
#designer-pc .svg-icon-share:hover .fill-full,
#designer-pc .svg-icon-favorite:hover .fill-full,
#designer-pc .active .svg-icon-favorite .fill-full,
#designer-pc .svg-icon-info:hover .fill-full {
    fill:#6e6e6e;
    display:block;
}

/* PC DESIGNER general icons */
.svg-icon-cart .fill,
.svg-icon-read .fill {
    fill:#94c55e;
}
.svg-icon-cart:hover .fill,
.svg-icon-read:hover .fill {
}
.svg-icon-cart .emblem,
.svg-icon-read .emblem {
    fill:#FFFFFF;
}

#designer-pc #navigation .svg-icon-cart:hover .fill {
    filter: none;
}

/* PC DESIGNER other */

#designer-pc .btn:active:focus {
    box-shadow: none;
}

#designer-pc .cover {
    width: 75.5%;
    height: 100%;
}

#designer-pc .cover-featured {
    width: 96.7%;
    height: 100%;
}

#designer-pc .cover-line > .cover-line-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 300;
}

#designer-pc .cover-featured > .cover-line {
    max-width: 216px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

#designer-pc .cover-line > div:not(#featured-name) {
    font-size: 0.8vw;
    line-height: 1.7;
    margin: 0.3vw 0;
}

@media (max-width: 767px) {
    #designer-pc .cover-line > div:not(#featured-name) {
        margin-top: 0.15vw;
        font-size: 0.6vw;
    }
}

#designer-pc .cover-line-adjustable {
    position: relative;
}

#designer-pc #read-featured,
#designer-pc #read-featured-paid {
    position: relative;
}

#designer-pc #featured .icon#featured-share {
    --featured-share-bottom:2.35vw;
    position: absolute;
    bottom: var(--featured-share-bottom);
    right: 0;
    width: 1.91vw;
    max-width: 1.91vw;
    height: 1.91vw;
    max-height: 1.91vw;
}

@media (max-width: 767px) {
    #designer-pc #featured .icon#featured-share {
        --featured-share-bottom:3vw;
    }
}

#designer-pc #featured .icon#featured-info {
    --featured-info-bottom:2.35vw;
    position: absolute;
    bottom: var(--featured-info-bottom);
    left: 0;
    width: 1.91vw;
    max-width: 1.91vw;
    height: 1.91vw;
    max-height: 1.91vw;
}

@media (max-width: 767px) {
    #designer-pc #featured .icon#featured-info {
        --featured-info-bottom:3vw;
    }
}

#designer-pc #featured-name, .featured-spacer  {
    font-size: 1.00vw;
    /*font-weight: var(--font-weight-regular);*/
    width:100%;
}

#designer-pc #featured-name {
    line-height: 1.7;
    margin: 0.45vw 0;
}

@media (max-width: 767px) {
    #designer-pc #featured-name, .featured-spacer  {
        font-size: 1.05vw;
    }
}

#designer-pc .featured-spacer {
    height: 1.65vw;
    margin: 0 !important;
}

@media (max-width: 767px) {
    #designer-pc .featured-spacer {
        height: 4.65vw;
    }
}

#designer-pc #designer-pc-container {
    --designer-web-bg-color:none;
    color: #4e4d4d;
    background-size: cover;
    background-position: center;
    position: relative;
}


#designer-pc #designer-pc-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--designer-web-bg-color);
    pointer-events: none;
}

#designer-pc .show-when-featured-bought, 
#designer-pc .hide-when-featured-bought {
    display: none;
}

#designer-pc #featured {
    padding-top: 5.6%;
}

#designer-pc #featured .cover-line .icon-wrapper {
    width: 100%;
    margin: 0;
    padding: 0 30%;
}

#designer-pc #featured .icon-wrapper .icon > div {
    width: 100%;
    height: 100%;
}

#designer-pc #featured .cover-line .icon {
    width: 100%;
    height: 100%;
}

#designer-pc #featured .cover-line .icon::before {
    display: block;
    width: 25%;
}

#designer-pc #featured .cover-line .icon > svg {
    max-width:100%;
    max-height: 100%;
}

#designer-pc .icon > svg {
    width:100%;    
    height:100%;
}

#designer-pc #featured .icon {
    width: 1.25vw;
    max-width: 1.25vw;
    height: 1.25vw;
    max-height: 1.25vw;
}


@media (max-width: 767px) {
    #designer-pc #featured .icon {
        width: 1.36vw;
        max-width: 1.36vw;
        height: 1.36vw;
        max-height: 1.36vw;
    }
}

#designer-pc #featured .icon.featured-buy,
#designer-pc #featured .icon.current-subscription-url {
    width: 2.0vw;
    max-width: 2.0vw;
    height: 2.0vw;
    max-height: 2.0vw;
}

@media (max-width: 767px) {
    #designer-pc #featured .icon.featured-buy,
    #designer-pc #featured .icon.current-subscription-url {
        width: 2vw;
        max-width: 2vw;
        height: 2vw;
        max-height: 2vw;
    }
}

#designer-pc #featured .pricing {
    font-weight: 300;
    font-size: 0.8vw;
    width: 100%;
    color: #313131;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    display: flex;
}

#designer-pc #featured .pricing > * {
    line-height: 2.7;
}

@media (max-width: 767px) {
    #designer-pc #featured .pricing {
        font-size: 0.79vw;
    }
}

#designer-pc #featured .pricing > * {
    text-overflow: ellipsis;
}

#designer-pc #featured .pricing.subscription {
    width: 100%;
}

#designer-pc #featured .pricing > .price {
    font-weight: 400;
}

#designer-pc #featured .pricing > .line-top {
    position:absolute;
    top:0;
    left:0;
    right:0;
    height: 1px;
    background-color: #898787;
}

#designer-pc #featured .pricing > .line-bottom {
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    height: 1px;
    background-color: #898787;
}

#designer-pc #featured .dropdown-toggle {
    color: #313131;
    font-weight:300;
    background: none;
    background-size: 4px 5px;
    padding: 0;
    font-size: 0.8vw;
    border: 0;
    margin-top:0;
}

@media (max-width: 767px) {
    #designer-pc #featured .dropdown-toggle {
        font-size: 0.79vw;
    }
}

#designer-pc #featured .dropdown-toggle::after {
    display:none;
}

#designer-pc #featured .dropdown-toggle-icon {
    width: 4px;
    height: 5px;
    margin-bottom: 2px;
}

#designer-pc #featured .btn-primary {
        min-width: auto;
    border-color: transparent;
    background-color: #c6bbb7;
    font-size: 0.65vw;
    padding: 0.15vw 0.93vw;
    letter-spacing: 0.035vw;
    font-weight: var(--font-weight-light);
}

#designer-pc #featured .btn-primary:hover {
    color: #fff;
}

#designer-pc #featured .btn-primary:focus {
    box-shadow: none;
}

#designer-pc .cover > .cover-wrapper > img {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#designer-pc .cover-wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 137%;
    margin: 0 auto;
}

#designer-pc .cover-wrapper.cover-wrapper-featured {
    width: 100%;
    padding-bottom: 126%;
}

#designer-pc #banner .col {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 16.15%;
    margin: 0 auto;
}

#designer-pc #banner img {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#designer-pc .cover > .cover-wrapper > img,
#designer-pc #banner img.default {
    box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.05);
    /*filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.09));*/
}

#designer-pc [class^=col-],
#designer-pc .col {
    padding-left: 0.33vw;
    padding-right: 0.33vw;
}

#designer-pc .col-margin {
    padding-left: 0.33vw;
    padding-right: 0.33vw;
    flex: 0 0 5.6%;
    max-width: 5.6%;
    position: relative;
    width: 100%;
    min-height: 1px;
}

#designer-pc .filler-middle {
    padding-bottom: 1.55vw;
}

#designer-pc .filler {
    padding-bottom: 3vw;
}

/* MOBILE DESIGNER ICONS */

.designer-navigation-icon-menu {
    height: 1.25vw;
    width: auto;
    overflow: visible !important;
}

.designer-navigation-icon-bookmarks {
    height: 0.83vw;
}

/* TABLET DESIGNER */

#designer-preview.for-tablet .top-bar {
    width: 115%;
}


#designer-preview.for-tablet {
    width: 100%;
    max-width: 46vw;
    margin: 0 auto;
}

/* TABLET DESIGNER HORIZONTAL*/

#designer-tablet-h {
    font-family: 'Lato', sans-serif !important;
    position: relative;
    max-width: 36.46vw;
    width: 100vw;
    max-height: 27.4vw;
    height: 100vh;
    margin: 5.6% 0;
}

@media (max-width: 767px) {
    #designer-tablet-h {
        max-width: 72.92vw;
        max-height: 54.8vw;
    }
}

#designer-tablet-h .designer-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    position: absolute;
}

#designer-tablet-h #designer-tablet-h-image {
    position: absolute;
    top: -2.15vw;
    left: -4.04vw;
    width: 122.9%;
    z-index: -1;
}

@media (max-width: 767px) {
    #designer-tablet-h #designer-tablet-h-image {
        top: -4.3vw;
        left: -8.08vw;
    }
}

#designer-tablet-h .navigation {
    position: relative;
    width: 100%;
    height:13%;
    background-color: #adabab;
}

#designer-tablet-h .navigation .buttons-wrapper {
    width: 10%;
}

#designer-tablet-h .navigation .logo-wrapper {
    width: 52%;
    height: 96.6%;
    padding: 1.7% 0;
}

#designer-tablet-h .navigation .logo-wrapper.wider {
    width: 80%;
}

#designer-tablet-h .navigation .tabs-wrapper {
    width: 28%;
    display: flex;
}

#designer-tablet-h .logo
{
    width: auto;
    height: 100%;
}

#designer-tablet-h .buttons
{
    float:right;
    height:68px;
    width:42%;
}

#designer-tablet-h .navigation .icon
{
    display: inline-flex;
}

#designer-tablet-h .tabs
{
    float: right;
    width: 100%;
}

#designer-tablet-h .tab {
    color: #555555;
    font-size: 0.55vw;
    line-height: 18px;
    float: left;
    height: 18px;
    width: 50%;
    text-align: center;
    overflow:hidden;
    text-overflow: ellipsis;
    margin: 4px 0;
}

#designer-tablet-h .tab:last-of-type {
    border-left: 1px solid black;
}
#designer-tablet-v .tab:last-of-type {
    border-left: 1px solid black;
}

#designer-phone-v .tab:last-of-type {
    border-left: 1px solid black;
}


#designer-tablet-h .tab.active
{
    font-weight: var(--font-weight-semi-bold);
}

#designer-tablet-h .content
{
    height: 87%;
}

#designer-tablet-h .left-panel
{
    margin: 0 2.5%;
    width: 66.4%;
    height: 100%;
    float:left;
    position:relative;
}

#designer-tablet-h .separator {
    position:absolute;
    top:2%;
    bottom: 2%;
    left:2px;
    background-color: #e7e7e7;
    width:1px;
}

#designer-tablet-h .right-panel
{
    float:right;
    width: 28.6%;
    height: 100%;
    overflow:hidden;
    position:relative;
    padding: 2% 10px 10px 10px;
    display: flex;
    flex-direction: column;
}

#designer-tablet-h .right-panel .cover-wrapper
{
    margin: 0 auto;
    display: inline-block;
}

#designer-tablet-h .banner {
    width: 100%;
    height: 17.1%;
    margin: 2% auto 7% auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#designer-tablet-h .banner img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    position: absolute;
}

#designer-tablet-h .banner img.default {
    /*box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.05);*/
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.09));
}

#designer-tablet-h .current-issue-cover-wrapper
{
    float: left;
    width: 41.5%;
    height: 64.1%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#designer-tablet-h .current-issue-cover
{
    /*box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.05);*/
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.09));
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    position: absolute;
}

#designer-tablet-h .current-issue-cover[src$="loader.svg"] {
    box-shadow: none;
    filter: none;
}

#designer-tablet-h .current-issue-text
{
    font-weight: 400;
    line-height: 0.85vw;
    float: right;
    width: 56.4%;
    color: #a6a6a6;
    overflow: hidden;
    font-size: 0.750vw;
    padding: 0 2px;
}

#designer-tablet-h .current-issue-text span.issue-price
{
    font-size: 0.65vw;
}

#designer-tablet-h .current-issue-text .show-when-free{
    font-size: 0.75vw;
}


@media (max-width: 767px) { 
    #designer-tablet-h .current-issue-text
    {
        font-size: 1.05vw;
    }
}

#designer-tablet-h .current-issue-title
{
    font-weight: 400;
    font-family: 'Lato';
    margin-bottom: 0.4vw;
}

#designer-tablet-h .current-issue-title > span
{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    letter-spacing: 0.025rem;
    margin-bottom: 0.3vw;
}

#designer-tablet-h .current-issue-description
{
    font-family: 'Lato';
    font-weight: 300;
    font-size: 0.790vw;
    margin-bottom: 2px;
    overflow: hidden;
}

#designer-tablet-h .cover
{
    /*box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.05);*/
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.09));
    max-width: 9vw;
    max-height: 12vw;
}

#designer-tablet-h .cover[src$="loader.svg"] {
    box-shadow: none;
    filter: none;
}

@media (max-width: 767px) {
    #designer-tablet-h .cover
    {
        max-height: 16.16vw;
    }
}

#designer-tablet-h .cover:first-child {
    margin-top: 5px;
}

#designer-tablet-h .cover-title
{
    width: 100%;
    margin: 0 auto;
    max-width: 9vw;
    line-height: 1.6;
    margin: 0.15vw 0 0.875vw 0;
    padding: 0 3px;
    width: 100%;
    text-align: center;
    font-size: 0.62vw;
    color: #a8a8a8;
    font-family: 'Lato';
    font-weight: 400;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media (max-width: 767px) { 
    #designer-tablet-h .cover-title
    {
        font-size: 1.35vw;
    }
}

#designer-tablet-h .cover-title .show-when-free,
#designer-tablet-h .cover-title .show-when-paid > div {
    text-overflow: ellipsis;
    overflow: hidden;
}

#designer-tablet-h .cover-title .show-when-paid > div {
    float: left;
}

#designer-tablet-h .right-panel .progress-wrapper {
    width: 60%;
    left: 20%;
}

#designer-tablet-h .right-panel .progress-wrapper > .progress {
    height: 5px;
}

/* DESIGNER TABLET VERTICAL */
#designer-tablet-v {
    font-family: 'Lato', sans-serif !important;
    position: relative;
    max-width: 18.7vw;
    width:100vw;
    max-height: 24.88vw;
    height: 100vh;
    margin: 15.5% 8%;
}

@media (max-width: 767px) {
    #designer-tablet-v  {
        max-width: 37.4vw;
        max-height: 49.76vw;
        margin: 7.75% 4%;
    }
}

#designer-tablet-v .designer-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    position: absolute;
}

#designer-tablet-v #designer-tablet-v-image {
    position: absolute;
    top: 1.71vw;
    left: -5.9vw;
    width: 163.9%;
    transform: rotate(90deg);
}

@media (max-width: 767px) { 
    #designer-tablet-v #designer-tablet-v-image {
        top: 3.42vw;
        left: -11.8vw;
    }
}

#designer-tablet-v .navigation {
    position: relative;
    background-color: #adabab;
    height:10%;
}

#designer-tablet-v #tablet-v-secondary-nav.navigation {
    height: auto;
}

#designer-tablet-v .navigation .buttons-wrapper {
    width: 14%;
}

#designer-tablet-v .navigation .logo-wrapper {
    width: 72%;
    height: 97%;
    padding: 1.7% 0;
}

#designer-tablet-v .tabs-wrapper {
    padding-top: 0%;
    margin: 0%!important;
}

#designer-tablet-v .tabs-wrapper > .navigation.thinner {
    display: none;
    margin: 0;
    height: 0;
}

#designer-tablet-v #covers-thumbs {
    padding: 3% 0 0.85% 4.5%;
    overflow: hidden;
    align-items: start;
    justify-content: space-between;
}

#designer-tablet-v #covers-thumbs > div {
    padding-right: 4.7%;
}

#designer-tablet-v .logo
{
    height: 100%;
    width: auto;
}

#designer-tablet-v .buttons
{
    float:right;
    height:68px;
    width:42%;
}

#designer-tablet-v .navigation .icon
{
    width: 24px;
    min-width: 12px;
    height: 24px;
    display: inline-flex;
    align-items: center;
}

#designer-tablet-v .designer-navigation-icon-menu {
    /*height: 15px;*/
}

#designer-tablet-v .designer-navigation-icon-bookmarks {
    height: 11px;
}

#designer-tablet-v .tabs {
    display: block;
}

#designer-tablet-v .tab
{
    color: #555555;
    font-size: 0.45vw;
    line-height: 2.2;
    float: left;
    padding: 0 1.25vw;
    text-align: center;
    margin: 5px 0px;
}

@media (max-width: 767px) {
    #designer-tablet-v .tab {
        font-size: 0.72vw;
    }
}

#designer-tablet-v .tab.active
{
    font-weight: var(--font-weight-bold);
}

#designer-tablet-v .separator {
    background-color: #e7e7e7;
}

#designer-tablet-v .left-panel {
    padding: 0px 4.5%;
    height: 11.4%;
    margin-top: 5%;
}

#designer-tablet-v .middle-panel {
    padding: 0px 4.5%;
    height: 0;/* safari flex hack*/
}

#designer-tablet-v .banner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#designer-tablet-v .banner img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    position: absolute;
}

#designer-tablet-v .banner img.default {
    /*box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.05);*/
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.09));
}

#designer-tablet-v .current-issue-cover-wrapper
{
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#designer-tablet-v .current-issue-cover
{
    /*box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.05);*/
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.09));
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    position: absolute;
}

#designer-tablet-v .current-issue-cover,
#designer-tablet-v .cover
{
    /*box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.05);*/
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.09));
}


#designer-tablet-v .current-issue-cover[src$="loader.svg"],
#designer-tablet-v .cover[src$="loader.svg"] {
    box-shadow: none;
    filter: none;
}

#designer-tablet-v .current-issue-text
{
    margin-left: 2.95%;
    color: #a6a6a6;
    font-size: 0.6vw;
    line-height: 0.85vw;
    overflow: hidden;
    padding: 0 2px;
    position: relative;
}

#designer-tablet-v .current-issue-text span.issue-price
{
    font-size: 0.55vw;
}

#designer-tablet-v .current-issue-text .show-when-free{
    font-size: 0.55vw;
}

@media (max-width: 767px) { 
    #designer-tablet-v .current-issue-text
    {
        font-size: 0.84vw;
    }
}

#designer-tablet-v .current-issue-title
{
    font-weight: 400;
    font-family: 'Lato';
    margin-bottom: 0.1vw;
}

#designer-tablet-v .current-issue-title.padded
{
    padding-bottom: 0.58vw;
}

#designer-tablet-v .current-issue-title > span 
{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

#designer-tablet-v .current-issue-description
{
    font-family: 'Lato';
    font-weight: 300;
    font-size: 0.47vw;
    line-height: 0.65vw;
    overflow: hidden;
    margin-bottom: 2px;
}

#designer-tablet-v .right-panel .cover-wrapper
{
    display: inline-block;
}

#designer-tablet-v .cover
{
    height: 6.4vw;
    width: auto;
}

#designer-tablet-v .cover-title{
    text-align: center;
    margin: 0.26vw 0px;
    width: 100%;
    font-size: 0.39vw;
    color: #a8a8a8;
    font-family: 'Lato';
    font-weight: 400;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media (max-width: 767px) { 
    #designer-tablet-v .cover-title
    {
        font-size: 0.94vw;
    }
}

#designer-tablet-v .cover-title .show-when-free,
#designer-tablet-v .cover-title .show-when-paid > div {
    text-overflow: ellipsis;
    overflow: hidden;
}

#designer-tablet-v .cover-title .show-when-paid > div {
    float: left;
}

#designer-tablet-v .right-panel .progress-wrapper > .progress {
    height: 5px;
}

/* PHONE DESIGNER VERTICAL */
#designer-phone-v {
    font-family: 'Lato', sans-serif !important;
    position: relative;
    max-width: 13.02vw;
    width: 100vw;
    max-height: 23vw;
    height: 100vh;
    margin: 32% 7%;
}

@media (max-width: 767px) {
    #designer-phone-v {
        max-width: 26.04vw;
        max-height: 46vw;
        margin: 13% 3.5%;
    }
}

#designer-phone-v .designer-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    position: absolute;
}

#designer-phone-v #designer-phone-v-image {
    position: absolute;
    top: -4.45vw;
    left: -1.05vw;
    width: 116.6%;
    z-index: -1;
}

@media (max-width: 767px) {
    #designer-phone-v #designer-phone-v-image {
        top: -8.9vw;
        left: -2.1vw;
    }
}

#designer-phone-v .navigation {
    position: relative;
    background-color: #adabab;
    height: 7.5%;
}

#designer-phone-v .navigation .buttons-wrapper {
    width: 14%;
}

#designer-phone-v .navigation .logo-wrapper {
    width: 72%;
    height: 97%;
    padding: 1.5% 0;
}

#designer-phone-v .tabs-wrapper {
    align-items: center;
    display: flex;
}

#designer-phone-v .logo
{
    height: 100%;
    width: auto;
}

#designer-phone-v .buttons
{
    float:right;
    height:68px;
    width:42%;
}

#designer-phone-v .navigation .icon
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

#designer-phone-v .content {
    position:relative;
    padding-top: 5%;
}

#designer-phone-v .tabs-wrapper {
    position: absolute;
    bottom:0;
    left:0;
    right:0;
    border-bottom-left-radius: .1rem;
    border-bottom-right-radius: .1rem;
    z-index: 100;
}

#designer-phone-v .tabs {
    display: inline-block;
}

#designer-phone-v .tab {
    color: #555555;
    font-size: 0.65vw;
    text-transform: uppercase!important;
    line-height: 2.5;
    float: left;
    padding: 0 1.6vw;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0.26vw 0;
}

@media (max-width: 767px) {
    #designer-phone-v .tab {
        font-size: 0.72vw;
    }
}

#designer-phone-v .tab.active
{
    font-weight: var(--font-weight-semi-bold);
}

#designer-phone-v .separator {
    background-color: #e7e7e7;
}

#designer-phone-v .banner {
    width: 100%;
    margin: 0 auto;
}

#designer-phone-v .banner img {
    width: auto;
    height: auto;
    max-height: 70px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

#designer-phone-v .banner img.default {
    /*box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.05);*/
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.09));
}

#designer-phone-v .right-panel {
    display: flex;
    flex-direction: column;
}

#designer-phone-v .cover-wrapper {
    display: inline-block;
    margin: 0 auto;
    
    max-width: 70%;
}

#designer-phone-v .cover
{
    display: block;
    /*box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.05);*/
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.09));
    max-width: 100%;
    max-height: 19.5vw;
}

#designer-phone-v .cover[src$="loader.svg"] {
    box-shadow: none;
    filter: none;
}

@media (max-width: 767px) {
    #designer-phone-v .cover
    {
        max-height: 25vw;
    }
}

#designer-phone-v .cover:first-child {
    margin-top: 5px;
}

#designer-phone-v .cover-title
{
    width: 100%;
    margin: 5px 0 15px 0;
    margin-left: 3px;
    width: calc( 100% - 6px );
    
    font-size: 0.61vw;
    line-height: 1.5;
    color: #a8a8a8;
    font-family: 'Lato';
    font-weight: 400;
    outline-offset: -1px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media (max-width: 767px) {
    #designer-phone-v .cover-title
    {
        font-size: 1.04vw;
    }
}

#designer-phone-v .cover-title .show-when-free,
#designer-phone-v .cover-title .show-when-paid > div {
    text-overflow: ellipsis;
    overflow: hidden;
}

#designer-phone-v .cover-title .show-when-paid > div {
    float: left;
}

#designer-phone-v .progress-wrapper {
    left: 20%;
    width: 60%;
}


#designer-phone-v .spacer-small {
    height:1.15%;
    width:100%;
}

#designer-phone-v .spacer-big {
    height:2.85%;
    width:100%;
}

/* DESIGNER MOBILE COMMON */
.btn-clean {
    background: transparent;
    color: #000;
    border-radius: 50%;
    padding: 0;
    width: 2.34vw;
    height: 2.34vw;
    border: 1px solid #dadada;
    margin: 0 0.63vw;
}

.btn-clean > svg {
    padding: 11%;
    width: 100%;
    height: auto;
    display: block;
    margin: auto auto;
}

div.mobile-orientations > .btn-clean > svg {
    padding: 0;
    width: 57%;
    height: 57%;
    overflow: visible;
}

div.mobile-orientations > .btn-clean:first-child > svg {
    width: 57%;
    height: 57%;
    
}

.btn-clean > svg path {
    fill: #cacaca;
}

.btn-clean:focus > svg path,
.btn-clean:hover > svg path,
.btn-clean.active > svg path {
    fill: #5ca9ff;
}

.btn:not(:disabled):not(.disabled):focus.btn-clean,
.btn:not(:disabled):not(.disabled):hover.btn-clean,
.btn.btn-clean:not(:disabled):not(.disabled).active {
    background: transparent;
    color: #4b4b4b;
    border-color: var(--primary-color);
}

.btn-clean.highlighted {
    z-index: 1010;
    pointer-events: none;
    border-color: var(--primary-color);
    background: transparent;
}

.btn.btn-clean.highlighted:not(:disabled):not(.disabled).active {
    background: transparent;
}

.btn-clean.highlighted svg path {
    fill: var(--primary-color);
}

/* css card flip animation */
.card-wrapper {
    position:relative;
}

.card-face {
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 1s;
}

.card-face.card-front {
    transform: rotateY(0deg);
}

.card-face.card-back {
    transform: rotateY(180deg);
    position: absolute;
    top: 0;
    left:0;
    right:0;
    bottom:0;
    display: flex;
}

.flipped .card-face.card-front {
    transform: rotateY(-180deg);
}

.flipped .card-face.card-back{
    transform: rotateY(0deg);
}

/* other */
.top-bar {
    width: 100%;
}

.top-bar-height + h3 {
    margin-top: 0;
}

.top-bar-height {
    margin-bottom: 0.4vw;
}

.web-designer .top-bar-height {
    margin-top: 1.7vw;
}

.top-bar .btn-circular-outline-primary {
    font-size: 0.6vw;
    width: 4.2vw;
    height: 4.2vw;
    flex-shrink: 0;
}

.top-bar .btn-circular-outline-primary + .btn-circular-outline-primary {
    margin-left: 5.5%;
}

.top-bar .btn-circular-outline-primary + .publish-status {
    margin-left: 5.5%;
}

.bottom-bar {
    margin-top: 1rem;
}

.bottom-bar .btn {
    font-size: 1.6rem;
}

.btn-primary.btn-upgrade-small {
    min-width: auto;
    font-size: 0.6vw;
    font-weight: var(--font-weight-regular);
    padding: 0 1.1vw;
    letter-spacing: 0.05rem;
}

.btn-circular-outline-primary > .btn-upgrade-small {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    z-index: 10;
}

.btn-circular-outline-primary:hover > .btn-upgrade-small {
    display: block;
}

.btn-circular-outline-primary > .board {
    position: absolute;
    display: none;
    z-index: 5;
    top: -2rem;
    right: 0;
    bottom: 0;
    left: 0;
}

.btn-circular-outline-primary:hover > .board {
    display: block;
}

.btn-outline-action > .btn-upgrade-small {
    position: absolute;
    top: -1.5vw;
    right: 0px;
    background: transparent;
/*     left: 50%;*/
    /*transform: translateX(-1.125vw);*/ 
    /*25% width of button*/
    display: none;
    z-index: 10;
    
    min-width: 7.5vw;
    min-height: 1.8vw;
    /*line-height: 1.8vw;*/
}
.btn-outline-action:hover > .btn-upgrade-small {
    display: block;
}

.has-tooltip.selected-tooltip > #add-issue.btn {
    border-width: 2px;
    padding: calc(0.75rem - 1px) 0;
}

.btn-outline-action.has-tooltip.selected-tooltip {
    border-width: 2px;
    padding: calc(0.4vw - 1px) 0;
}

.btn:not(:disabled):not(.disabled).btn-circular-outline-primary.upgradeable.has-tooltip.selected-tooltip {
    border-width: 3px;
}

.is-tooltip-overlay {
    display: none;
}

.has-tooltip {
    position: relative;
}

.has-tooltip[data-has-tooltip-mode="only-when-disabled"] > button:disabled + .is-tooltip-overlay {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.is-tooltip {
    position: absolute;
    display: none;
    z-index: 2000;
    top: 0;
    left: 0;
    padding: 1vw;
    text-transform: none;
    text-align: left;
    color:#fff;
    font-size: 0.95vw;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.05rem;
    line-height: 1.25;
}

.is-tooltip::before {
    content: '';
    position: absolute;
    background: #292929;
    border-radius: 13px;
    border: 1px solid #292929;
    z-index: -1;
    top: 1.75vw;
    right: 0;
    bottom: 0;
    left: 0;
}

.is-tooltip.top::before {
    top: 0;
    bottom: 1.75vw;
}

.is-tooltip > .pointer {
    padding: 0;
}

.is-tooltip > .pointer.up > svg {
    transform: rotate(180deg);
}

.is-tooltip > .pointer > svg {
    margin: -1vw auto 0.25vw auto;
    width: 2.5vw;
    height: 2.5vw;
}

.is-tooltip.top > .pointer > svg {
    margin: 0.25vw auto -1vw auto;
}

.is-tooltip > .pointer > svg > path {
    fill: #404040;
}

.is-tooltip > .buttons {
    margin-top: 1vw;
    text-align: center;
}

.is-tooltip > .buttons > .btn-upgrade {
    font-size: 0.73vw;
    padding: 0.25vw 1vw;
    letter-spacing: 0.05rem;
    min-width: 5.5vw;
    font-weight: var(--font-weight-regular);
}

.is-tooltip > .buttons > .btn:not(:disabled):not(.disabled).btn-primary.btn-upgrade:hover {
    background: #fff;
    border-color: #fff;
    color: var(--primary-color);
}

.is-tooltip > p {
    text-align: center;
}

#issues-list, #issues-empty {
    margin-top: 2%;
}

#issues-empty p {
    padding: 2rem 0 5rem 0;
}

.progress-wrapper {
    position: absolute;
    display: block;
    top: 40%;
    left: 8%;
    width: 84%;
    z-index: 99;
}

#issues-list {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1300px) {
    #issues-list {
        max-width: 1300px;
    }
}

#issues-list h1 {
    color: #5e5e5e;
    margin-bottom: 0vw;
    font-weight: var(--font-weight-bold);
    font-size: 2.7vw;
    letter-spacing: 0.1vw;
}

@media (min-width: 1000px) {
    #issues-list h1 {
        margin-bottom: 0rem;
        font-size: 2.6rem;
        letter-spacing: 0.01rem;
    }
}


    #issues-list > .header {
        margin-bottom: 1.7rem;
        padding: 0.78vw 2.7vw;
    }
    
    
#issues-list > .body {
    background: #fff;
    padding: 0.78vw 2.7vw;
    width: 100%;
    /*box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px;*/
}



    

#issues-list > .body > div {
    border-top: 1px solid #dfdfdf;
    padding: 10px 0;
    position: relative;
}



@media (min-width: 1000px) {
    #issues-list > .header {
        margin-bottom: 1.7rem;
        padding: 0.78vw 2.7vw;
    }
}
@media (max-width: 1000px) {
    #issues-list > .header {
        margin-bottom: 1.7rem;
        padding: 0.78vw 2.7vw;
    }
    #issues-list > .body {
        padding: 0px;
    }
    #issues-list > .body > div {
        border-top: 1px solid #dfdfdf;
        padding: 5px 0;
    }
}



#issues-list > .body > div:last-child {
    border-bottom: 1px solid #dfdfdf;
}

#issues-list > .body > div > * {
    margin: 0;
}

#issues-list > .body .spacer {
    display: block;
    min-width: 1px;
    max-width: 25px;
    width: 100%;
}


@media (max-width: 991px) {
    #issues-list > .body .spacer {
        max-width: 15px;
    }
}

#issues-list .switch-light.switch-candy {
    display: flex;
    flex-shrink: 0;
}

#issues-list .switch-light.switch-candy a {
    height: calc(100% - 2px);
    margin: 1px;
    right: calc(50% - 2px);
}

#issues-list .switch-light input:checked ~ span a {
    right: 0;
}

#issues-list .switch-light.switch-candy > span {
    margin: 0;
    padding:0 ;
}

#issues-list .publish-switch {
    width: 5%;
    padding: 0 1px;
}

#issues-list .publish-switch.switch-light.switch-candy > span {
    background: #dfdfdf;
    min-height: 2.2vw;
    width: 3vw;
    margin: 0 auto;
}

@media (min-width: 1000px) {
    #issues-list .publish-switch.switch-light.switch-candy > span {
        min-height: 24px;
        width: 36px;
    }
}
/*@media (max-width: 500px) {
   #issues-list > .body > div {
        border-top: 1px solid #dfdfdf;
        padding: 5px 0;
    }
}*/

#issues-list .publish-switch.switch-light.switch-candy input:checked ~ span {
    background: var(--primary-color);
}

#issues-list .publish-switch.switch-candy a {
    background: #fff !important;
    width: 60%;
    right: calc(34% - 1px);
}

#issues-list .price-switch.switch-light.switch-candy > span {
    background: transparent;
    /*border: 1px solid #b0d0f9;*/
    border: 1px solid var(--disabled-color);
}

#issues-list .list-issue.active .price-switch.switch-light.switch-candy > span,
#issues-list .list-issue:hover .price-switch.switch-light.switch-candy > span {
    background: transparent;
    border: 1px solid #b0d0f9;
    /*border-color: #aaa;*/
}

#issues-list .switch-light input[disabled="disabled"] ~ span {
    cursor: not-allowed;
}

#issues-list .switch-light input[disabled="disabled"] ~ span a {
    background: #afafaf !important;
}

.switch-light.switch-candy.switch-decision input[disabled="disabled"]:checked ~ span span:first-child, 
.switch-light.switch-candy.switch-decision input[disabled="disabled"]:not(:checked) ~ span span:nth-child(2) {
    color: #afafaf !important;
}

#issues-list .list-image-wrapper {
    position: relative;
}

#issues-list .list-image-wrapper svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    border-radius: 50%;
    max-width: 32px;
    max-height: 32px;
    width: 32px !important;
    height: 32px !important;
        
    padding: 1px;
    z-index: 25;
    display:none !important;
}


@media (max-width: 991px) {
    #issues-list .list-image-wrapper svg {
        width: 50% !important;
        height: 50% !important;
    
    }
}

/*
#issues-list .list-issue.active .list-image-wrapper svg,
#issues-list .list-issue:hover .list-image-wrapper svg {
    display: block !important;
}*/

#issues-list .list-issue:not(.uploading) .list-image-wrapper:hover svg {
    display: block !important;
}

#issues-list .list-issue.active .list-image-wrapper svg path,
#issues-list .list-issue:hover .list-image-wrapper svg path {
    fill: #fff;
}


#issues-list .uploading .list-image-wrapper svg {
    display: none;
}

#issues-list .list-image-wrapper .waiting {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    display: none;
    z-index: 20;
}

#issues-list .uploading .list-image-wrapper .waiting {
    display: block;
}



#issues-list .price-switch.switch-light label, 
#issues-list .price-switch.switch-light > span {
    line-height: 2.5;
    min-height: auto;
}

#issues-list .price-switch.switch-light.switch-candy span span {
    padding: 0 1.25vw;
    font-size: 1.17vw;
    text-transform: none;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.075vw;
    line-height: 1.8;
}

#issues-list .price-switch.switch-light.switch-candy input:not(:checked) ~ span a {
    width: 52%;
    right: calc(48% - 2px);
}

#issues-list .price-switch.switch-light.switch-candy input:checked ~ span a {
    width: 48%;
}


@media (min-width: 1000px) {
    #issues-list .price-switch.switch-light.switch-candy span span {
        padding: 0 1.6rem;
        letter-spacing: 0.125rem;
    font-size: 14px;
    line-height: 30px;
    }
}
@media (min-width: 500px) and (max-width: 1000px) {
    
    #issues-list .price-switch.switch-light.switch-candy span span {
      font-size: 12px;
    line-height: 24px;
    }
}
/*@media (max-width: 500px) {
    #issues-list .price-switch.switch-light.switch-candy span span {
        font-size: 1.8vw;
    }
}*/


#issues-list .list-coupons-wrapper {
    display: none;
}

@media (min-width: 1000px) {
    #issues-list .list-coupons-wrapper {
        display: block;
    }

    #issues-list .dropdown-item.coupons-button {
        display: none !important;
    }
}

#issues-list .preview-link {
    display: block;
}

#issues-list .list-image-wrapper svg path {
    fill: #fff;
}

#issues-list img {
    box-shadow: 0 0 1px 1px #d8d8d8;
}

#issues-list .list-image-wrapper {
    position: relative;
}

#issues-list img {
    width: auto;
    max-width:100%;
    height: auto;
    max-height: 100%;
}

#issues-list .list-image-wrapper,
#issues-list .list-image-wrapper > .preview-link {
    width: 8vw;
    height: 8vw;
}

#issues-list .list-image-wrapper > .preview-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1000px) {
    #issues-list .list-image-wrapper,
    #issues-list .list-image-wrapper >.preview-link {
        width: 120px;
        height: 121px;
    }
}
/*@media (max-width: 500px) {
    #issues-list .list-image-wrapper,
    #issues-list .list-image-wrapper >.preview-link {
        width: 13vw;
        height: 16vw;
    }
}*/

#issues-list .list-image-wrapper img[src=""] {
    display: none;
}
#issues-list .list-image-wrapper img[src=""] + .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #d8d8d8;
    display: block !important;
    z-index: 10;
    pointer-events: none;
}

#issues-list .title-text > span {
    cursor: pointer;
    width: 16.0vw;
    display: flex;
    align-items: center;
}

@media (min-width: 1000px) {
    #issues-list .title-text > span {
        width: 145px;
    }
}
/*@media (max-width: 500px) {
    #issues-list .title-text > span {
        width: 20vw;
    }
}*/

#issues-list .title-text > span > span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

#issues-list .title-text > span > svg {
    width: 1.41vw;
    height: 1.41vw;
    margin: 0 0 0 0.03vw;
    flex-shrink: 0;
}

#issues-list .title {
    /*color: var(--primary-color);*/
    color: #666;
    display: inline-block;
    font-size: 1.41vw;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.098vw;
}

#issues-list .list-issue.active.link-opened .title {
    color: #666666;
}

#issues-list .list-issue.active .title,
#issues-list .list-issue.active.link-opened .title:hover,
#issues-list .list-issue:hover .title {
    color: var(--primary-color);
}

#issues-list .list-issue.active.link-opened .title > svg path, {
    fill: #666666;
}

#issues-list .list-issue.active .title > svg path,
#issues-list .list-issue.active.link-opened .title:hover > svg path,
#issues-list .list-issue:hover .title > svg path {
    fill: var(--primary-color);
}

#issues-list .list-issue:not(:hover):not(.active) .title > svg {
    display: none;
}


#issues-list .title:hover {
    /*color: var(--primary-color);*/
   text-decoration: underline;
   
}


#issues-list .pages-count {
    color: #8f8f8f;
    display: inline-block;
    font-size: 1.17vw;
    letter-spacing: 0.038vw;
    margin-top: 0.26vw;
    margin: .5rem 0 1rem 0;
}

#issues-list .btn-outline-action {
    padding: 0 0.95vw;
    width: auto;
    font-size: 1.17vw;
    text-transform: none;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.075vw;
    line-height: 1.8;
    color: var(--disabled-color);
    border-color: var(--disabled-color);
}

#issues-list .btn-link {
    width: auto;
    font-size: 1.4vw;
    text-transform: none;
    font-weight: var(--font-weight-bold);
    letter-spacing: .1vw;
    line-height: 1.8;
    color: var(--disabled-color);
    border-color: var(--disabled-color);
    display: flex;
    padding: 0;
    text-decoration: none;
}


@media (min-width: 1000px) {
    #issues-list .btn-link {
        font-size: 14px;
        letter-spacing: .1rem;
        line-height: 30px;
    }
}

#issues-list .btn-link:hover,
#issues-list .btn-link:focus {
    background: none;
    text-decoration: none;
}

#issues-list .list-issue.active .btn-link,
#issues-list .list-issue:hover .btn-link {
    color: #666;//var(--primary-color);
}




#issues-list .body .btn-link > svg {
    width: 1.2vw;
    height: 1.2vw;
    margin: auto .5vw auto 0;
    transform: rotate(0deg);
}

@media (min-width: 500px) and (max-width: 1000px) {
    #issues-list .body .btn-link > svg {
        width: 9px;
        height: 9px;
        margin-right: 2px;
    }
}

@media (min-width: 1000px) {
    #issues-list .body .btn-link > svg {
        width: 12px;
        height: 12px;
        margin-right: 5px;
        stroke-width: 3px;
        stroke:  var(--primary-color);;
    }
}

#issues-list .body .btn-link.collapsed > svg {
    transform: rotate(-90deg);
}

#issues-list .btn-link svg > * {
    fill: var(--disabled-color);
}

#issues-list .list-issue.active .btn-link svg > *,
#issues-list .list-issue:hover .btn-link svg > * {
    fill: var(--primary-color);
}

#issues-list .list-issue .btn-link-alt {
    background: var(--primary-color);
    padding: .6vw .2vw .5vw .5vw;
    margin: auto 0;
    border-radius: 5px;
}

@media (min-width: 500px) and (max-width: 1000px) {
    #issues-list .list-issue .btn-link-alt {
        padding: .2rem 0rem .2rem .2rem;
    }
}

@media (min-width: 1000px) {
    #issues-list .list-issue .btn-link-alt {
        padding: .5rem .2rem .5rem .5rem;
    }
}

#issues-list .list-issue .btn-link-alt svg {
    margin: auto 0;
}

#issues-list .list-issue .btn-link-alt > svg {
    margin-left: .5vw;
}


@media (min-width: 1000px) {
    #issues-list .list-issue .btn-link-alt > svg {
        margin-left: 5px;
        margin-right: 5px;
    }
}

#issues-list .list-issue .btn-link-alt svg > *,
#issues-list .list-issue .btn-link-alt:hover svg > *,
#issues-list .list-issue.active .btn-link-alt svg > *,
#issues-list .list-issue:hover .btn-link-alt svg > * {
    fill: #fff;
    stroke: #fff;
}

#issues-list .list-issue .btn-link-alt.collapsed {
    background: none;
}

#issues-list .list-issue .btn-link-alt.collapsed svg > * {
    fill: #7e7e7e;
    stroke: #7e7e7e;
}

#issues-list .list-issue .btn-link-alt.collapsed:disabled svg > * {
    fill: #ccc;
    stroke: #ccc;
}

.links-table button.btn-link:hover {
    color: var(--primary-color) !important;
    background: var(--primary-color) !important;
}

#issues-list .links-table button.btn-link:hover svg > * {
    fill: #ffffff;
    stroke: #ffffff;
}





#issues-list .btn-link.collapsed + .new-link-btn {
    display:none;
}

#issues-list .btn-link + .new-link-btn {
    display:flex;
}

.new-link-btn.has-tooltip {
    position: absolute;
    left: 90.5%;
}

@media (min-width: 1000px) {
    #issues-list .title {
        font-size: 17px;
        letter-spacing: 0.125rem;
    }
    #issues-list .title-text > span > svg {
        width: 21px;
        height: 21px;
        margin: 0 0 0 5px;
    }
    #issues-list .pages-count {
        font-size: 15px;
        letter-spacing: 0.05rem;
        margin: .5rem 0 1.75rem 0;
    }
    #issues-list .btn-outline-action {
        padding: 0 1.2rem;
        font-size: 14px;
        line-height: 30px;
        letter-spacing: 0.1rem;
    }
    
    
}
@media (min-width: 500px) and (max-width: 1000px) {
    #issues-list .title {
        font-size: 16px;
        letter-spacing: 0.125rem;
    }
    #issues-list .title-text > span > svg {
        width: 20px;
        height: 20px;
        margin: 0 0 0 4px;
    }
    #issues-list .pages-count {
        font-size: 14px;
        letter-spacing: 0.03rem;
        margin-top: 0.5rem;
    }
    #issues-list .btn-outline-action {
         font-size: 12px;
        line-height: 24px;
    }
}

/*@media (max-width: 500px) {
    #issues-list .title {
        font-size: 2.3vw;
        letter-spacing: 0.125rem;
    }
    
    #issues-list .pages-count {
        font-size: 14px;
        letter-spacing: 0.03rem;
        margin-top: 0.5rem;
    }
    #issues-list .btn-outline-action {
         font-size: 1.8vw;
    }
    #issues-list .pages-count {
        font-size: 1.55vw;
        letter-spacing: 0.038vw;
        margin-top: 0.26vw;
    }
}*/


#issues-list .list-issue.active .btn-outline-action,
#issues-list .list-issue:hover .btn-outline-action {
    border-color: #b0d0f9;
    color: var(--primary-color);
}

#issues-list .list-issue.active .btn-outline-action:hover,
#issues-list .list-issue:hover .btn-outline-action:hover{
    border-color: #b0d0f9;
    color: white;
}

#issues-list .list-issue.active .links-table .btn-outline-action,
#issues-list .list-issue:hover .links-table .btn-outline-action {
    color: var(--disabled-color);
}

#issues-list .list-issue.active.link-opened .links-table .btn-outline-action {
    color: var(--primary-color);
}

#issues-list .links-table .row.line.link-opened .btn-outline-action {
    color: var(--primary-color);
}

#issues-list .list-issue.active .links-table .btn-outline-action:hover,
#issues-list .list-issue:hover .links-table .btn-outline-action:hover {
    color: #fff;
}

#issues-list .switch-light a {
    transition: right 0.2s ease-out;
}

#issues-list .list-issue .price-switch a,
#issues-list .list-issue .price-switch input:checked ~ span a {
    background: var(--disabled-color) !important;
}

#issues-list .list-issue.active .price-switch input:not(:checked) ~ span a, 
#issues-list .list-issue.active .price-switch input:checked ~ span a,
#issues-list .list-issue:hover .price-switch input:not(:checked) ~ span a, 
#issues-list .list-issue:hover .price-switch input:checked ~ span a {
    background: var(--primary-color) !important;
}

@media (min-width: 992px) {
    .show-when-mobile{
        display: none !important;
    }
}

@media (max-width: 991px) {
    .show-when-desktop{
        display: none !important;
    }
    .show-when-mobile{
        /*display: block !important;*/
    }
    
    
}

@media (min-width: 801px) AND (max-width: 991px) {
    @media (orientation: landscape) {
        body.flipbook > .container-fluid {
            padding-left: 25px;
            padding-right: 25px;

        }
    }
}

@media (max-width: 991px) {
    .btn-outline-action.interactivities-link {
        opacity: 0.5;
        
    }
}

#issues-list .list-issue.link-opened .list-issue-main-row .btn-outline-action:not(:hover) {
    border-color: #a0a0a0;
    color: #a0a0a0;
}

#issues-list button:disabled {
    border-color: #c5c5c5 !important;
    color: #c5c5c5 !important;
}

#issues-list .header svg {
    display: inline-block;
    width: 100%;
    max-width: 2.5vw;
    height: 100%;
    max-height: 2.5vw;
    margin-right: 0.5vw;
}

@media (min-width: 1000px) {
    #issues-list .header svg {
        max-width: 24px;
        max-height: 24px;
        margin-right: 5px;
    }
}

#issues-list .header svg path {
    fill: #fff;
}

#issues-list .body svg {
    display: block;
    max-width: auto;
    width: 1.49vw;
    max-height: auto;
    height: 1.49vw;
    margin-right: 0.39vw;
}

@media (min-width: 1000px) {
    #issues-list .body svg {
        width: 16px;
        height: 16px;
        margin-right: 5px;
    }
}

#issues-list button svg path,
#issues-list a svg path {
    
    fill: var(--disabled-color);
    /*fill: var(--primary-color);*/
}

#issues-list .list-issue.active button svg path,
#issues-list .list-issue.active a svg path,
#issues-list .list-issue:hover button svg path,
#issues-list .list-issue:hover a svg path {
    fill: var(--primary-color);
}

#issues-list .list-issue.active button:hover svg path,
#issues-list .list-issue.active a:hover svg path,
#issues-list .list-issue:hover button:hover svg path,
#issues-list .list-issue:hover a:hover svg path {
    fill: white;
}

#issues-list .list-issue.link-opened .list-issue-main-row svg path {
    fill: #c5c5c5;
}

#issues-list button:disabled svg path,
#issues-list a:disabled svg path {
    fill: #c5c5c5 !important;
}

#issues-list button:hover svg path,
#issues-list a:hover svg path {
    fill: #fff;
}

#issues-list button:disabled:hover svg path,
#issues-list a:disabled:hover svg path {
    fill: #c5c5c5;
}

#issues-list .list-issue.active, 
#issues-list .list-issue:hover {
    background: #ebebeb;
    cursor: grab;
}

#issues-list .actions {
    color: #6f6f6f;
    width: 9.07%;
    padding: 0 1px;
}

#issues-list .links-table .actions {
    color: #6f6f6f;
    width: auto;
    padding: 0;
}


@media (max-width: 991px) {
    
    #issues-list .actions {
        color: #6f6f6f;
        width: 7.07%;
        padding: 0 1px;
    }
}

#issues-list .actions .dropdown-toggle {
    margin: 0 auto;
    border: 0px;
}

#issues-list .actions .dropdown-menu {
    width: 210px;
    font-size: 1.4rem;
    padding: 0;
    background: #f3f3f3;
    border-color: #cfcfcf;
    box-shadow: 0 0 1px #d8d8d8;
}

#issues-list .actions .dropdown-menu svg{
    width: 20px;
    height: 20px;
}
/*#issues-list .actions .dropdown-menu .dropdown-item svg{
    width: 20px;
    height: 20px;
}*/



#issues-list .actions .dropdown-menu[x-placement="top-end"] {
    margin-bottom: 10px;
}

#issues-list .actions .dropdown-menu[x-placement="bottom-end"] {
    margin-top: 10px;
}

#issues-list .actions .dropdown-menu .dropdown-item,
#issues-list .actions .dropdown-menu .dropdown-item-container {
    padding: 1.2rem 1.6rem 1.2rem 1.6rem;
    color: #6f6f6f;
}

#issues-list .list-issue.active .actions .dropdown-menu .dropdown-item-container > div,
#issues-list .list-issue:hover .actions .dropdown-menu .dropdown-item-container > div {
    cursor: default;
}

#issues-list .actions .dropdown-menu .dropdown-item-container > label {
    cursor: pointer;
}

#issues-list .actions .dropdown-menu .dropdown-item-container:hover {
    background-color: #f8f9fa;
    cursor: arrow;
}

#issues-list .actions .dropdown-menu .dropdown-item {
    cursor: pointer;
}

#issues-list .actions .dropdown-menu .dropdown-item:active {
    background: #f8f9fa;
    color: #6f6f6f;
}

#issues-list .actions svg {
    margin: 0 12px 0 0;
}

#issues-list .actions svg path,
#issues-list .actions .dropdown-item:hover:not(:disabled) svg path {
    fill: var(--primary-color) !important;
}

#issues-list .list-issue .hide-while-uploaded {
    display: none !important;
}

#issues-list .list-issue.uploading .hide-while-uploaded {
    display: block !important;
}

#issues-list .list-issue.uploading .hide-while-uploading {
    display: none !important;
}

#issues-list .list-issue.uploading .publish-switch.hide-while-uploading {
    display: block !important;
    visibility: hidden !important;
}

#issues-list .progress-wrapper {
    position: relative;
    top: 0;
    left:0;
    width: 100%;
}

@media(min-width: 1000px) {
    #issues-list .progress-wrapper {
        min-width: 85.5%;
    }
}

#issues-list .progress {
    margin: 0 auto;
    width: 75%;
}

#issues-list .progress-cancel {
    top: 50%;
    left: auto;
    right: 0;
    transform: translateY(-50%);
    max-width: none;
    width: 7.4%;
    cursor: pointer;
    padding: 0 1px;
}

#issues-list .progress-cancel svg {
    max-width: none;
    width: 2.52vw;
    max-height: none;
    height: 2.52vw;
    margin: 0 auto;
}

@media (min-width: 1000px) {
    #issues-list .progress-cancel svg {
        width: 29px;
        height: 29px;
    }
}

#issues-list .progress-cancel svg path {
    fill: #f11f2e;
}

#issues-list .progress-cancel:hover {
    background: transparent;
}

#issues-list .progress-proc-name,
#issues-list .progress-proc {
    color: var(--primary-color);
    font-size: 1.88vw;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.13vw;
    text-transform: none;
    height: auto;
    margin: 0 auto;
    width: 75%;
    float: none;
}

@media (min-width: 1000px) {
    #issues-list .progress-proc-name,
    #issues-list .progress-proc {
        font-size: 1.8rem;
        letter-spacing: 0.125rem;
    }
}

#issues-list .progress-proc-name {
    margin-bottom: 10px;
}

#issues-list .progress-proc {
    margin-top: 10px;
}

.dropdown-toggle.no-arrow::after {
    display: none;
}

/* cancel button */
.progress-wrapper > .progress-cancel {
    display: block;
    padding: 0;
    position: absolute;
    top: -35%;
    left: 50%;
    box-shadow: none;
    filter: none;
    max-width: 1.58vw;
    width: 100%;
    height: auto;
    transform: translateX(-50%);
    pointer-events: all;
    transition: opacity 0.2s ease-in-out;
    cursor: pointer;
}

.progress-wrapper > .progress-cancel.disabled {
    pointer-events: none;
    opacity: 0.5;
}

#create-issue .progress-wrapper > .progress-cancel {
    top: -80%;
    max-width: 2.5vw;
}

.progress-wrapper > .progress-cancel > svg.svg-icon-cancel {
    width: 100%;
    height: 100%;
}

.progress-wrapper > .progress-cancel:hover {
    background: #5ca9ff;
    border-radius: 50%;
}

#create-issue .progress-wrapper > .progress-cancel:hover > svg.svg-icon-cancel > .symbol,
.progress-wrapper > .progress-cancel:hover > svg.svg-icon-cancel > .symbol {
    fill: #fff;
}

#create-issue .progress-wrapper {
    top: 42%;
    left: 0;
    width: 100%;
}

.progress-proc {
    width: 100%;
    text-align: center;
    font-weight: 300;
    font-size: 0.52vw;
    height: 0.52vw;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.progress-proc.hidden {
    visibility: hidden;
}

#create-issue .progress-wrapper > .progress-proc {
    font-size: 1.75rem;
    height: 1.75rem;
}

.progress-proc-name {
    float:left;
    margin-top: 10px;
    width: 100%;
    text-align: center;
    font-weight: 300;  
    font-size: 0.75vw;
    height: 0.75vw;
    line-height: 1;
    text-transform: uppercase;
    color: var(--primary-color);
}

.simplebar-content .progress-proc-name {
    font-size: 0.95vw;
}

.cover-featured  .progress-proc-name {
    font-size: 1.15vw;
}


#designer-tablet-v-container .cover-wrapper-featured .progress-proc-name {
    font-size: 0.85vw !important;
    height: 0.85vw !important;
}

#designer-tablet-v-container .cover-wrapper .progress-proc-name {
    font-size: 0.6vw;
    height: 0.6vw;
}

.current-issue-cover-wrapper .progress-proc-name {
    font-size: 1.15vw;
    height: 1.15vw;
}

#create-issue .progress-wrapper > .progress-proc-name {
    font-size: 2.5rem;
    height: 2.5rem;
}
.progress-wrapper .progress {
    background-color: #e9ecef;
    border-radius: 0.5rem;
}

.progress-wrapper .progress-bar {
    height: 100%;
    background-color: var(--primary-color);
}

.badge-platform {
    color: #d9d9d9;
    font-size: 1rem;
    padding: 1.2rem 0.5rem;
    border: 1px solid #d2d2d2;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-left: .4rem;
    background: #fff;
    letter-spacing: 0.1rem;
    line-height: 1.8rem;
}

.badge-platform:first-child {
    margin-left: 0;
}

.badge-platform.active {
    color: var(--tertiary-color);
}

.badge-platform > svg {
    max-height: 2rem;
    height:100%;
    max-width: 2rem;
    min-width: 1rem;
    width:100%;
    margin-right: 0.6rem;
}
.badge-platform > svg .fill {
    fill: #d9d9d9;
}

.badge-platform.active > svg .fill{
    fill: var(--tertiary-color);
}

/* custom scrollbars */
.scrollable-column {
    position: relative;
    height: 100%;
}

.scrollable-column-content {
    position: absolute;
    height:100%;
    top:0;
    left:0;
    right:0;
    bottom:0;
}

.scrollable-column-content .row {
    margin:0;
}

@media (min-width: 1200px) {
    .scrollable-column-xl-content {
        position: absolute;
        height:100%;
        top:0;
        left:0;
        right:0;
        bottom:0;
    }

    .scrollable-column-xl-content .row {
        margin:0;
    }
}

.simplebar-scrollbar {
    right:0;
    width: 100%;
}

.simplebar-scrollbar::before {
    background: var(--secondary-color);
    border-radius: 5px;
}

.simplebar-scrollbar.simplebar-visible {
    visibility: inherit !important;
    z-index:1;
}

.simplebar-track .simplebar-scrollbar.simplebar-visible::before {
    opacity: 1;
}

.simplebar-track.simplebar-vertical::after {
    z-index:0;
    content: '';
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    border: 2px solid #ececec;
    border-radius:5px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar::before {
    top: 0;
    bottom: 0;
}

.simplebar-track:hover .simplebar-scrollbar::before, .simplebar-track .simplebar-scrollbar.visible::before {
    opacity: 1;
}

.simplebar-track.simplebar-horizontal {
    display: none;
}
/* end custom scrollbas*/

label.small {
    font-size: 14px;
    
    font-weight: var(--font-weight-bold);
    margin: 0.4vh 0 1.8vh 0;
}

.highlightable {
    font-weight: var(--font-weight-black);
    text-transform: uppercase;
    font-size: 1.5vh;
    padding: 1.2vh 1.9vh;
    border-radius: 50px;
    margin-top: -1.95vh;
    margin-bottom: 1.2vh;
    color: var(--primary-color);
    line-height: 1.9;
}

.highlightable.on {
    background: var(--primary-color);
    color: #fff;
}

/* modals */
.modal-content {
    border: 3px solid #efefef;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.68);
    border-radius: 1.2rem;
}

.modal-content h5 {
    color: #597a9e;
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
    margin-top: 0.5rem;
    text-align: center;
}


.modal-content button.close {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.8rem;
    line-height: 100%;
    border-radius: 2.4rem;
    font-weight: var(--font-weight-bold);
    border: 2px solid #ececec;
    margin: 0 0 0 auto;
    padding: 0;
    opacity: 1;
    color: #d8d8d8;
}

.modal-content button.close:hover {
    color: #999;
    border-color: #999;
} 

.modal-header button.close {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.8rem;
    line-height: 100%;
    border-radius: 2.4rem;
    font-weight: var(--font-weight-bold);
    border: 2px solid #ececec;
    margin: 0 0 0 auto;
    padding: 0;
    opacity: 1;
    color: #d8d8d8;
}

.modal-header button.close:hover {
    color: #999;
    border-color: #999;
} 



.modal-header {
    border: 0;
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
    letter-spacing: 0.025rem;
}

.modal-header > span {
    font-size: 2rem;
    margin-top: 2rem;
}

.modal-title {
    font-weight: var(--font-weight-black);
    letter-spacing: 0.05rem;
}

.modal-sidebar .modal-title {
    margin-top: 15px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 700;
}

.modal-body {
    padding: 1rem 5rem 1rem 5rem;
}




.modal-body .dropzone {
    margin-top: 3rem;
}

.modal-body .dropzone.gallery-item {
    margin-top: 0;
}

.modal-body .dropzone.gallery-item .upload-preview-item .progress {
    bottom: 47%;
}

.modal-body .dropzone.gallery-item .upload-preview-item .progress-bar {
    background-color: var(--primary-color);
}




.modal-body p {
    font-size: 1.6rem;
    padding: 0;
    margin-bottom: 0;
    color:var(--tertiary-color);
}

.modal-md {
    max-width: 600px;
}

.modal-xl {
    max-width: 1410px;
}

.modal-footer {
    border: 0;
    margin: 0 0 2.5rem 0;
}

.file-upload-modal .modal-footer {
    margin-top: 0;
    padding-top: 0;
}

.modal-content .btn:not(:disabled):not(.disabled).btn-outline-primary,
.modal-content .btn-outline-primary.disabled, 
.modal-footer .btn-outline-primary:disabled  {
    padding: 0.8rem 2rem;
    min-width:130px;
    color: var(--primary-color);
    font-weight: var(--font-weight-black);
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    border-radius: 3rem;
}

.modal-content .btn:not(:disabled):not(.disabled).btn-outline-primary.active,
.modal-content .btn:not(:disabled):not(.disabled).btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
}

.modal-content .btn:not(:disabled):not(.disabled).btn-outline-primary.btn-upload,
.modal-content .btn-outline-primary.btn-upload.disabled, 
.modal-footer .btn-outline-primary.btn-upload:disabled {
    background: var(--primary-color);
    color: #fff;
    font-size: 1.5rem;
    font-weight: var(--font-weight-regular);
    text-transform: none;
    white-space: nowrap;
    letter-spacing: 0.1rem;
    padding: .5rem 2rem .5rem 2rem;
    border-radius: 3rem;
    margin-top: 2.5rem;
}

.modal-content .btn-outline-primary.btn-upload > svg {
    display: block;
    max-width: 25px;
    max-height: 25px;
    margin-right: 1rem;
}

.modal-content .btn-outline-primary.btn-upload > svg > * {
    stroke: #fff;
}

.modal-content .btn.btn-dropdown:not(:disabled):not(.disabled):hover {
    border: 1px solid #d2d2d2;
    color: var(--tertiary-color);
    background: #fff;
}

.modal-content.justify-content-center .btn {
    margin-right: 5rem;
}

.modal-content.justify-content-center .btn:last-of-type {
    margin-right: 0;
}

.modal-body .form-control {
    color: var(--tertiary-color);
    border-color: #e4e4e4;
    font-size: 1.3rem;
    padding: 0.6rem;
    font-family: 'Lato', sans-serif;
    font-weight: var(--font-weight-regular);
    background: #f7f7f7;
}

.modal-body .form-control[readonly].datepicker, 
.modal-body .form-control[readonly].datetimepicker {
    background: #f7f7f7;
}

.modal-body .form-control::placeholder {
    border-color: #e4e4e4;
    font-size: 1.5rem;
    font-weight: var(--font-weight-regular);
    text-align: center;
    color: #b6b6b6;
}

.modal-body .form-control::-ms-input-placeholder {
    border-color: #e4e4e4;
    font-size: 1.5rem;
    font-weight: var(--font-weight-regular);
    text-align: center;
    color: #b6b6b6;
}

.modal-body textarea.form-control {
    height:14rem;
}

.modal-body textarea.form-control::placeholder {
    line-height:12rem;
}

.modal-body .form-control::-ms-input-placeholder {
    line-height:12rem;
}

/* modal dropzone */
.dropzone .upload-preview-item-dotted,
.modal-body .dropzone .upload-preview-item {
    border: 1px dashed var(--primary-color);
    border-radius: 2rem;
    background: #f6f6f6;
    width: 263px;
    height: 231px;
}

.dropzone .dz-complete.upload-preview-item-dotted,
.modal-body .dropzone .dz-complete.upload-preview-item {
    border: 1px solid #e4e4e4;
}

.modal-dialog .dropzone .dz-complete.upload-preview-item-dotted,
.modal-body .dropzone .dz-complete.upload-preview-item {
    border: 0px solid #e4e4e4;
    background: #666;
}


.dropzone .upload-preview-item-dotted .upload-file,
.modal-body .dropzone .upload-preview-item .upload-file {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 1;
    background: var(--primary-color);
    padding: .5rem 2.5rem;
    border-radius: 3rem;
    white-space: nowrap;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.dropzone .upload-preview-item-dotted .upload-file > svg,
.modal-body .dropzone .upload-preview-item .upload-file > svg {
    display: block;
    max-width: 25px;
    max-height: 25px;
    margin-right: 1rem;
    margin-top: .5rem;
}

.modal-body .dropzone .upload-preview-item .upload-file > svg {
    margin-top: 0;
}

.dropzone .upload-preview-item-dotted .upload-file > svg > *,
.modal-body .dropzone .upload-preview-item .upload-file > svg > * {
    stroke: #fff;
}

.dropzone .dz-complete.upload-preview-item-dotted > img,
.modal-body .dropzone .dz-complete.upload-preview-item > img {
    top: 0;
    left: 0;
    transform: none;
    border-radius: 0;
    width:100%;
    height: 100%;
    padding: 3rem;
    object-fit: contain;
    position: static;
}

.dropzone .upload-preview-item-dotted .help-text,
.modal-body .dropzone .upload-preview-item .help-text {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    white-space: nowrap;
    color: #646464;
    letter-spacing: 0.05rem;
    font-weight: var(--font-weight-light);
    font-size: 1.3rem;
}

.dropzone .upload-preview-item-dotted .or-drop-here,
.modal-body .dropzone .upload-preview-item .or-drop-here {
    position: absolute;
    top: 69%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    white-space: nowrap;
    color: #646464;
    letter-spacing: 0.05rem;
    font-weight: var(--font-weight-light);
    font-size: 1.3rem;
}

.dropzone.dz-started .upload-preview-item-dotted .upload-file,
.dropzone.dz-started .upload-preview-item-dotted .help-text,
.dropzone.dz-started .upload-preview-item-dotted .or-drop-here,
.dropzone.dz-complete .upload-preview-item-dotted .upload-file,
.dropzone.dz-complete .upload-preview-item-dotted .help-text,
.dropzone.dz-complete .upload-preview-item-dotted .or-drop-here,
.modal-body .dropzone.dz-started .upload-preview-item .upload-file,
.modal-body .dropzone.dz-started .upload-preview-item .help-text,
.modal-body .dropzone.dz-started .upload-preview-item .or-drop-here,
.modal-body .dropzone .dz-complete.upload-preview-item .upload-file,
.modal-body .dropzone .dz-complete.upload-preview-item .help-text,
.modal-body .dropzone .dz-complete.upload-preview-item .or-drop-here {
    display: none !important;
}

/* setup modal */

.setup-modal .custom-select, .modal.setup-modal .form-control {
    margin-top: 1rem;
    height: calc(3.5rem + 2px);
    padding: 0 !important;
    font-weight: var(--font-weight-regular);
    font-size: 1.5rem;
    background-color: #f7f7f7;
    border-color: #e4e4e4;
}

.setup-modal input.form-control {
    text-align: center;
}

.modal.setup-modal .custom-select {
    padding-right: 2.5rem !important;
}

.modal-body .dropzone .upload-preview-item .btn-remove {
    top: 0.5rem;
    right: 0.5rem;
}

.modal-body .dropzone .upload-preview-item .btn-remove:hover {
    color: #fff;
    background:#ff0000;
}

/* specific modals styling */

#modal-upload-banner .modal-body .dropzone .upload-preview-item .upload-file {
    font-size: 1.2rem;
    padding: .5rem 2.5rem;
    top: 48%;
    border-radius:3rem;
}

#modal-upload-banner .modal-body .dropzone .upload-preview-item .upload-file > svg {
    margin-right: 1.5rem;
}

#modal-upload-banner p {
    margin-bottom: 1.8rem;
}

#modal-upload-banner .dropzone {
    margin-top: 0;
}

#modal-upload-banner .modal-body .dropzone .dz-processing.upload-preview-item > img,
#modal-upload-banner .modal-body .dropzone .dz-complete.upload-preview-item > img {
    padding: 0;
    border-radius: 2rem;
}

#modal-upload-banner .modal-body .dropzone.dz-started .upload-preview-item {
    border-color: transparent;
}

#modal-upload-cover-first .modal-md,
#modal-upload-cover-second .modal-md,
#modal-upload-cover-third .modal-md {
    max-width: 686px;
}

#modal-upload-cover-first .upload-file,
#modal-upload-cover-second .upload-file,
#modal-upload-cover-third .upload-file {
    padding: 1rem 2rem;
}

#modal-upload-cover-first .upload-file svg,
#modal-upload-cover-second .upload-file svg,
#modal-upload-cover-third .upload-file svg {
    display: none;
}

#modal-upload-image .modal-body {
    padding-top: 0.5rem;
}

#modal-upload-image .modal-md {
    max-width: 665px;
}

#modal-upload-image .dropzone {
    margin-top: 4rem;
}

#modal-upload-image .modal-body .dropzone .upload-preview-item .upload-file {
    font-size: 1.2rem;
    padding: .5rem 2.5rem;
    top: 50%;
    border-radius:3rem;
}

#modal-upload-logotype h5 {
}

#modal-upload-logotype .modal-md {
    max-width: 665px;
}

#modal-upload-logotype .dropzone {
    margin-top: 0rem;
}

#modal-upload-logotype .modal-footer {
    margin-top: 3.5rem;
}

#modal-live-preview .modal-md {
    max-width: 733px;
}

#modal-live-preview .modal-body p {
    font-size: 1.8rem;
}

#modal-live-preview .simple-table {
    margin: 4rem;
}

#modal-live-preview .simple-table span {
    color: var(--primary-color);
    display:block;
    width:100%;
    margin-bottom: 1rem;
}

#modal-live-preview .simple-table img {
    width: 136px;
    height: 136px;
}

#modal-live-preview .simple-table input {
    font-size: 2.5rem;
    padding: 0.4rem;
}

#modal-remove-issue {
    max-width: 652px;
}

#modal-replace-issue {
    max-width: 687px;
}

#modal-create-issue {
    max-width: 796px;
    margin: 1.75rem auto;
}

#modal-create-issue .modal-body {
    padding-left: 8.5rem;
    padding-right: 8.5rem;
}

#modal-create-issue p {
    margin-bottom: 1.8rem;
}

#modal-create-issue input {
    margin-bottom: 6rem;
}

#modal-edit-issue {
    max-width: 796px;
}



    #modal-edit-issue .modal-body {
        padding-left: 8.5rem;
        padding-right: 8.5rem;
    }


#modal-edit-issue p {
    margin-bottom: 0.1rem;
    font-size: 2.1rem;
    
}

#modal-edit-issue form > .form-group {
    margin-bottom: 6rem;
}


@media (max-width: 901px) {
    
    #modal-edit-issue form > .form-group {
        margin-bottom: 3rem;
    }
    #modal-edit-issue p {
        margin-bottom: 0.1rem;
        font-size: 1.7rem;
    }
    #modal-edit-issue .ql-editor p {
        margin-bottom: 0.1rem;
        font-size: 1.3rem;
    }
    #modal-edit-issue .modal-body {
        padding-left: 3.5rem;
        padding-right: 3.5rem;
    }
    
    
    #modal-edit-issue {
        max-width: 650px;
    }


    @media (orientation: landscape) {
    }
    
    @media (orientation: portrait) {
    }
}

#modal-edit-issue textarea.form-control {
    height: 21rem;
}

#modal-edit-issue textarea.form-control::placeholder {
    line-height:20rem;
}

#modal-edit-issue textarea.form-control::-ms-input-placeholder {
    line-height:20rem;
}

#modal-coupons {
    max-width: 700px;
}

#modal-coupons .input-group {
    width: 264px;
    margin: .5rem auto 2rem auto;
}

#modal-coupons .btn-outline-group {
    background: #f7f7f7;
}

#modal-coupons .modal-footer {
    margin-right: 4.5rem;
    margin-left: 4.5rem;
}

#modal-coupons .table-custom {
    max-width: 700px;
    width: 100%;
    
    margin-top: 10px;
}

#modal-coupons .header,
#modal-coupons .body {
    margin-bottom: 1rem;
}

#modal-coupons .header > *,
#modal-coupons .body > * {
    text-align: center;
    display: inline-block;
    max-width: 16.5rem;
    width: 100%;
    padding: 0 1.0rem;
    vertical-align: top;
}

#modal-coupons .header > *:last-child,
#modal-coupons .body > *:last-child {
    max-width: 6rem;
}

#modal-coupons .header > div {
    font-weight: var(--font-weight-regular);
        font-size: 1.4rem;
}

#modal-coupons .bordered {
    text-align: center;
        font-size: 1.4rem;
        line-height: 1.7rem;
    padding: .6rem .375rem;
    display: block;
    font-weight: 300;
}

#modal-coupons .btn-ajax {
    line-height: 100%;
}

#modal-coupons .modal-footer .btn:not(:disabled):not(.disabled):hover > svg .symbol {
    fill: var(--primary-color);
}

#modal-coupons .modal-footer .btn:not(:disabled):not(.disabled).btn-ajax {
    color: var(--primary-color);
}

#modal-coupons .modal-footer .btn:not(:disabled):not(.disabled):hover.btn-ajax {
    background: #fff;
    color: var(--primary-color);
}


@media (max-width: 901px) {
    @media (orientation: landscape) {
        #modal-coupons .header > div {
      
        }
        
        
        
    }
    
    @media (orientation: portrait) {
        #modal-coupons .header > div {
            font-weight: var(--font-weight-regular);
            font-size: 1.0rem;
        }
        
        #modal-coupons .header > *,
        #modal-coupons .body > * {
            text-align: center;
            display: inline-block;
            max-width: 8.1rem;
            width: 100%;
            padding: 0 1.0rem;
            vertical-align: top;
        }
        
        
        #modal-coupons .modal-footer {
            margin-right: 1.0rem;
            margin-left: 1.0rem;
        }

        #modal-coupons .bordered {
            text-align: center;
                font-size: 0.75rem;
                line-height: 1.0rem;
            padding: .6rem .375rem;
            display: block;
            font-weight: 300;
        }
    }
}





#configure-interactivity-audio .modal-body .dropzone .upload-preview-item {
    width: 480px;
    height: 344px;
}

#video-preview .preview-item, 
#audio-preview .preview-item, 
#configure-interactivity-video .modal-body .dropzone .upload-preview-item {
    position: relative;
    width: 480px;
    height: 344px;
}

#configure-interactivity-gallery .modal-body .dropzone .upload-preview-item {
    width: 149px;
    height: 118px;
    border-radius: 2rem;
    border: 1.5rem solid #fff;
    box-sizing: content-box;
    margin:0;
}

#configure-interactivity-gallery .modal-body .dropzone .upload-preview-item:after {
    content: '';
    position: absolute;
    top: 0;
    border: 1px solid #cdcdcd;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
}

#configure-interactivity-gallery .modal-body .dropzone .upload-preview-item > img {
    padding: 0;
    object-fit: cover;
    border-radius: 1rem;
}

#subdomain-link-modal h2 {
    margin-bottom: 2.1rem;
    font-size: 1.8rem;
    letter-spacing: 0.025rem;
}

#subdomain-link-modal h5 {
    margin: -1.3rem 0 2rem 0;
}

#subdomain-link-modal .r-input {
    width: 435px;
}

#subdomain-link-modal .form-group {
    margin:0;
}

#subdomain-link-modal .form-group > .text-danger {
    position: absolute;
}

#subdomain-link-modal input::placeholder {
    color: #757575;
}

#subdomain-link-modal input::-ms-input-placeholder {
    color: #757575;
}

#subdomain-link-modal .r-domain {
    padding: 0 30px 0 10px;
    color: #757575;
    font-size: 1.5rem;
}

#subdomain-link-modal .r-copy > .btn {
    width: 132px;
}

#publish-modal .dropzone {
    margin-top: 0;
}

#publish-modal .dropzone .upload-preview-item-dotted.upload-preview-icon {
    width: 160px;
    height: 160px;
}

#publish-modal .modal-body .dropzone .upload-preview-item .upload-file {
    font-size: 1.3rem;
    top: 44%;
    padding: 0.5rem 1.1rem;
}

#publish-modal .dropzone .upload-preview-item-dotted.upload-preview-icon .or-drop-here {
    font-size: 1.3rem;
    top: 65%;
    padding: 0.5rem 1.1rem;
}

#publish-modal .dotted.upload-preview-icon > img, .dropzone .dz-complete.upload-preview-item-dotted.upload-preview-icon > img {
    padding: 0;
    border-radius: 2rem;
}

#publish-modal .btn-dropdown,
#setup-modal .btn-dropdown {
    line-height: 1.25;
    font-size: 1.5rem;
    padding: 0.8rem;
    background-color: #f7f7f7;
    border-color: #e4e4e4;
}

@media (max-width: 992px) {
    #publish-modal .btn-dropdown.scale,
    #setup-modal .btn-dropdown {
        font-size: 7px;
        line-height: 1.85rem;
    }
}

/* input groups */

.input-group.input-group-with-overlay > .form-control:not(:last-child) {
    margin-right: -1rem;
    padding-right: 2rem;
}
.input-group.input-group-with-overlay > .form-control:not(:first-child) {
    margin-left: -1rem;
    padding-left: 2rem;
}

.input-group.input-group-with-overlay > .input-group-append,
.input-group.input-group-with-overlay > .input-group-prepend {
    z-index: 10;
}

.input-group.input-group-with-overlay > .input-group-append .input-group-text,
.input-group.input-group-with-overlay > .input-group-prepend .input-group-text {
    border-radius: .5rem;
}

.input-group.input-group-with-overlay > .input-group-append .btn,
.input-group.input-group-with-overlay > .input-group-prepend .btn {
    padding: 0.9rem;
    border-color: #d2d2d2;
    background-color: #fff;
    border-radius: 0.5rem;
}

#issues-featured-top-section > .input-group.input-group-with-overlay > .form-control-secondary {
    cursor: default;
    padding: 9px 10px;
}

#issues-featured-top-section > .input-group.input-group-with-overlay > .input-group-append {
    margin: 2px;
}

#issues-featured-top-section > .input-group.input-group-with-overlay > .input-group-append .btn {
    padding: 0px 12px;
    align-items: center;
}

.input-group.input-group-with-overlay > .input-group-append .btn.btn-outline-secondary:hover,
.input-group.input-group-with-overlay > .input-group-append .btn.btn-outline-secondary:hover,
.input-group.input-group-with-overlay > .input-group-prepend .btn.btn-outline-secondary:focus,
.input-group.input-group-with-overlay > .input-group-prepend .btn.btn-outline-secondary:focus {
    background-color:var(--primary-color);
}

.input-group-text.input-group-with-svg {
    background: var(--active-color);
    border-color: var(--active-color);
}

.input-group-text.input-group-with-svg > svg .symbol {
    fill: #4b4b4b;
}

.input-group.input-group-with-overlay > .input-group-append .input-group-text.svg-icon {
    border-left:0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group-text.svg-icon {
    background: #fff;
}

.input-group-text.svg-icon .symbol {
    fill: var(--primary-color);
}

.input-group[data-datepicker-id] {
    cursor: pointer;
}

.input-group .input-group-floating-icon {
    position: absolute;
    top:10px;
    right:-50px;
}


@media (max-width: 901px) {
    @media (orientation: landscape) {
        .input-group .input-group-floating-icon {
            position: absolute;
            top:6px;
            right:-40px;
        }
        
        
        
    }
    
    @media (orientation: portrait) {
        .input-group .input-group-floating-icon {
            position: absolute;
            top:6px;
            right:-40px;
        }
        
    }
}


.input-group .input-group-floating-icon > svg {
}

.input-group .input-group-floating-icon > svg .symbol {
    fill: var(--primary-color);
}

.input-group-floating-icon[data-datepicker-id] {
    cursor: pointer;
}

#gallery-items {
    max-width: 930px;
    width:100%;
    display: inline-block;
    font-size: 0;
    text-align: center;
}

#gallery-items .upload-preview-item {
    margin: 1.5rem;
}

#gallery-items .upload-preview-item.dz-clickable,
#gallery-items .upload-preview-item.blank {
    cursor: pointer;
}

.gallery-items-sidebar {
    width: 150px;
    display: inline-block;
    vertical-align: top;
    font-weight: var(--font-weight-bold);
    margin-top:15px;
    position:relative;
    color: var(--primary-color);
}

.gallery-items-sidebar div:first-of-type {
    margin-top:75px;
}

.gallery-items-sidebar svg,
.gallery-items-sidebar img {
    position: absolute;
    top:0;
}

.gallery-items-sidebar svg .symbol {
    fill: var(--primary-color);
}

.gallery-items-sidebar svg.svg-arrow {
    transform: rotate(-45deg);
    right: -50px;
    top:-20px;
}

.gallery-items-sidebar svg.svg-drag {
    width:50px;
    height:60px;
    left: 20px;
}

.gallery-items-sidebar img {
    left: 50%;
    transform:translateX(-50%);
}

.arrow-pointer {
    position: absolute;
    pointer-events: none;
    z-index: 100;
    transform-origin: 78.7% 79.1%;
}

.media-controls {
    width: 480px;
    height: 67px;
    background: #d2d2d2;
    border-radius: 0.5rem;
    margin: 0 auto;
}

.media-controls > * {
    display: inline-block;
}

.media-controls button {
    border:0;
    background:transparent;
    margin:0;
    padding:0;
    width:55px;
}

.media-controls button:hover {
    cursor:pointer;
}

.media-controls button > svg {
    height: auto;
    margin: 0 auto;
}

.media-controls button > svg.icon-shape-inverted {
    width: 46px;    
}

.media-controls button > svg.svg-sound{
    width: 28px;    
}

.media-controls button > svg.icon-shape-inverted .symbol {
    fill:transparent;
}

.media-controls button > svg.icon-shape-inverted .fill,
.media-controls button > svg.svg-sound .symbol {
    fill:#fff;
}

.media-controls input[type="range"] {
    width: 100%;
    background: #d2d2d2;
    border: 1px solid #fff;
    padding: 0;
    height: 7px;
}

.media-controls input[type="range"]::-moz-range-thumb {
    background: #fff !important;
    border: 0 !important;
}

.media-controls input[type="range"]::-moz-range-progress {
    background: #fff;
}

.media-controls input[type="range"]::-webkit-slider-thumb {
    background: #fff !important;
    border: 0 !important;
}

.media-controls input[type="range"]::-ms-thumb {
    background: #fff !important;
    border: 0 !important;
}

.media-controls input[type="range"]::-ms-fill-lower {
    background: #fff !important;
    height:30px !important;
}

/* interactivity configure link */
#link-preview-page {
    width: 232px;
    height: 270px;
    position:relative;
    background: #f6f6f6;
    border-radius: 2rem;
}

#link-preview-page img {
    position:absolute;
    object-fit: contain;
    z-index:2;
    width:100%;
    height:100%;
    padding: 1.3rem 1.7rem;
}

#link-preview-page img[src='']{
    content: '';
    width: 0;
    height: 0;
}

#configure-interactivity-link .input-text-editable {
    max-width: 206px;
}

#configure-interactivity-link .modal-header > span {
    font-size: 1.8rem;
}

.placeholder-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #d2d2d2;
    font-size: 2.2rem;
    z-index:1;
    display: none;
}

#link-page img[src=''] ~ .placeholder-text {
    display: block;
}

#link-preview-page-prev,
#link-preview-page-next {
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    font-size: 4rem;
    color: #d2d2d2;
    border:0;
    background:transparent;
}

#link-preview-page-prev:hover,
#link-preview-page-next:hover {
    cursor: pointer;
}

#link-preview-page-prev {
    left: -50px;
}

#link-preview-page-next {
    right: -50px;
}

/* toggle switch */
.switch-light.switch-candy > span {
    width:100%;
    border-radius: 25px;
    border:0;
    margin: 2px;
    box-shadow: none;
    padding: 2px 0;
    background:#fff;
    cursor: pointer;
    display: inline-block;
}

.switch-candy a {
    border-radius: 25px;
    border:0;
    box-shadow: none;
    background: var(--primary-color) !important;
    outline:none !important;
    height: calc(100% - 4px);
    right: calc(50% - 4px);
    margin: 2px;
    width: 50%;
}

.switch-candy.disabled {
    cursor: auto;
    pointer-events: none;
}

.switch-light.switch-candy input:checked ~ span a {
    background: var(--primary-color) !important;
    /*background: var(--disabled-color) !important;*/
    right: 0;
}

.list-issue.active .switch-light.switch-candy input:checked ~ span a,
.list-issue:hover .switch-light.switch-candy input:checked ~ span a {
    background: var(--primary-color) !important;
    /*background: var(--disabled-color) !important;*/
    right: 0;
}


.switch-light.switch-candy.disabled input:checked ~ span a,
.switch-candy.disabled a {
    /*background: #c50000 !important;*/
    background: #c5c5c5 !important;
}

.switch-light.switch-candy span span {
    text-shadow: none !important;
    font-size: 1.1rem;
    text-transform: uppercase;
    width:50%;
    font-weight: var(--font-weight-regular);
}

.switch-light.switch-candy input:checked ~ span span:first-child,
.switch-light.switch-candy input:not(:checked) ~ span span:nth-child(2) {
    color: var(--disabled-color);
        /*var(--primary-color);*/
    font-weight: var(--font-weight-regular);
}

body.sales .switch-light.switch-candy input:checked ~ span span:first-child,
body.sales .switch-light.switch-candy input:not(:checked) ~ span span:nth-child(2) {
    color: var(--primary-color);
    font-weight: var(--font-weight-regular);
}


.list-issue.active .switch-light.switch-candy input:checked ~ span span:first-child,
.list-issue.active .switch-light.switch-candy input:not(:checked) ~ span span:nth-child(2),
.list-issue:hover .switch-light.switch-candy input:checked ~ span span:first-child,
.list-issue:hover .switch-light.switch-candy input:not(:checked) ~ span span:nth-child(2) {
    color:var(--primary-color);
    font-weight: var(--font-weight-regular);
}

.switch-light.switch-candy input ~ span span:first-child, 
.switch-light.switch-candy input:checked ~ span span:nth-child(2) {
    color: #fff;
}

.switch-light.switch-candy.disabled input:checked ~ span span:first-child,
.switch-light.switch-candy.disabled input:not(:checked) ~ span span:nth-child(2) {
    color: #c5c5c5;
}


#price-switch {
    margin: 0.5vw 0 0 0;
}

#designer-preview .switch-light.switch-candy > span {
    width: 15.7vw;
    padding: 0;
    min-height: auto;
}

#designer-preview .switch-light.switch-candy span span {
    font-size: 0.6vw;
    letter-spacing: 0.05rem;
    line-height: 3.35;
}

#price-switch.highlighted {
    z-index: 1010;
    pointer-events: none;
    margin-top: 1.475vw;
}

#price-switch.highlighted .switch-light.switch-candy > span {
    border: 2px solid var(--primary-color);
    background: transparent;
}

#price-switch.highlighted .switch-light.switch-candy input ~ span span:first-child, 
#price-switch.highlighted .switch-light.switch-candy input:checked ~ span span:nth-child(2) {
    color: var(--primary-color);
}

#price-switch.highlighted .switch-light.switch-candy a {
    background: transparent !important;
    border: 1px solid var(--primary-color);
    transition: none;
}

.switch-light.switch-candy.tight {
    width: 100px;
    line-height: 1;
    height: auto;
    margin: 0;
}

.switch-light.switch-candy.tight > span {
    padding: 0;
    margin: 0;
    border: 1px solid var(--disabled-color);
}

/* nav-tabs */
.nav-tabs-custom {
    border: 0;
    margin-bottom: 6rem;
}

.nav-tabs.nav-tabs-custom .nav-link {
    border-radius: 0.25rem;
    margin: 0 0.25rem;
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: var(--font-weight-black);
    padding: 1.6rem 3.7rem;
    letter-spacing: 0.2rem;
}

.nav-tabs.nav-tabs-custom .nav-item {
    margin-left: 1.2em;
    margin-right: 1.2rem;
}

.nav-tabs.nav-tabs-custom .nav-item.show .nav-link, 
.nav-tabs.nav-tabs-custom .nav-link.active, 
.nav-tabs.nav-tabs-custom .nav-link {
    border-color: var(--primary-color);
    min-width: 221px;
}

.nav-tabs.nav-tabs-custom .nav-link.active {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}

.nav-tabs.nav-tabs-custom .nav-link > svg {
    height: 2rem;
    width: auto;
    margin-right: 2rem;
}

.nav-tabs.nav-tabs-custom .nav-link > svg .fill {
    fill: var(--primary-color);
}

.nav-tabs.nav-tabs-custom .nav-link.active  > svg .fill {
    fill: #fff;
}

.tab-content.tab-content-custom .tab-pane p {
    font-size: 1.8rem;
    letter-spacing: 0.075rem;
    color: var(--tertiary-color);
}

/* store form */
form.store h1 {
    color: #e9e9e9;
    font-size: 6.2rem;
    font-weight: var(--font-weight-bold);
    margin:-1.2rem 0 0 0;
    padding:0;
}

form.store label {
    color: #3e3e3e;
    width:100%;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.05rem;
    margin:0;
    padding:0;
    display: block;
    line-height: 1.8rem;
    margin-bottom: 11px;
}

form.store label ~ span {
    color: #828491;
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    display: block;
    line-height: 100%;
}

form.store .form-group.row {
    margin-bottom:2.4rem;
}

form.store .form-control::placeholder {
    letter-spacing: 0.1rem;
}

form.store .form-control::-ms-input-placeholder {
    letter-spacing: 0.1rem;
}

form.store #annual-number-of-issues {
    text-align: center;
}

/* other */

[data-datepicker-field] {
    cursor: pointer;
}

label.required::after {
    content: '*';
    margin-left: 10px;
    color: var(--primary-color);
}

.StripeElement.form-control {
    max-height: 51.5px;
}

.circle-primary {
    background: var(--primary-color);
    border-radius:100rem;
    width: 145px;
    height: 145px;
}

.circle-primary > img {
    max-width: 85px;
}

.card-deck-clean .card-header {
    background: transparent;
    border-bottom: 0;
}

.card-deck-clean .card-footer {
    background: transparent;
    border-top: 0;
    font-size: 1.3rem;
    padding-top: 0rem;
}

.card-deck-clean .card-footer b {
    font-weight: var(--font-weight-black);
}

.card-deck-clean .card-footer div {
    color: #62696f;
}

.card-deck-clean .card-footer .btn:not(:disabled):not(.disabled).btn-outline-primary {
    padding: 0.7rem 0 0.8rem 0;
}

.text-necessary {
    color: #999999;
}

.text-necessary > span {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/*custom checkbox*/
.custom-checkbox .custom-control-label {
    margin-left: 1.2rem;
}

label#label_terms_accepted {
    font-size: 1.3rem;
}

label#label_terms_accepted a {
    color: #999;
    font-weight: var(--font-weight-bold);
}

.custom-checkbox .custom-control-label::before {
    border: 1px solid #6f6f6f;
    background-color: transparent;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0;
    top: .5rem;
}

.public-page .custom-checkbox .custom-control-label::before {
    top: .1rem;
    border-color: #b6c2ce;
    border-radius: .25rem;
    background-color: #fff;
}

label#label_terms_accepted::before{
    top:0.1rem !important;
}

.custom-control-input:focus ~ .custom-control-label::before,
.custom-control-input:checked ~ .custom-control-label::before {
    box-shadow:none;
}

.custom-control-input:active ~ .custom-control-label::before {
    background: transparent;
}

.custom-checkbox .custom-control-label::after {
    width: 1.85rem;
    height: 1.85rem;
    top: 0.0rem;
}

.public-page .custom-checkbox .custom-control-label::after {
    top: .1rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%236f6f6f' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.public-page .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23666666' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: transparent;
}

.public-page .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #fff;
}

.public-page .custom-checkbox .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    background: #fff;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before, 
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before {
    background-color: transparent !important;
}

.public-page .was-validated .custom-control-input:valid ~ .custom-control-label::before,
.public-page .custom-control-input.is-valid:checked ~ .custom-control-label::before, 
.public-page .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before {
    background-color: #fff !important;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before {
    box-shadow:none;
}

.public-page .custom-control-input.is-invalid~.custom-control-label,
.public-page .was-validated .custom-control-input:invalid~.custom-control-label {
    color: inherit;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
    background-color: transparent;
}

.public-page .was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.public-page .custom-control-input.is-invalid ~ .custom-control-label::before {
    background-color: rgba(255,0,0,0.25);
    border-color:#dc3545 !important;
}

/* custom margins */
.mt-12, .my-12 {
    margin-top: 12rem !important;
}
.mb-12, .my-12 {
    margin-bottom: 12rem !important;
}


.mt-9, .my-9 {
    margin-top: 9rem !important;
}
.mb-9, .my-9 {
    margin-bottom: 9rem !important;
}

.mt-8, .my-8 {
    margin-top: 8rem !important;
}
.mb-8, .my-8 {
    margin-bottom: 8rem !important;
}

.mt-7, .my-7 {
    margin-top: 7rem !important;
}
.mb-7, .my-7 {
    margin-bottom: 7rem !important;
}

.mb-2r, .my-2r {
    margin-bottom: 2rem !important;
}

.mt-2r, .my-2r {
    margin-top: 2rem !important;
}

.mb-3r, .my-3r {
    margin-bottom: 3rem !important;
}

.mt-3r, .my-3r {
    margin-top: 3rem !important;
}

.mb-4r, .my-4r {
    margin-bottom: 4rem !important;
}

.mt-4r, .my-4r {
    margin-top: 4rem !important;
}

.mb-5r, .my-5r {
    margin-bottom: 5rem !important;
}

.mt-5r, .my-5r {
    margin-top: 5rem !important;
}

.mb-6r, .my-6r {
    margin-bottom: 6rem !important;
}

.mt-6r, .my-6r {
    margin-top: 6rem !important;
}

.mb-6hr, .my-6hr {
    margin-bottom: 6.5rem !important;
}

.mt-6hr, .my-6hr {
    margin-top: 6.5rem !important;
}

.mb-7r, .my-7r {
    margin-bottom: 7rem !important;
}

.mt-7r, .my-7r {
    margin-top: 7rem !important;
}

.pr-2r {
    padding-right: 2rem !important;
}

form.placeholder-left ::placeholder {
    text-align: left;
}

form.placeholder-left ::-ms-input-placeholder {
    text-align: left;
}

.settings-header {
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.05rem;
    font-size: 2.1rem;
}

.text-subheadline {
    font-size: 1.3rem;
}

.text-headline {
    color: var(--primary-color);
}

.flex-even {
    flex: 1 1 0;
}

/* custom tabs style */
.tabs-options .tab-description {
    font-weight: var(--font-weight-light);
    color:#000;
    text-align: center;
    padding: 0 1rem;
    line-height: 100%;
    position: absolute;
    top: -8.5rem;
}

@media(min-width:1460px) {
    .tabs-options .tab-description {
        top: -5.5rem;
    }
}

@media(max-width:860px) {
    .tabs-options .tab-description {
        display: none;
    }
}

.tabs-options > .tab-content {
    border: 1px solid #d2d2d2;
    border-radius: 1rem;
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 2rem;
}

.tabs-options > .nav-tabs {
    border: 0;
    margin-bottom: -1rem;
    position: relative;
    z-index: 1;
}

.tabs-options > .nav-tabs .nav-link {
    border: 1px solid #d2d2d2;
    border-radius: 1rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    font-weight: var(--font-weight-bold);
    color:#000;
    background: #f6f6f6;
    position:relative;
    font-weight: var(--font-weight-black);
}

.tabs-options > .nav-tabs .nav-item {
    margin-top: 1rem;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 0 1.75rem 0;
}

.nav-tabs > .nav-link.active span {
    font-size: 2rem;
}

.tabs-options > .nav-tabs .nav-item.show .nav-link, .nav-tabs > .nav-link.active {
    margin-top: 0;
    background: var(--active-color);
    color: #000;
    outline:0;
    flex-basis: 8%;
}

.tabs-options > .nav-tabs .nav-item.show .nav-link, .nav-tabs > .nav-link.active .tab-description {
    top: -7.5rem;
}

@media(min-width:1460px) {
    .tabs-options > .nav-tabs .nav-item.show .nav-link, .nav-tabs > .nav-link.active .tab-description {
        top: -4.5rem;
    }
}

.video {
    border: 1px solid #d9d9d9;
    border-radius: 0.3rem;
    max-width: 555px;
    width:100%;
    height: 360px;
    margin: 1rem auto 2rem auto;
}

.btn-text-small {
    font-size: 1rem;
}

.btn-text-big {
    font-weight: var(--font-weight-black);
    line-height: 100%;
}

.card-deck.card-deck-clean {
    display: inline-block;
}

.card-deck.card-deck-clean .list-unstyled.additions {
    padding-top: 0.5rem;
    list-style-image: url('../img/svg-icon-plus.svg');
    margin-left: 5.8rem;
}

.card-deck.card-deck-clean .list-unstyled > li {
    margin-bottom: 0.2rem;
    padding-left: 0.6rem;
}

.card-deck.card-deck-clean .list-unstyled.additions > li {
    margin-bottom: 1.4rem;
}

.hint-text {
    position:absolute;
    font-weight: var(--font-weight-bold);
}

.hint-text svg .symbol {
    fill: #000;
}

.hint-text.hint-page-number {
    right: 60px;
    bottom: 10px;
    width:110px;
}

.hint-text.hint-page-number svg {
    transform: scaleY(-1) rotate(130deg) translate(50px, 100px);
}

.hint-text.hint-page-url {
    right: 110px;
    top: 100px;
    width:120px;
}

.hint-text.hint-page-url svg {
    transform: scaleY(-1) rotate(80deg) translate(5px, 45px);
}

.modal-body .tabs-options .tab-pane {
    min-height: 450px;
}

#create-issue {
    cursor: pointer;
    width: 100%;
    max-width: 900px;
    margin-top: 4.5%;
}




#create-issue .upload-preview-item > svg {
    width: 200px;
    height: 200px;
}


div#issues-empty p{
    max-width: 900px;
    font-size: 2.0rem;
    font-weight: var(--font-weight-regular);
    padding: 0px;
    margin: auto;
}
div#issues-empty h2{ 
    margin-top: 3.0rem;
    margin-bottom: 3.0rem;
}

@media (max-width: 901px) {
    
   

}




#create-issue svg > * {
    fill: var(--primary-color);
    position: static;
}

#create-issue .progress-cancel svg > * {
    transform: none;
}

#create-issue-wrapper .upload-preview-item {
    background :#fff;
    height: 400px;
    width: 100%;
}




#create-issue-wrapper .dropzone .upload-preview-item-dotted > svg {
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#create-issue-wrapper .dropzone .upload-preview-item-dotted > svg.tmps {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#create-issue-wrapper .dropzone.dz-started .upload-preview-item-dotted > svg {
    display: none;
}

#create-issue-wrapper .dropzone .upload-preview-item-dotted .or-drop-here {
    top: 75%;
}

#create-issue-wrapper .dropzone .upload-preview-item-dotted .upload-file {
    padding: 1rem 2.6rem;
    top: 57%;
    font-size: 2.1rem;
    border-radius: 100px;
}






@media (max-width: 901px) {
    #create-issue {
        margin-top: 0px;
    }
    
    #create-issue-wrapper .upload-preview-item {
        background :#fff;
        height: 250px;
        width: 100%;
    }

    #create-issue-wrapper .dropzone .upload-preview-item-dotted .upload-file {
        padding: 1rem 2.6rem;
        top: 73%;
        font-size: 2.1rem;
        border-radius: 100px;
}

#create-issue-wrapper .dropzone .upload-preview-item-dotted .or-drop-here {
    display: none;
}


    @media (orientation: landscape) {
       
    }
    
    @media (orientation: portrait) {
        
    }
}




#create-issue-wrapper .dropzone .upload-preview-item-dotted .upload-file:hover{
    background-color: #fff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

#create-issue-wrapper .dropzone .upload-preview-item .progress {
    height: 12px;
    position: static;
    width: 47%;
    margin: 0 auto;
    background-color: #ebecf0;
}

#create-issue-wrapper .dropzone .upload-preview-item.dz-complete .progress {
    opacity: 1;
}

#create-issue-wrapper .dropzone .dz-complete.upload-preview-item-dotted {
    border: 1px dashed var(--primary-color);
}

.input-text-editable {
    position: relative;
}

.input-text-editable-clone {
    position: absolute;
    top: 0;
    left: 0;
}

.modal-body p.link-info {
    text-align: center;
    font-size: 1.4rem;
    margin: 1.9rem 0 2.5rem 0;
    letter-spacing: 0.05rem;
    font-weight: var(--font-weight-bold);
    color: #000;
}

form .btn .lds-dual-ring {
    width: 25px !important;
    height: 25px !important;
    margin: 0 auto;
}

form .btn .lds-dual-ring div {
    border-color: #fff transparent #fff transparent;
    width: 25px !important;
    height: 25px !important;
    top:auto;
    left:auto;
}

form .btn.btn-outline-primary .lds-dual-ring div {
    border-color: #58acf4 transparent #58acf4 transparent;
}

#store-index-row.row > .col {
    max-width: 770px;
}

#notifications-form-row.row > .col {
    max-width: 550px;
    margin-bottom: 10px;
}

#notifications-reports-row {
    margin-top: 5.2rem;
    max-width: 990px;
    margin: 5.2rem auto 0 auto;
}

#notifications-reports-row .min-table th:first-child,
#notifications-reports-row .min-table td:first-child {
    width: 100%;
}

#notifications-reports-row hr {
    background: #d9d9d9;
    margin-bottom: 1.7rem;
}

form#notifications-form > .form-group {
    text-align: center;
}

form#notifications-form > .form-group > label {
    color: var(--tertiary-color);
    font-size: 1.5rem;
    letter-spacing: 0.05rem;
    margin-bottom: 1rem;
}

form#notifications-form .form-control,
form#notifications-form .form-control:focus {
    color: var(--tertiary-color);
}

form#notifications-form .form-control {
    font-size: 2rem;
    border-radius: 0.25rem;
}

form#notifications-form .form-control::placeholder {
    color: var(--tertiary-color);
    font-weight: var(--font-weight-regular);
    text-transform: lowercase;
    letter-spacing: 0.2rem;
    font-size: 1.5rem;
    line-height: 2rem;
}

form#notifications-form .form-control::-ms-input-placeholder {
    color: var(--tertiary-color);
    font-weight: var(--font-weight-regular);
    text-transform: lowercase;
    letter-spacing: 0.2rem;
    font-size: 2rem;
    line-height: 2rem;
}

form#notifications-form input.form-control {
    line-height: 1.5;
}

form#notifications-form textarea.form-control {
    letter-spacing: 0.02rem;
    font-size: 2rem;
}

form#notifications-form .input-group.input-group-with-overlay > .form-control:not(:first-child) {
    margin-left: -1rem;
    font-size: 1.4rem;
    text-align: center;
    padding: 0.5rem 1rem 0.5rem 2rem;
    border-radius: 0 0.25rem 0.25rem 0;
}



form#notifications-form .input-group.input-group-with-overlay > .input-group-prepend .input-group-with-svg,
.input-group.input-group-with-overlay > .input-group-append .input-group-with-svg {
    padding: 0 .6rem;
    border: 1px solid #d2d2d2;
}

form#notifications-form .input-group.input-group-with-overlay > .input-group-prepend .input-group-with-svg > svg,
.input-group.input-group-with-overlay > .input-group-append .input-group-with-svg > svg {
    width: 2.7rem;
    height: 2.7rem;
}

form#notifications-form .input-group.input-group-with-overlay > .input-group-prepend .input-group-with-svg > svg .symbol,
.input-group.input-group-with-overlay > .input-group-append .input-group-with-svg > svg .symbol {
    fill: var(--primary-color);
}

#send-at-form-group > .input-group {
    max-width: 180px;
    margin: 0 auto;
}

.flatpickr-calendar {
    box-shadow: none;
    border: 1px solid #e6e6e6;
}

.flatpickr-calendar:before, .flatpickr-calendar:after {
    display: none;
}

.flatpickr-calendar.arrowTop {
    margin-top: -2px;
}

#sales-index-row.row > .col {
    max-width: 1080px;
}

span.flatpickr-weekday {
    font-weight: var(--font-weight-bold);
    color: var(--tertiary-color);
    font-size: 1.4rem;
}

.flatpickr-current-month span.cur-month,
.flatpickr-current-month input.cur-year {
    font-weight: var(--font-weight-regular);
    color: #597a9e;
    
    font-size: 15px;
}

.flatpickr-day.today {
    border-color: var(--primary-color);
}

.flatpickr-day:hover,
.flatpickr-day:focus,
.flatpickr-day.today:hover,
.flatpickr-day.today:focus
.flatpickr-day.selected,
.flatpickr-day.selected:focus {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
    color: #597a9e;
    font-size: 135%;
}

h1.earned {
    font-size: 8.1rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 7rem;
}



@media (max-width: 901px) {
    @media (orientation: portrait) {
        h1.earned {
            font-size: 3.5rem;
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 2.5rem;
        }
        
    }
    @media (orientation: landscape) {
        h1.earned {
            font-size: 4.2rem;
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 2.5rem;
        }
    }
    
}



.secondary-header {
    font-size: 1.8rem;
    letter-spacing: 0.075rem;
    color: var(--tertiary-color);
    margin-bottom: 2rem;
}

.ql-toolbar.ql-snow,
.ql-container.ql-snow {
    font-family: var(--font-family-sans-serif);
    border-color: #c4c4c4;
    color: var(--tertiary-color);
    background: #f7f7f7;
}

.ql-toolbar.ql-snow {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.ql-container.ql-snow {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}


.ql-snow.ql-toolbar button{
    border: 1px solid #9E9E9E;
    border-radius: 4px;
    padding: 3px 4px;
    height: 23px;
    width: 24px;
}
    
.ql-snow.ql-toolbar button.ql-active{   
    color: white !important;
    background-color: #6FA7F8;
    border-color: #539CF7;
}
    
.ql-snow.ql-toolbar button:hover {
    color: var(--primary-color);
}

.ql-snow.ql-toolbar button.ql-active svg path{
    stroke: #fff !important;
} 

.ql-container,.ql-editor {
    -webkit-touch-callout: text; /* iOS Safari */
    -webkit-user-select: text; /* Safari */
    -khtml-user-select: text; /* Konqueror HTML */
    -moz-user-select: text; /* Firefox */
    -ms-user-select: text; /* Internet Explorer/Edge */
    user-select: text;
    max-height: 300px;
}

.ql-editor {
    cursor: text;
}

.wysiwyg .ql-editor.ql-blank::before {
    font-style: normal;
    left: 5px;
    color: inherit;
}

.wysiwyg .ql-editor:focus.ql-blank::before {
    display: none;
}

.btn-upgrade {
    background: var(--primary-color);
    border-radius: 3rem;
    color: #fff;
    text-transform: uppercase;
}

.btn-upgrade-floating {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-circular-outline-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
    border-radius: 50%;
    width: 7.8vh;
    height: 7.8vh;
    white-space: normal;
    position: relative;
}

.btn-circular-outline-primary#generate-link {
    width: 68px;
    height: 68px;
    font-size: 1.5rem;
}

.btn.btn-circular-outline-primary:not(:disabled):not(.disabled):hover {
    background: var(--primary-color);
    color: #fff;
}

.btn:not(:disabled):not(.disabled).btn-circular-outline-primary.upgradeable {
    cursor: default;
    color:#959aa0;
    letter-spacing: 0.015rem;
}

.btn:not(:disabled):not(.disabled).btn-circular-outline-primary.upgradeable:hover {
    background: transparent;
}

.btn.btn-circular-outline-primary.highlighted {
    z-index: 1010;
    pointer-events: none;
}

.btn-circular-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 7.4rem;
    height: 7.4rem;
    white-space: normal;
    position: relative;
}

.btn-absolute-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#generate-link {
    margin-top:18%;
}

.switch-light label, .switch-light > span {
    line-height: 1.8em;
}


.form-control-plaintext.alt {
    background: #f7f7f7;
    border: 1px solid #e4e4e4;
    border-radius: 5px;
    padding: 0.6rem 2.1rem;
    color: #757575;
}

#modal-link h2 {
    font-size: 1.7rem;
    margin: 1.7rem 0 2.2rem 0;
}



#modal-link textarea {
    margin-bottom: 0.5rem;
}

#modal-link textarea[rows="1"],
#modal-link-after-upload textarea[rows="1"] {
    white-space: nowrap;
    overflow: hidden;
}

@media (min-width: 768px) {
    #modal-link textarea[rows="1"] {
        margin-bottom: 5.5rem;
    }
}

#modal-link .btn-outline-action {
    width: 13.2rem;
    font-size: 1.3rem;
}



@media (max-width: 901px) {
    @media (orientation: landscape) {
        .modal-content h5 { 
            font-size: 1.8rem;
            margin-top: -2.5rem;
        }
        .modal-body {
            padding: 0rem 2rem 1rem 2rem;
        }
        #modal-link h2 {
            font-size: 1.5rem;
            margin: 1.2rem 0 1.7rem 0;
        }
        #modal-link textarea {
            font-size: 1.3rem;
            padding: 0.6rem 1.1rem;
        }
        #modal-link textarea[rows="1"] {
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        #modal-link .btn-outline-action {
            width: 9.0rem;
            font-size: 1.0rem;
        }
        textarea#generate-link-embed{
            height: 110px;
        }
    }
    
    @media (orientation: portrait) {
        .modal-content h5 { 
            font-size: 1.8rem;
            margin-top: -2.5rem;
        }
        .modal-body {
            padding: 0rem 2rem 1rem 2rem;
        }
        #modal-link h2 {
            font-size: 1.5rem;
            margin: 1.2rem 0 1.7rem 0;
        }
        #modal-link textarea {
            font-size: 1.3rem;
            padding: 0.6rem 1.1rem;
        }
        #modal-link textarea[rows="1"] {
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        #modal-link .btn-outline-action {
            width: 9.0rem;
            font-size: 1.0rem;
        }
    }
}






.web-designer .btn-outline-action {
    height: 1.8vw;
    width: 7.5vw;
    font-size: 0.6vw;
    padding: 0.4vw 0;
    margin-top: 0.4vw;
}

.btn-outline-action.thick {
  background: var(--primary-color);
  color: #fff;
}

.btn-outline-action.thick:not(:disabled):not(.disabled):hover {
  /*background: transparent;*/
  /*color: var(--primary-color);*/
  
    font-weight: 700;
    font-size: 0.7vw;
    
    padding: 0.3vw 0;
}

.web-designer .upgradeable:hover{
  background: transparent !important;
  color: var(--primary-color)!important;
}

#modal-link .modal-content .btn:not(:disabled):not(.disabled):hover {
    background: var(--primary-color);
}





/* style for locked pages*/
.locked {
    background-image: url('../img/keylock.svg');
    background-repeat: no-repeat;
    background-position: center 190px;
    background-size: 38.8%;
}

.locked.statistics {
    background-position-y: 270px;
    background-size: 46%;
}

.locked .lockable {
    opacity: 0.35;
}

.locked .lockable .page-line {
    color: #5a5a5a;
}

.locked .lockable a,
.locked .lockable .btn,
.locked .lockable input,
.locked .lockable textarea,
.locked .lockable .input-group,
.locked .lockable .switch-candy,
.locked-switch {
    pointer-events: none;
}

.locked-switch a,
.locked .lockable .switch-candy a {
    background: #afafaf !important;
}

.locked-switch.switch-light.switch-candy input:checked ~ span span:first-child, 
.locked-switch.switch-light.switch-candy input:not(:checked) ~ span span:nth-child(2),
.locked .lockable .switch-light.switch-candy input:checked ~ span span:first-child, 
.locked .lockable .switch-light.switch-candy input:not(:checked) ~ span span:nth-child(2) {
    color: #939393;
}

.locked .lockable .btn:not(:disabled):not(.disabled).btn-outline-primary {
    background: #cfcfcf;
    border-color: #cfcfcf;
    color: #555;
    font-weight: var(--font-weight-bold);
    font-size: 1.5rem;
}

.locked .lockable .input-group.input-group-with-overlay > .input-group-prepend .input-group-with-svg > svg .symbol {
    fill: #bdbdbd !important;
}

.locked .lockable .nav.nav-tabs.bare .nav-link {
    color: #555;
}

.btn-upgrade {
    font-size: 1.5rem;
    padding: 0.5rem 3rem;
    letter-spacing: 0.2rem;
    min-width: 200px;
    font-weight: var(--font-weight-bold);
}

.statistics .page-line {
    margin: 5.5rem 0;
    font-size: 2.8rem;
}

.stats.switch-light.switch-candy {
    max-width: 340px;
}

.stats.switch-light.switch-candy > span {
    padding: 5px 0;
}

.stats.switch-light.switch-candy span span {
    font-size: 1.3rem;
}

.nav.nav-tabs.bare {
    margin-bottom: 50px;
    border-bottom-color: #eaeaea;
    display: inline-flex;
    margin-left: 7%;
}

#modal-window .nav.nav-tabs.bare {
    margin: 0;
}

.nav.nav-tabs.bare .nav-link {
    color: #6a6a6a;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 1.4rem;
    padding: .5rem 0 1.5rem 0;
}

.nav.nav-tabs.bare .nav-item ~  .nav-item {
    margin-left:9.5rem;
}

.nav-tabs.bare .nav-link:focus, 
.nav-tabs.bare .nav-link:hover {
    border-color: transparent;
}

.nav-tabs.bare .nav-item.show .nav-link, 
.nav-tabs.bare .nav-link.active {
    background-color: transparent;
    border: none;
    border-bottom: 3px solid var(--primary-color);
    color: #6a6a6a;
}

.charts {
    width: 100%;
    max-width: 1030px;
    padding-bottom: 5rem;
}

body.issue-statistics .charts {
    max-width: 960px;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.charts .tab-pane {
    height: 25.9vw;
    position: relative;
}



@media (max-width: 901px) {

.charts .tab-pane {
    min-height: 300px;
}

.nav.nav-tabs.bare {
    margin-bottom: 20px;
    border-bottom-color: #eaeaea;
    display: inline-flex;
    margin-left: 7%;
}

    
}

.charts svg.svg-icon-print {
    width: 32px;
    height: 32px;
    margin-right: 18.5%;
    margin-top: 1rem;
}

.charts svg.svg-icon-print .symbol {
    fill: #949494;
}

.publish-status {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.7vw;
    font-weight: var(--font-weight-light);
        margin-top: 1.3vw;
}

.green-dot {
    background: #00a651;
    display:block;
    width: 0.89vw;
    height: 0.89vw;
    margin-right: 0.4vw;
    border-radius: 100%;
}

.yellow-dot {
    background: #ffd200;
    display:block;
    width: 0.89vw;
    height: 0.89vw;
    margin-right: 0.4vw;
    border-radius: 100%;
}

.sales .switch-light {
    max-width: 340px;
    padding: 1.6rem 0 5.3rem 0;
}

.sales .switch-light.switch-candy > span {
    padding: 5px 0;
}

.sales .switch-light.switch-candy span span {
    font-size: 1.3rem;
}


@media (max-width: 901px) {
    @media (orientation: portrait) {
        .sales .switch-light {
            max-width: 300px;
            padding: 0.0rem 0 1.1rem 0;
        }

        
    }
    @media (orientation: landscape) {
        .sales .switch-light {
            max-width: 300px;
            padding: 1.0rem 0 1.0rem 0;
        }
    }
    
}



.locked.sales {
    background-position-y: 297px;
    background-size: 39%;
}

.locked.sales h1.earned {
    color: #5c5c5c;
}

body.plan .switch-light {
    max-width: 408px;
    width: 100%;
    margin: 9rem 0;
}

body.plan .switch-light.switch-candy > span {
    background: #2277c0;
    padding: 5px 0;
    border-radius: 22px;
    /*border-radius: 3rem;*/
}

body.plan .switch-light.switch-candy input:checked ~ span a,
body.plan .switch-candy a {
    /*border-radius: 3rem;*/
    border-radius: 20px;
    background: #0299ff !important;
}

body.plan .switch-candy a {
    height: calc(100% - 4px);
    right: calc(50% - 2px);
    margin: 2px;
}

body.plan .switch-light.switch-candy input ~ span span:first-child, 
body.plan .switch-light.switch-candy input:checked ~ span span:nth-child(2),
body.plan .switch-light.switch-candy input:checked ~ span span:first-child, 
body.plan .switch-light.switch-candy input:not(:checked) ~ span span:nth-child(2) {
    color: #fff;
    font-weight: var(--font-weight-regular);
    font-size: 1.3rem;
    letter-spacing:1px;
}

.switch-candy > .discount {
    position: absolute;
    width: 44px;
    height: 44px;
    background: url('../img/svg-icon-shamrock.svg');
    z-index: 100;
    top: -20px;
    right: -28px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
    padding: 5px;
    line-height: 1.2;
}

#custom-form {
    padding-top: 10rem;
}

#custom-form > .wrapper {
    max-width: 681px;
    width: 100%;
}



#custom-form .form-control {
    font-size: 1.5rem;
    padding: 1.2rem 1rem;
    
}


#custom-form .form-control::placeholder {
    color: #999999;
    font-weight: var(--font-weight-regular);
}
#custom-form .form-control::-ms-input-placeholder {
    color: #999999;
    font-weight: var(--font-weight-regular);
}

#custom-form.store-payment-form .form-control{
    font-size: 1.4rem;
    padding: 0.6rem 1rem
}
#custom-form.store-payment-form label.placeholder {
    font-size: 1.4rem;
    top: 17px;
}


#custom-form .custom-select {
    font-size: 1.5rem;
    height: calc(4.8rem + 2px);
}
#custom-form.store-payment-form .custom-select{
    font-size: 1.4rem;
    height: calc(3.3rem + 2px);
    padding: 0.5rem;
}
#custom-form.store-payment-form .btn{
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.8rem 1rem;
    min-width: 162px;
    letter-spacing: 0.05rem;
    /*background: transparent;*/
}

/*#custom-form.store-payment-form .btn:hover{
    background: #2277c0;
    color: white;
}*/
/*#custom-form.store-payment-form .custom-select option{
    padding-top: 0px;
}*/


#custom-form .custom-select:invalid {
    color: #999;
}

#custom-form .custom-checkbox {
    color: #999999;
}

#custom-form .form-control {
    margin-bottom: 1.4rem;
}

#custom-form .custom-checkbox .custom-control-label::before {
    border-color: #d4d4d4;
    border-radius: 1px;
    width: 1.75rem;
    height: 1.75rem;
    top: 1.0rem;
}

#custom-form .custom-checkbox .custom-control-label::after {
    width: 2.0rem;
    height: 2.0rem;
    top: 0.0rem;
    left: -0.1rem;
}

#custom-form .req {
    margin-top: 0.6rem;
}

#custom-form .terms {
    margin-top: 2.7rem;
}

#custom-form .buttons {
    margin-top: 6rem;
}

#custom-form .buttons .btn {
    min-width:193px;
}

label.placeholder {
    margin: 0;
    position: absolute;
    left: 50%;
    top: 25px;
    transform: translate(-50%,-50%);
    color: #999999;
    pointer-events: none;
}

label.placeholder.hide {
    display: none;
}

#payment-gateway-svg {
    pointer-events: none;
    position: absolute;
    top: 20px;
    right: -35px;
    overflow: hidden;
    width: 430px;
    height: 430px;
}

#payment-gateway-svg > svg {
    transform: scaleX(-1) scale(1.4) rotate(190deg);
    pointer-events: none;
    width: 100%;
    height: 100%;
}

body.thank-you h2.page-line {
    font-size: 4.1rem;
    margin: 11.9rem 0 2.8rem 0;
}

body.thank-you p.page-info {
    font-size: 2rem;
    max-width: 515px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
    letter-spacing: 0.055rem;
}

body.thank-you p.page-info-secondary {
    color: var(--tertiary-color);
    line-height: 2;
    font-size: 1.8rem;
    max-width: 490px;
    margin: 13.1rem auto 2.6rem auto;
    text-align: center;
    letter-spacing: 0.055rem;
}

body.settings-store-payment .wrapper {
    width: 100%;
    max-width: 530px;
}


body.settings-store-payment .wrapper .logo {
    max-width: 150px;
    padding: 2.7rem 0 6.2rem 0;
}

body.settings-store-payment h2.page-line {
    font-size: 2rem;
    margin-top: 8.7rem;
    letter-spacing: 0.05rem;
}

body.settings-store-payment .form-group {
    margin: 0;
}

body.settings-store-payment .form-row {
    margin-bottom: 2.3rem;
}

body.settings-store-payment .form-control {
    padding: 0.7rem 1rem;
    font-size: 1.4rem
}

body.settings-store-payment .form-control::placeholder {
    color: #999;
    font-weight: var(--font-weight-regular);
}

body.settings-store-payment .form-control::-ms-input-placeholder {
    color: #999;
    font-weight: var(--font-weight-regular);
}

body.settings-store-payment .custom-select {
    padding: 0.7rem 1rem;
    font-size: 1.4rem;
    height: calc(3.5rem + 2px);
}

body.settings-store-payment .btn-outline-primary {
    margin-top: 1.1rem;
}

body.settings-store-payment .btn:not(:disabled):not(.disabled).btn-outline-primary, 
body.settings-store-payment .btn-outline-primary.disabled, .btn-outline-primary:disabled,
body.settings-store-payment .btn:not(:disabled):not(.disabled).btn-outline-primary {
    min-width: 152px;
    padding: 0.75rem 2.7rem;
    font-size: 1.4rem;
}

body.settings-store-payment .modal-content h5 {
    font-size: 3.2rem;
    margin-top: -1rem;
    margin-bottom: 1.8rem;
}

body.settings-store-payment .modal .modal-dialog {
    max-width: 1350px;
}

body.settings-store-payment .modal .modal-body {
    padding: 2rem 9rem 4rem 9rem;
}

body.settings-store-payment .modal .modal-body img {
    width: 100%;
    border: 1px solid var(--primary-color);
}

.info-icon {
    width:18px;
    height: 18px;
    border: 1px solid #b7b7b7;
    border-radius: 50%;
    margin: 0.9rem 0 0 0.8rem;
    display: block;
    cursor: pointer;
}

.info-icon > svg {
    width: 100%;
    height: 100%;
    display: block;
}

.info-icon > svg > * {
    fill: #b7b7b7;
}

.settings-row {
    margin-top: 3.2rem;
}





@media (min-width: 991px) {
    .navigation-sidebar {
        margin-top: 12.8rem;
        max-width: 174px;
        width: 100%;
    }
    
}

.navigation-sidebar .btn {
    min-width: auto;
    font-size: 1rem;
    padding: 0.75rem 0.75rem;
    margin: 0 0.5rem 2.2rem 0.5rem;
    font-weight:var(--font-weight-regular);
    width: 9rem;
}


@media (min-width: 992px) {
    .navigation-sidebar .btn {
        font-size: 1.4rem;
        width: 16.5rem;
        margin: 0 0 2.2rem 0;
    }
}

@media (max-width: 991px) {
    .navigation-sidebar {
        margin: auto;
    }

    .settings-row {
        margin-top: 1.2rem;
    }
    
    @media (orientation: portrait) {
       .navigation-sidebar .btn {
            font-size: 1rem;
            width: 9.5rem;
            margin: 0 0.3rem 1.2rem 0.3rem;
        }
    }
}



body.page-settings h2.page-line {
    margin: 0 0 6.1rem 0;
    text-align: center;
}

@media (max-width: 991px) {
    
    body.page-settings h2.page-line {
        margin: 0 0 2.1rem 0;
        text-align: center;
    }
}


@media (max-width: 767px) {
    body.page-settings h2.page-line.md-smaller {
        font-size: 1.6rem;
        margin: 1.0rem 0 0 0;
    }
}

body.page-settings #custom-form .form-control {
    font-size: 1.4rem;
    padding: 0.6rem 1rem;
}

body.page-settings #custom-form .custom-select {
    height: calc(3.3rem + 2px);
    padding: 0 1rem;
    margin-bottom: 1.4rem;
}

body.page-settings label.placeholder {
    top: 19px;
    white-space: nowrap;
}

body.page-settings #custom-form .form-control::placeholder{
    font-weight: var(--font-weight-light);
}

body.page-settings #custom-form .buttons .btn {
    min-width: 150px;
    padding: 0.75rem 0.75rem;
    font-size: 1.2rem;
    margin-bottom: 1.4rem;
}

body.page-settings #custom-form .buttons {
    margin-top: 1.2rem;
}

body.page-settings.login #custom-form .wrapper {
    max-width: 512px;
}

body.page-settings .wrapper .logo {
    max-width: 150px;
    padding: 2.7rem 0 6.2rem 0;
}

body.page-settings.modal-content h5 {
    font-size: 3.2rem;
    margin-top: -1rem;
    margin-bottom: 1.8rem;
}

body.page-settings .modal .modal-dialog {
    max-width: 1350px;
}

body.page-settings .modal #force-cancel-modal.modal-dialog {
    max-width: 800px;
}

body.page-settings .modal #force-cancel-modal.modal-dialog .modal-header h5 {
    color: #fb5b61;
}

body.page-settings .modal .modal-body {
    padding: 1rem 0.5rem;
}

@media (min-width: 768px) {
    body.page-settings .modal .modal-body {
        padding: 2rem 9rem 4rem 9rem;
    }
}

body.page-settings .modal .modal-body img {
    width: 100%;
    border: 1px solid var(--primary-color);
}

body.page-settings.payment #custom-form > .wrapper {
    max-width: 560px;
}

body.page-settings.payment .info-icon {
    width: 22px;
    height: 22px;
    margin-top: 0.7rem;
}

@media (max-width: 767px) {
    body.page-settings.payment .info-icon {
        margin-left: 0;
    }
}

body.page-settings.payment .logo {
    max-width: 120px;
    padding: 2rem 0;
}
@media (max-width: 991px) {
  @media (orientation: landscape) {
            body.page-settings.payment .logo {
        padding: 0 0 2.4rem 0;
        margin-top: 02rem;
    }
        }
}
    


body.page-settings.payment .form-group {
    margin-bottom: 2.2rem;
}

@media (max-width: 767px) {
    body.page-settings .wrapper {
        padding: 0 0.75rem;
    }
}

body.page-settings.payment #custom-form .buttons {
    margin-top: 2.8rem;
}

@media (max-width: 991px) {
    body.page-settings.payment #custom-form .buttons {
        margin-top: 0.2rem;
    }
}

body.page-settings.plan .wrapper,
.is-tooltip .wrapper {
    max-width: 700px;
    background: #fff;
    border-radius: 10px;
    margin: auto;
}

.is-tooltip .wrapper {
    border-radius: 13px;
    margin-top: 1vw;
}

body.page-settings.plan .wrapper ul,
.is-tooltip .wrapper ul {
    columns: 2;
    column-gap: 112px;
    padding: 19px;
    list-style: none;
    color: #565656;
}


@media (min-width:992px) {
    .mw-50 {
        min-width: 50%;
        margin-left: 60px;
    }
}



.is-tooltip .wrapper ul {
    columns: 2;
    padding: 0 1.35vw 1.35vw 1.35vw;
    column-gap: 5.83vw;
}

body.page-settings.plan .wrapper li,
.is-tooltip .wrapper li {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05rem;
    line-height: 2.2rem;
}




.is-tooltip .wrapper li {
    font-size: 0.78vw;
    letter-spacing: 0.026vw;
}

body.page-settings.plan .wrapper li::before,
.is-tooltip .wrapper li::before {
    content: "\2022";
    color: var(--primary-color);
    display: inline-block;
    width: 14px;
    margin-right: 12px;
    font-size: 2rem;
}

.is-tooltip .wrapper li::before {
    width: 0.73vw;
    margin-right: 0.625vw;
    font-size: 1.04vw;
}





@media (max-width: 991px) {
    
        body.page-settings.plan .wrapper ul {
            columns: 2;
            column-gap: 112px;
            padding: 15px;
        }
        
        
        @media (orientation: portrait) {
            body.page-settings.plan .wrapper ul {
               columns: 1; 
            }
        }
        
        @media (orientation: landscape) {
/*            .mw-50 {
                min-width: 75%;
                margin-left: 20px;
            }*/
            
            body.page-settings.plan .wrapper li,
            .is-tooltip .wrapper li {
                font-size: 1.3rem;
                font-weight: 300;
                letter-spacing: 0.05rem;
                line-height: 2.2rem;
            }

            body.page-settings.plan .wrapper li::before,
            .is-tooltip .wrapper li::before {
                content: "\2022";
                color: var(--primary-color);
                display: inline-block;
                width: 14px;
                margin-right: 5px;
                font-size: 2rem;
            }

        }
}       
        

body.page-settings.plan h2.page-line {
    margin: 0 0 3.5rem 0;
}


@media (max-width: 991px) {
    body.page-settings.plan h2.page-line {
        margin: 0 0 0.5rem 0;
    }
}

body.page-settings.plan h3,
.is-tooltip h3 {
    text-align:center;
    text-transform: none;
    font-size: 2.4rem;
    color: #333333;
    letter-spacing: 0.35rem;
    margin: 0;
    font-weight: var(--font-weight-bold);
}

.is-tooltip h3 {
    font-size: 1.25vw;
    padding: 1rem 0;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
}

.is-tooltip .colorful {
    margin-top: 0;
    width: 8.75vw;
}

@media (max-width: 768px) {
    body.page-settings:not(.plan) h3 {
        display: none;
    }
}

body.page-settings.plan .small-buttons {
    max-width: 700px; 
    margin: 0 auto;
    text-align: right;
}

body.page-settings.plan .small-buttons > a {
    color: #565656;
    font-size: 1.3rem;
    margin: 0 0.5rem;
    cursor: pointer;
}

body.page-settings.plan .buttons {
    margin-top: 34px;
}

body.page-settings.plan .buttons .btn {
    font-size: 1.2rem;
    padding: 0.8rem 1rem;
    min-width: 162px;
}

body.page-settings .table-custom .btn {
    width: 10rem;
    font-size: 1.1rem;
}

.colorful {
    height: 1px;
    width: 168px;
    background: linear-gradient(to right, #4048b7, #41a9ff);
    margin:7px auto 9px auto;
}

.mobile-designer .designer-container {
    --designer-app-bg-color:none;
}

.mobile-designer .designer-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--designer-app-bg-color);
    z-index: 0;
    pointer-events: none;
}

.mobile-designer .designer-container > * {
    position: relative;
    z-index: 1;
}

.mobile-designer .btn-outline-action{
    height: 1.8vw;
    width: 7.5vw;
    font-size: 0.6vw;
    padding: 0.4vw 0;
    margin-top: 0.4vw;
}

.mobile-designer .upgradeable:hover{
  background: transparent !important;
  color: var(--primary-color)!important;
}

#notifications-form-row .btn:not(:disabled):not(.disabled).btn-outline-primary {
    padding: 0.6rem 1rem;
    min-width: 140px;
}

#add-issue-wrapper {
    display: inline-block;
}

#add-issue.btn {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 18.23vw;
    padding: 0.79vw 1.04vw;
    font-size: 1.56vw;
    letter-spacing: 0.1vw;
}

#add-issue.btn.highlighted {
    pointer-events: none;
    z-index: 1010;
}

@media (min-width: 1000px) {
    #add-issue.btn {
        min-width: 175px;
        padding: 0.75rem 1rem;
        font-size: 1.5rem;
        letter-spacing: 0.1rem;
    }
}

/* tutorial */
#tutorial.tutorial-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999;
    color: #fff;
    overflow: auto;
}

#tutorial .initial p {
    line-height: 1.4;
}

#tutorial p {
    margin: 0;
    color: #222;
    font-size: 1.05vw;
    font-weight: var(--font-weight-regular);
    letter-spacing: 0.05rem;
    line-height: 1.25;
}

#tutorial div.step:not(.initial) p {
    margin: 0;
    font-size: 1.05vw;
    font-weight: var(--font-weight-regular);
    
    letter-spacing: 0.05rem;
    line-height: 1.75;
    padding: 1.0vw;
    position: relative;
    padding-top: 3.0vw;
    text-align: center;
}

#tutorial p + p {
    margin-top: 1.45vw;
}

#tutorial .buttons {
    margin-top: 1.0vw;
    padding: 0;
}

#tutorial .initial .buttons {
    margin-top: 2.78vw;
}

#tutorial .btn-tutorial {
    border: 1px solid #fff;
    color: #fff;
    background: var(--primary-color);
    text-transform: lowercase;
    border-radius: 2rem;
    padding: 0.1rem 0.2rem;
    line-height: 2.2rem;
    min-width: 4.075vw;
    font-size: 0.8vw;
    vertical-align: middle;
    font-weight: 300;
    line-height: 1.45;
    float: left;
}

#tutorial div.step.initial .btn-tutorial {
    float: none;
}

#tutorial .btn-tutorial:focus,
#tutorial .btn-tutorial:hover {
    cursor: pointer;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}

#tutorial .btn-tutorial + .btn-tutorial {
    margin-left: 0.525vw;
}

#tutorial .btn-tutorial.narrow {
    min-width: auto;
    width: 2.56vw;
}

#tutorial .btn-tutorial > svg {
    max-height: 1.05vw;
    height: 100%;
    display: block;
    margin: 1px auto;
}

#tutorial .btn-tutorial > svg > * {
    fill: #000;
    stroke: #000 !important;
}


#tutorial .step {
    background: rgba(255, 255, 255, 1.0);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0.05vw 0.88vw 1.15vw 0.88vw;
    text-align: center;
    border-radius: 13px;
    max-width: 700px;
    position: relative;
    display: inline-block;
}

#tutorial .step.initial {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3.03vw 2.78vw 3.13vw 2.78vw;
}

#tutorial .step#step-7{
    max-width: 450px;
}

#tutorial .pointer {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    margin: 0 auto;
    width: 2.25vw;
    height: 2.25vw;
}

#tutorial .pointer > svg {
    width: 100%;
    height: 100%;
}

#tutorial .pointer > svg > * {
    fill: #b9b9b9;
}

#tutorial .pointer.up {
    top: calc(-2.25vw + 0.2vw);
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
}

#tutorial .pointer.left {
    left: calc(-2.25vw + 0.2vw);
    transform: translateY(-50%);
    right: auto;
}

#tutorial .pointer.right {
    right: calc(-2.25vw + 0.2vw);
    transform: translateY(-50%);
    left: auto;
}

#tutorial .pointer.down {
    bottom: calc(-2.25vw + 0.2vw);
    left: 50%;
    transform: translateX(-50%);
    top: auto;
}

#tutorial .pointer.up > svg {
    transform: rotate(180deg);
}

#tutorial .pointer.left > svg {
    transform: rotate(90deg);
}

#tutorial .pointer.right > svg {
    transform: rotate(270deg);
}

#tutorial-start-button {
    position: absolute;
    right: 5.3vw;
    bottom: -2.9vw;
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
    width: 1.46vw;
    height: 1.46vw;
    cursor: pointer;
    z-index: 999;
}

@media (max-width: 991px) {
    #tutorial-start-button {
        right: 16px;
        bottom: -32px;
        width: 30px;
        height: 30px;
    }
}

#tutorial-start-button > svg {
    display: block;
    width: 100%;
    height: 100%;
}

#tutorial-start-button:hover > svg > * {
    fill: var(--primary-color);
}

#tutorial-start-button:hover > svg > .symbol {
    fill: #fff;
}

/* end tutorial */

.input-group.highlighted {
    z-index: 1010;
    pointer-events: none;
}

.input-group.highlighted > input {
    border: 1px solid var(--primary-color) !important;
    background: transparent !important;
    color: var(--primary-color);
}

.input-group.highlighted > .input-group-append > .btn {
    border: 1px solid var(--primary-color) !important;
    background: transparent !important;
}

#rotate-screen {
    width: 123px;
    display: block;
    margin: 0 auto;
}

.rotate-screen-text {
    font-size: 2rem;
    margin-top: 3.3rem;
    padding-bottom: 6rem;
}

input#domain-name{
    text-align: right;
}

#modal-billing-notice .modal-dialog {
    max-width: 863px;
}

#modal-billing-notice .modal-header h5 {
    color: #fb5b61;
    text-transform: uppercase;
    font-size: 2.1rem;
    margin-top: -1.3rem;
}

#modal-billing-notice .modal-body p {
    color: #000;
    font-size: 1.7rem;
}

#modal-billing-notice .modal-footer {
    margin: 2.9rem 0 1.1rem 0;
}

#modal-billing-notice .modal-footer .btn.btn-outline-primary {
    border-color: #6c6c6c;
    color: #5a6066;
    text-transform: none;
    font-size: 1.3rem;
    min-width: 150px;
}

#modal-billing-notice .modal-footer .btn.btn-outline-primary:hover {
    background-color: #5a6066;
    border-color: #6c6c6c;
    color: #fff;
}

#app-published > .modal-dialog {
    max-width: 720px;
}

.web-designer,
.mobile-designer,
.interactivities {
    overflow-x: hidden;
}

/*FORCED STYLES FOR WEBDESIGN*/
/*.web-designer nav#main-navigation{
    min-height: 10vh;
}*/
.web-designer h2.page-line{
    line-height: 5vh;
    font-size: 2.0rem;
    margin: 0;
    font-weight: 400;
}
.web-designer .container-fluid.has-header{
    height: 80vh;
}
.web-designer #designer-preview.for-pc{
    width: 100%;
    max-width: 62vw;
    margin: 0 auto;
}
.web-designer #designer-pc{
    max-width: 100%;
    max-height: 34.8vw;
}
.web-designer #designer-pc #designer-pc-image {
    position: absolute;
    top: -7.7vw;
    left: -10.3vw;
    width: 132.925%;
    z-index: -1;
}


/*FORCED STYLES FOR MOBILE DESIGN*/
/*.mobile-designer nav#main-navigation{
    min-height: 10vh;
}*/
.mobile-designer h2.page-line{
    line-height: 5vh;
    font-size: 2.0rem;
    margin: 0px;
    font-weight: 400;
}
.mobile-designer .container-fluid.has-header{
    height: 82vh;
}
.mobile-designer #designer-preview.for-tablet.designer-tablet-h{
        max-width: 49vw;
}
.mobile-designer #designer-preview.for-tablet.designer-tablet-v{
    width: 30vw;
}


.mobile-designer #designer-tablet-h{
    max-width: 43.50vw;
    max-height: 32.7vw;
}

.mobile-designer #designer-tablet-h #designer-tablet-h-image {
    position: absolute;
      top: -2.62vw;
    left: -4.83vw;
    width: 122.9%;
    z-index: -1;
}

.mobile-designer #designer-tablet-v {
    font-family: 'Lato', sans-serif !important;
    position: relative;
    max-width: 24.0vw;
    width: 100vw;
    max-height: 32.0vw;
    height: 100vh;
    margin: 11.5% 8%;
}
.mobile-designer #designer-tablet-v #designer-tablet-v-image {
    position: absolute;
    top: 2.27vw;
    left: -7.55vw;
    width: 163.5%;
    transform: rotate(90deg);
}

#designer-phone-v{
    max-width: 16vw;
    max-height: 28.1vw;
    margin: 13% 7%;
}

#designer-phone-v #designer-phone-v-image {
    position: absolute;
    top: -5.5vw;
    left: -1.3vw;
    width: 116.6%;
    z-index: -1;
}

.plan .btn-outline-primary,
.btn:not(:disabled):not(.disabled).btn-outline-primary{
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    min-width: 150px;
    text-align: center;
    text-transform: uppercase;
    padding: 1.0rem 1rem;
    border-radius: 3rem;
}

div#tablet-nav-h div#navigation-icon-logout{
    padding-right: 1.65vw !important;
}
div#tablet-nav-h div#navigation-icon-settings{
    padding-left: 1.5vw !important;
}
div#tablet-nav-v div#navigation-icon-logout{
    padding-right: 0vw !important;
    margin-right: 1.0vw;
}
div#tablet-nav-v div#navigation-icon-settings{
    padding-left: 0vw !important;
    margin-left: 1.5vw;
}

#designer-phone-v .designer-navigation-icon-menu {
    height: 0.9vw;
}
#designer-phone-v .show-when-paid .name{
    width: 65%;
}
#designer-phone-v .show-when-paid .price{
    width: 35%;
}

#designer-tablet-h .current-issue-title .issue-price{
    font-weight: 400;
}

#designer-tablet-v .current-issue-title .issue-price{
    font-weight: 400;
}

polygon.forcenofill{
    fill: none!important;
}

#tutorial .tutorial-next{
    left: calc(50% - 2.5vw);
    margin: 0px !important;
    position: absolute;
    font-weight: 400;
    padding: 0.2vw 1vw 0.2vw 1vw;
    text-transform: uppercase;
    height: 1.6vw;
    width: 5vw;
    letter-spacing: 0.025vw;
    
}

#tutorial .tutorial-next:hover{
    border: 1px solid #fff;
}

.btn-tutorial-close{
   
    z-index: 9999;
    border-radius: 50%;
    width: 1.2vw;
    height: 1.2vw;
    right: -0.5vw;
    border: 0px;
    margin: 0px !important;
    position: relative;
    float:right;
    top: 0.25vw;
    color: #000;
    background: transparent;
    line-height: 1vw;
    font-weight: 300;
    font-size: 1vw;
    padding: 0px;
    cursor: pointer;
    background: transparent;
}

.btn-tutorial-close:hover{
    border: 1px solid var(--primary-color);
    background: transparent;
}

#tutorial .btn-tutorial-back{
    max-width: 1.6vw;
    max-height: 1.6vw;
    min-width: 1.6vw;
    max-width: 1.6vw;
    width: 1.6vw;
    height: 1.6vw;
    padding: 0px;
    background: transparent !important;
}

.input-group-number {
    position: relative;
}

.input-group-number.disabled {
    pointer-events: none;
}

.input-group-number > .increment, 
.input-group-number > .decrement {
    position: absolute;
    font-size: 0;
    color: var(--tertiary-color);
}

.input-group-number > .increment:hover, 
.input-group-number > .decrement:hover {
    cursor: pointer;
}

.input-group-number.disabled > .increment, 
.input-group-number.disabled > .decrement {
    color: #e4e4e4;
}

.input-group-number > .increment {
    top: 9px;
    right: 7px;
}

.input-group-number > .increment::after {
    display: inline-block;
    width: 0;
    height: 0;
    content: "";
    border-top: 0;
    border-right: 7px solid transparent;
    border-bottom: 7px solid;
    border-left: 7px solid transparent;
}

.input-group-number > .decrement {
    top: 20px;
    right: 7px;
}

.input-group-number > .decrement::after {
    display: inline-block;
    width: 0;
    height: 0;
    content: "";
    border-top: 7px solid;
    border-right: 7px solid transparent;
    border-bottom: 0;
    border-left: 7px solid transparent;
}

.input-group-number.disabled input {
    color: #e4e4e4;
}

.designer-sidebar .btn.btn-designer:hover .symbol,
.designer-sidebar .btn.btn-designer.active .symbol,
.designer-sidebar .btn.btn-designer.active-colorpicker .symbol,
.designer-sidebar .btn.btn-designer.active-sidebar .symbol {
    fill: white;
}


.designer-sidebar .btn:not(:disabled):not(.disabled):hover,
.designer-sidebar .btn:not(:disabled):not(.disabled).active, 
.designer-sidebar .btn:not(:disabled):not(.disabled):active, 
.designer-sidebar .btn:not(:disabled):not(.disabled).active-colorpicker, 
.designer-sidebar .btn:not(:disabled):not(.disabled).active-sidebar, 
.designer-sidebar .show > .btn-primary.dropdown-toggle {
    background: var(--primary-color) !important;
    color: var(--active-color);
    box-shadow: none;
    border-color: var(--primary-color);
}




.colorpickle .slider {
    width: 100%;
    margin-top: 6px;
    cursor: ew-resize;
}

.disabled-click {
    pointer-events: none;
}

.disabled-click .btn,
.disabled-click #issues-featured-top-section .input-group.input-group-with-overlay > .input-group-append .btn, 
.disabled-click #issues-featured-top-section .input-group.input-group-with-overlay > .input-group-prepend .btn {
    border-color: #d4d4d4;
    color: #d4d4d4;
}

.disabled-click .btn svg .symbol {
    fill: #d4d4d4;
}

.disabled-click .switch-candy a,
.disabled-click .switch-light.switch-candy input:checked ~ span a {
    background-color: #d4d4d4 !important;
}

.disabled-click .switch-light.switch-candy input:checked ~ span span:first-child, 
.disabled-click .switch-light.switch-candy input:not(:checked) ~ span span:nth-child(2) {
    color: #d4d4d4;
}

.plandisabled{
    opacity: 0.35;
    pointer-events: none;
    cursor: auto;
    
}

.plandisabled a{
    pointer-events: none;
    cursor: auto;
    
}


.planenabled{
    /*opacity: 1.0;*/
}


.planeselected{
        transform: scale(1.1) !important;
        border: 1px solid var(--primary-color);
    /*box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.39);*/
-webkit-transform:scale(1.1) !important; 
-moz-transform:scale(1.1) !important; 
-o-transform:scale(1.1) !important; 
}

.modal-content button.close {
    background:#fff url('../img/popup_close.svg') no-repeat center center;
    background-size: 70%;
}
.modal-content button.close span{
    display: none;
}


.modal-header button.close {
    background:#fff url('../img/popup_close.svg') no-repeat center center;
    background-size: 70%;
}
.modal-header button.close span{
    display: none;
}


.modal-content ::-webkit-scrollbar {
    width: 10px;
}

.modal-content ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.4); 
    border-radius: 8px;
    -webkit-border-radius: 8px;
}

.modal-content ::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(200,200,200,0.8); 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}

a.export > svg {
    width: 25px;
    height: 25px;
}

.container-fluid .btn-upgrade:not(:disabled):not(.disabled):hover{
    font-weight: var(--font-weight-black) !important;
    font-size: 1.6rem;
    padding: 0.4rem 3rem;
}

#custom-form.store-payment-form .btn:hover{
    font-weight: var(--font-weight-black) !important;
    font-size: 1.25rem;
}


a.export{
    fill: #6a6a6a;
        float: right;
    margin-right: 2.5vw;
    margin-top: 0.5rem;
}

/* modal sidebar style */

.modal-sidebar {
    position: absolute;
    top: 102px;
    right: 0;
    bottom: auto;
    left: auto;
    width: 325px;
    height: auto;
    padding-right: 0 !important;
}

.modal-sidebar.left {
    right: auto;
    left: 0;
    bottom: 0;
}

.modal-sidebar.right {
    right: 12px;
    left: auto;
    bottom: 0;
}

.modal-sidebar > .modal-dialog {
    position: absolute;
    top: 0;
    right: -325px;
    margin: 0;
    width: 100%;
    max-height: 100%;
    transition: 1s;
    
    
    background-color: #353535;
    height: 100%;
    box-shadow: 1px 0 5px -3px #88888899;
}

.modal-sidebar.left > .modal-dialog {
    left: -325px;
    right: auto;
}

.modal-sidebar.right > .modal-dialog {
    left: auto;
    right: -325px;
}

.modal-sidebar.fade .modal-dialog {
    transition: left 0.3s ease-out, right 0.3s ease-out;
    right: -325px;
    transform: none;
}

.modal-sidebar.left.fade .modal-dialog {
    left: -325px;
    right: auto;
}

.modal-sidebar.right.fade .modal-dialog {
    left: auto;
    right: -325px;
}

.modal-sidebar.fade.show .modal-dialog {
    right: 0;
}

.modal-sidebar.left.fade.show .modal-dialog {
    left: 0;
    right: auto;
}

.modal-sidebar.right.fade.show .modal-dialog {
    left: auto;
    right: 0;
}

.modal-sidebar > .modal-dialog > .modal-content {
    box-shadow: none;
    border-radius: 0;
    border: 0;
    background-color: transparent;
}

.modal-sidebar > .modal-dialog > .modal-content > .modal-header {
    border-radius: 0;
    padding: 0;
}
.modal-sidebar > .modal-dialog >  .modal-header {
    border-radius: 0;
    padding: 0;
    
    pointer-events: auto;
}

.modal-sidebar > .modal-dialog > .modal-content > .modal-body {
    padding: 1rem;
    padding-top: 0px;
}

.modal-sidebar > .modal-dialog > .modal-content h5 {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0;
    margin: 15px 0 0 0;
    font-weight: var(--font-weight-regular);
    text-align: left;
    width: 240px;
}

.modal-sidebar > .modal-dialog > .modal-content > .modal-body .dropzone .upload-preview-item {
    width: 242px;
    border-radius: 0;
    /*border-color:*/
    background-color: #666;
}



.modal-sidebar > .modal-dialog button.close {
    position: absolute;
    top: 9px;
    left: 5px;
    background: transparent url('../img/svg-icon-hide.svg') no-repeat center center;
    background-size: 100%;
    border: 0;
    border-radius: 0;
    width: 3.5rem;
    height: 3.5rem;
    transform: rotate(90deg);
    
}

.modal-sidebar .colorpickle{
    background-color: transparent !important;
}
.modal-sidebar .colorpickle .hexValue{
    color: #fff !important;
    border-color: #fff;
    float: right;
}

.modal-sidebar .colorpickle .sliderWrapper.aWrapper label{
       color: #fff !important; 
}

.modal-sidebar .dropzone .upload-preview-item-dotted .help-text, .modal-body .dropzone .upload-preview-item .help-text,
.modal-sidebar .dropzone .upload-preview-item-dotted .or-drop-here, .modal-body .dropzone .upload-preview-item .or-drop-here{
    color: #fff;
}


.modal-sidebar .btn:not(:disabled):not(.disabled).btn-outline-primary  {
    /*padding: 0.8rem 2rem;*/
/*    min-width:130px;
    color: var(--primary-color);
    font-weight: var(--font-weight-black);
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    border-radius: 3rem;*/
    background-color: #fff;
    border: 0px;
}


.modal-sidebar.left > .modal-dialog button.close {
    left: auto;
    right: 5px;
    transform: rotate(-90deg);
    z-index: 9999;
}

.modal-sidebar .modal-footer {
    margin: 0 0 .5rem 0;
}

.modal-sidebar .modal-body .form-control {
    max-width: 242px;
    border-radius: 0px;
    margin: 0 auto;
}

.modal-sidebar .modal-body .ql-editor p {
    font-size: 13px;
}

.custom-checkbox.dot {
    display: inline-block;
    padding: 0;
    width: 5.3%;
    height: 0;
    padding-bottom: 5.3%;
    min-height: 0 !important;
}

.custom-checkbox.dot .custom-control-label {
    cursor: pointer;
    margin: 0;
    width: 100%;
    height: 100%;
}
.custom-checkbox.dot .custom-control-input {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.custom-checkbox.dot .custom-control-label::before,
.custom-checkbox.dot .custom-control-label::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.custom-checkbox.dot .custom-control-label::before {
    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

.custom-checkbox.dot .custom-control-input:checked ~ .custom-control-label::after {
    background-image: none;
    width: 100%;
    height: 100%;
    padding: 20%;
    background: var(--primary-color);
    border-radius: 50%;
    background-clip: content-box;
}

#designer-bg-use-color-wrapper,
#designer-bg-use-image-wrapper {
    position: absolute;
    top: 50%;
    right: -7.3%;
    transform: translateY(-50%);
}

.hide-color::before {
    opacity: 0;
}

.hide-image {
    background-image: none !important;
}

#invoices-row {
    max-width: 990px;
    margin: 5rem auto 0 auto;
}

.dropzone.btn:not(:disabled):not(.disabled).btn-outline-primary.btn-alt {
    min-width: 181px;
    padding: 0.75rem 2.7rem;
    border-radius: 3rem;
    position: relative;
}

.dropzone.btn .upload-preview-item {
    border: 0;
    padding: 0;
    width: 100%;
    height: auto;
    display: block;
}

.dropzone.btn .upload-preview-item.dz-processing > span {
    display: none;
}

.dropzone.btn .upload-preview-item > .progress-wrapper {
    display: none;
    position: static;
    width: 100%;
    height: 5px;
    margin: 0.8rem 0;
}

.dropzone.btn .upload-preview-item > .progress-wrapper > .progress {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
}

.dropzone.btn .upload-preview-item.dz-processing {
    background: none;
}

.dropzone.btn .upload-preview-item.dz-processing > .progress-wrapper {
    display: block;
}

.wysiwyg {
    white-space: pre-wrap !important;
}

.mobile-designer .ql-editor{
    padding: 5px !important;
    max-height: 170px;
    min-height: 170px;
}

span.hexSpanName {
    float: left;
    font-size: 1.2rem;
    text-transform: uppercase;
    line-height: 22px;
    padding-top: 2px;
}

#issues-list .list-issue-highlighted {
    visibility: hidden;
}

#issues-list .prevent-hover .list-issue.active,
#issues-list .prevent-hover .list-issue:hover {
    background: none;
}

.accordion {
    background: #39434f;
    border-right: 1px solid #dfdfdf;
    color: #fff;
}

.accordion .card {
    background: #4f5e6d;
}

.accordion .card {
    border: 0;
    border-top: 1px solid #dfdfdf;
    
    cursor: pointer;
}





.accordion .card:first-of-type {
    border-top: 0;
}

.accordion .card:last-of-type {
    border-bottom: 1px solid #dfdfdf;
}

.accordion .card.hidden {
    display: none !important;
}


.accordion .card-header {
    border: none;
    background-color: #39434f;
    padding: 0;
    
}

@media (min-width: 901px) {
    .accordion .card-header {
        padding: 0;
    }
}
.accordion .card-header:hover {
    background-color: #4f5e6d;
}

.accordion .card-header.active {
    background: none;
}

.accordion .card-header h2 {
    display: block;
    font-size: 0;
}

.accordion .card-header h2 .btn {
    color: #fff;
    text-transform: uppercase;
    font-weight: var(--font-weight-bold);
    padding: 0;
    width: 100%;
    text-align: left;
    position: relative;
    font-size: 1.5vw;
    letter-spacing: 0.08vw;
    line-height: 1.5;
}

@media (min-width: 901px) {
    .accordion .card-header h2 .btn {
        font-size: 0.86vw;
        letter-spacing: 0.04vw;
        padding: 0.9vw 1.75vw;
        line-height: 21px;
    }
}

@media (max-width: 900px) {
    @media (orientation: landscape) {
        .accordion .card-header h2 .btn {
            padding: 1.6vw 3.5vw 1.6vw 35px;
            line-height: 1.77;
        }
    }
    @media (orientation: portrait) {
        .accordion .card-header h2 .btn {    
            padding: 1.74vw 3.5vw 1.74vw 1.6vw;
            line-height: 1.6;
        }
    }
}

.accordion .card-header h2 .btn:after {
    position: absolute;
    top: 50%;
    right: 1.75vw;
    content: '';
    font-size: 2.2vw;
    line-height: 1;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    
    background: url(../img/designer-arrow-down.svg) center no-repeat;
    background-size: contain;
    width: 20px;
    height: 38%;
    transform: translateY(-50%);
}

@media (min-width: 901px) {
    .accordion .card-header h2 .btn:after {
        height: 21px;
    }
}

@media (max-width: 900px) {
    .accordion .card-header h2 .btn:after {
        right: 3.5vw;
    }
}

.accordion .card-header.active h2 .btn:after {
    content: '';
    background: url(../img/designer-arrow-up.svg) center no-repeat;
    background-size: contain;
    width: 20px;
    height: 100%;
}

.accordion .card-header h2 .btn:not(:disabled):not(.disabled):hover,
.accordion .card-header h2 .btn:not(:disabled):not(.disabled):active,
.accordion .card-header h2 .btn:not(:disabled):not(.disabled):focus {
    background: transparent;
    text-decoration: none;
}

.accordion .card-header h2 .btn:not(:disabled):not(.disabled):hover {
    background: transparent;
    text-decoration: none;
/*    font-size: 0.95vw;*/
}

.accordion .card-body {
    position: relative;
    padding: 1.9vw 3.5vw;
    font-size: 1.56vw;
}

@media (min-width: 901px) {
    .accordion .card-body {
        padding: 0.95vw 1.75vw;
        font-size: 0.78vw;
    }
}

.accordion .card-body span.label {
    line-height: 1.5;
    height: 2.5vw;
    width: 50%;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 901px) {
    .accordion .card-body span.label {
        height: 1.25vw;
    }
}

.accordion .colorpicker {
    width: 100%;
    height: 23.1vw;
    margin: 1.04vw 0 6.25vw 0;
}

@media (min-width: 901px) {
    .accordion .colorpicker {
        height: 11.55vw;
        margin: 0.52vw 0 3.825vw 0;
    }
}

.accordion .colorpickle {
    background: transparent !important;
    min-width: auto;
}

.accordion .colorpickle .colorPickerIndicator {
    width: 2.08vw !important;
    height: 2.08vw !important;
}

@media (min-width: 901px) {
    .accordion .colorpickle .colorPickerIndicator {
        width: 1.04vw !important;
        height: 1.04vw !important;
    }
}

.accordion .colorpickle .colorPickerWrapper {
    top: 0;
    left: 0;
    right: 5.5%;
    bottom: 0;
    width: auto !important;
    height: auto !important;
}

.accordion .colorpickle .title {
    top: -2.6vw;
    left: 0;
    width: auto;
    right: auto;
}

@media (min-width: 901px) {
    .accordion .colorpickle .title {
        top: -1.6vw;
    }
}

.accordion .title {
    font-size: 1.25vw;
    text-transform: uppercase;
    line-height: 2.29vw;
    padding-top: 0.2vw;
}

@media (min-width: 901px) {
    .accordion .title {
        font-size: 0.8vw;
        line-height: 1.145vw;
        padding-top: 0.1vw;
    }
}

.accordion .colorpickle .swatchHex {
    top: -2.6vw;
    left: auto;
    width: auto;
    right: 0;
    font-size: 1.25vw;
}

@media (min-width: 901px) {
    .accordion .colorpickle .swatchHex {
        top: -1.6vw;
        font-size: 0.800vw;
    }
}

.accordion .colorpickle .swatchHex input {
    color: #fff !important;
    border-bottom-color: #fff !important;
    margin: 0 auto;
    float: none;
    width: 9.38vw !important;
    text-transform: uppercase;
    border-radius: 0 !important;
}

@media (min-width: 901px) {
    .accordion .colorpickle .swatchHex input {
        width: 4.69vw !important;
    }
}

.accordion .colorpickle .sliderWrapper.hWrapper {
    top: -10%;
    right: auto;
    left: 90.5%;
    bottom: auto;
    width: 93% !important;
    height: 10% !important;
    transform-origin: 0 100%;
}

@media (min-width: 901px) {
    .accordion .colorpickle .sliderWrapper.hWrapper {
    left: 94.5%;
    width: 64% !important;
    }
}

.accordion .colorpickle .hWrapper .sliderDiv .slider::-moz-range-thumb {
    width: 1px !important;
    height: 100% !important;
}

.accordion .colorpickle .hWrapper .sliderDiv .slider::-webkit-slider-runnable-track {
    height: 100%;
}

.accordion .colorpickle input[type=range]::-webkit-slider-runnable-track {
    height: 100%;
}

.accordion .colorpickle .hWrapper .sliderDiv .slider::-webkit-slider-thumb {
    width: 1px !important;
    height: 100% !important;
}

.accordion .colorpickle .sliderWrapper {
    height: 3.12vw;
}

@media (min-width: 901px) {
    .accordion .colorpickle .sliderWrapper {
        height: 1.76vw;
    }
}

.accordion .colorpickle .sliderWrapper.aWrapper {
    top: auto;
    bottom: -25%;
    width: 100%;
}

.accordion .colorpickle .sliderWrapper.aWrapper label {
    top: 0;
    left: 0;
    padding: 0;
    font-size: 1.25vw;
}

@media (min-width: 901px) {
    .accordion .colorpickle .sliderWrapper.aWrapper label {
        font-size: 0.8vw;
    }
}

.accordion .colorpickle .aWrapper .sliderDiv {
    top: 1.25vw;
    line-height: 1;
}

@media (min-width: 901px) {
    .accordion .colorpickle .aWrapper .sliderDiv {
        top: 0.825vw;
    }
}

.accordion .colorpickle .aWrapper .sliderDiv .slider {
    height: 0.52vw !important;
}

.accordion .colorpickle .aWrapper .sliderDiv .slider::-moz-range-track {
    height: 0.52vw !important;

}

.accordion .colorpickle .aWrapper .sliderDiv .slider::-moz-range-progress {
    height: 0.52vw !important;
}

@media (min-width: 901px) {
    .accordion .colorpickle .aWrapper .sliderDiv .slider {
        height: 0.26vw !important;
    }
    
    .accordion .colorpickle .aWrapper .sliderDiv .slider::-moz-range-track {
        height: 0.26vw !important;
    
    }
    
    .accordion .colorpickle .aWrapper .sliderDiv .slider::-moz-range-progress {
        height: 0.26vw !important;
    }
}

.accordion input[type="range"]::-moz-range-thumb {
    width: 1.78vw !important;
    height: 1.78vw !important;
}

.accordion input[type="range"]::-webkit-slider-thumb {
    width: 1.78vw !important;
    height: 1.78vw !important;
    margin-top: -0.89vw;
}

@media (min-width: 901px) {
    .accordion input[type="range"]::-moz-range-thumb {
        width: 0.89vw !important;
        height: 0.89vw !important;
    }
    
    .accordion input[type="range"]::-webkit-slider-thumb {
        width: 0.89vw !important;
        height: 0.89vw !important;
        margin-top: -0.445vw;
    }
}

.accordion .colorpickle .hWrapper .sliderBg {
    top: 0;
}

.accordion .colorpickle .hWrapper .sliderDiv,
.accordion .colorpickle .hWrapper .sliderDiv .slider {
    height: 100%;
}

.accordion .progress-wrapper-container {
    height: 3vw;
}

@media (min-width: 901px) {
    .accordion .progress-wrapper-container {
        height: 1.5vw;
    }
}

.accordion .progress-wrapper {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    padding: 0.94vw 0;
}

@media (min-width: 901px) {
    .accordion .progress-wrapper {
        padding: 0.47vw 0;
    }
}

.accordion .progress-wrapper > .progress {
    height: 1.04vw;
}

@media (min-width: 901px) {
    .accordion .progress-wrapper > .progress {
        height: 0.52vw;
    }
}

.accordion .progress-wrapper > .progress-proc {
    display: none;
}

.accordion .progress-wrapper > .progress-proc-name {
    position: absolute;
    top: -1.9vw;
    left: 50%;
    margin-top: 0;
    width: auto;
    color: #fff;
}

@media (min-width: 901px) {
    .accordion .progress-wrapper > .progress-proc-name {
        top: -0.95vw;
    }
}

.accordion .progress-wrapper > .progress-cancel {
    top: -2.5vw;
    left: auto;
    right: 0;
    transform: none;
    max-width: 2vw;
}

@media (min-width: 901px) {
    .accordion .progress-wrapper > .progress-cancel {
        top: -1.25vw;
        max-width: 1vw;
    }
}

.accordion .dropzone {
    width: 100%;
}

.accordion .dropzone .upload-preview-item {
    border: 1px dashed var(--primary-color);
    height: 24.06vw;
    width: 100%;
    border-radius: 0;
    background-color: #666;
}

@media (min-width: 901px) {
    .accordion .dropzone .upload-preview-item {
        height: 12.03vw;
    }
}

.accordion .dropzone.dz-started .upload-preview-item {
    border-color: transparent;
}

.accordion .dropzone .upload-preview-item img {
    padding: 0;
}

.accordion .dropzone .upload-preview-item .upload-file {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 1;
    background: var(--primary-color);
    padding: 0.34vw 2.6vw;
    border-radius: 3vw;
    white-space: nowrap;
    font-size: 1.26vw;
    letter-spacing: 0.1vw;
    text-transform: uppercase;
}

.accordion .dropzone .upload-preview-item .upload-file:hover{
    background: #fff;
    color: var(--primary-color);
}

@media (min-width: 901px) {
    .accordion .dropzone .upload-preview-item .upload-file {
        padding: 0.17vw 1.3vw;
        border-radius: 1.5vw;
        font-size: 0.63vw;
        letter-spacing: 0.05vw;
    }
}

.accordion .dropzone .upload-preview-item .help-text {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    white-space: nowrap;
    color: #fff;
    letter-spacing: 0.04vw;
    font-weight: var(--font-weight-light);
    font-size: 1.36vw;
}

@media (min-width: 901px) {
    .accordion .dropzone .upload-preview-item .help-text {
        letter-spacing: 0.02vw;
        font-size: 0.68vw;
    }
}

.accordion .dropzone .upload-preview-item .or-drop-here {
    position: absolute;
    top: 69%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    white-space: nowrap;
    color: #fff;
    letter-spacing: 0.04vw;
    font-weight: var(--font-weight-light);
    font-size: 1.36vw;
}

@media (min-width: 901px) {
    .accordion .dropzone .upload-preview-item .or-drop-here {
        letter-spacing: 0.02vw;
        font-size: 0.68vw;
    }
}

.accordion .dropzone.dz-started .upload-preview-item .help-text,
.accordion .dropzone.dz-started .upload-preview-item .upload-file,
.accordion .dropzone.dz-started .upload-preview-item .or-drop-here {
    display:none !important;
}

.accordion .dropzone .dz-complete.upload-preview-item > img {
    top: 0;
    left: 0;
    transform: none;
    border-radius: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: contain;
    position: static;
}

.accordion .btn:not(:disabled):not(.disabled).btn-outline-primary,
.accordion .btn-outline-primary:disabled {
    display: block;
    color: #f6f6f6;
    border-color: #bcbcbc;
    min-width: auto;
    font-size: 1.3vw;
    padding: 0.2vw 2.8vw;
    text-transform: none;
    letter-spacing: 0.04vw;
    font-weight: var(--font-weight-regular);
}
.accordion .btn:not(:disabled):not(.disabled).btn-outline-primary{
     color: #39434f;
     border-color: #ffffff;
    background-color: #ffffff;
}

@media (min-width: 901px) {
    .accordion .btn:not(:disabled):not(.disabled).btn-outline-primary,
    .accordion .btn-outline-primary:disabled {
        font-size: 0.80vw;
        padding: 0.1vw 1.4vw;
        letter-spacing: 0.02vw;
    }
}

.accordion .btn:not(:disabled):not(.disabled).btn-outline-primary:hover {
    background-color: transparent;
    color: #ffffff;
}

.accordion .form-control {
    color: var(--tertiary-color);
    border-color: #e4e4e4;
    font-size: 1.36vw;
    padding: 0.62vw;
    font-family: 'Lato', sans-serif;
    font-weight: var(--font-weight-regular);
    background: #f7f7f7;
    border-radius: 0px;
}

@media (min-width: 901px) {
    .accordion .form-control {
        font-size: 0.88vw;
        padding: 0.31vw;
    }
}

.accordion .form-control::placeholder {
    border-color: #e4e4e4;
    font-size: 1.56vw;
    font-weight: var(--font-weight-regular);
    text-align: center;
    color: #a6a6a6;
}

@media (min-width: 901px) {
    .accordion .form-control::placeholder {
        font-size: 0.88vw;
    }
}

.accordion .wysiwyg-tb {
    border-radius: 0px; 
    border-color: #e4e4e4; 
    padding: 2px;
}

.accordion .wysiwyg {
    border-radius: 0px;
    border-color: #e4e4e4;
    background-color: #fff;
    padding: 2px;
}

.accordion .ql-editor {
    padding: 0.47vw !important;
    max-height: 17.6vw;
    min-height: 17.6vw;
    font-size: 1.36vw;
}

@media (min-width: 901px) {
    .accordion .ql-editor {
        padding: 0.26vw !important;
        max-height: 8.8vw;
        min-height: 8.8vw;
        font-size: 0.8vw;
    }
}

.accordion .ql-snow.ql-toolbar button{
    border: 0.1vw solid #9E9E9E;
    border-radius: 0.42vw;
    padding: 0.32vw 0.42vw;
    height: 2.4vw;
    width: 2.5vw;
}

@media (min-width: 901px) {
    .accordion .ql-snow.ql-toolbar button{
        border: 0.05vw solid #9E9E9E;
        border-radius: 0.21vw;
        padding: 0.16vw 0.21vw;
        height: 1.2vw;
        width: 1.25vw;
    }
}





.web-designer .switch-light.switch-candy input:checked ~ span,
.mobile-designer .switch-light.switch-candy input:checked ~ span {
    background: var(--primary-color);
}

/*.mobile-designer .switch-candy a {
    background: #fff !important;
    width: 50%;
    right: calc(34% - 1px);
}

.mobile-designer .switch-light.switch-candy > span {
    background: transparent;
    border: 1px solid #b0d0f9;
    border: 1px solid var(--disabled-color);
}


.mobile-designer .switch-light input[disabled="disabled"] ~ span {
    cursor: not-allowed;
}

.mobile-designer .switch-light input[disabled="disabled"] ~ span a {
    background: #afafaf !important;
}

.switch-light.switch-candy.switch-decision input[disabled="disabled"]:checked ~ span span:first-child, 
.switch-light.switch-candy.switch-decision input[disabled="disabled"]:not(:checked) ~ span span:nth-child(2) {
    color: #afafaf !important;
}

.mobile-designer .switch-light.switch-candy > span {
    width: 3.02vw;
    background: none;
    border: 0.1vw solid #fff;
    height: 2.06vw;
    min-height: auto;
}


@media (min-width: 901px) {
    .mobile-designer .switch-light.switch-candy > span {
        width: 2.01vw;
        border: 0.05vw solid #fff;
        height: 1.23vw;
        
        width: 35px;
        border: 1px solid #fff;
        height: 20px;
    
    }
}*/




.switch-light.switch-candy.switch-simple {
    margin: 0;
}

.switch-light.switch-candy.switch-simple > span {
    width: 3.02vw;
    background: none;
    border: 0.1vw solid #fff;
    height: 2.06vw;
    min-height: auto;
}

@media (min-width: 901px) {
    .switch-light.switch-candy.switch-simple > span {
/*        width: 2.01vw;
        border: 0.05vw solid #fff;
        height: 1.23vw;*/
        
        width: 35px;
        border: 1px solid #fff;
        height: 20px;
    
    }
}

.switch-light.switch-candy.switch-simple a {
    height: calc(100% - 0.42vw);
    right: calc(50% - 0.42vw);
    margin: 0.2vw;
}

@media (min-width: 901px) {
    .switch-light.switch-candy.switch-simple a {
/*        height: calc(100% - 0.15vw);
        right: calc(50% - 0.15vw);
        margin: 0.05vw;*/
        height: calc(100% - 2px);
    right: calc(50% - 2px);
    margin: 1px;
    }
}

.switch-light.switch-candy.switch-simple a,
.switch-light.switch-candy.switch-simple input:checked ~ span a {
    background: #fff !important;
}

.designer-container-wrapper {
    margin-left: -15px;
    margin-right: -15px;
    min-height: calc(100vh - 102px);
}

#accordionMenu {
    width: 33%;
}

#designerContent {
    width: 67%;
}

@media (min-width: 901px) {
    #accordionMenu {
        width: 21.8%;
        height: calc(100vh - 102px);
    overflow-y: scroll;
    }
    
    #designerContent {
        width: 78.2%;
    }
}

#designer-notification {
    display: none !important;
    padding: 5%;
    text-align: center;
}

@media (max-width: 900px) {
    #designer-preview {
        display: none !important;
    }

    #designer-notification {
        display: block !important;
    }

    body.mobile-designer #designerContent {
        display: block !important;
    }
}

#designer-notification h2 {
    font-size: 4.44vw;
}


#designer-notification p {
    font-size: 2.22vw;
}

#designer-notification img {
    width:100%;
    height: auto;
}

@media (max-width: 1000px) {
    #designer-notification h2 {
        font-size: 2.7vw;
    }
#designer-notification p {
    font-size: 2.0vw;
}

#designer-notification img {
    width:50%;
    height: auto;
    margin-top: 15px;
}
}



#collapseCovers .card-body {
    padding-bottom: 0;
}

.mobile-designer .top-bar .btn-outline-action,
.web-designer .top-bar .btn-outline-action {
    font-size: 0.7vw;
    width: 9.25vw;
    padding: 0;
    line-height: 2.1vw;
    height: 2.1vw;
    letter-spacing: 0.09vw;
    margin-top: 0;
}

.mobile-designer .top-bar .btn-outline-action.thick:not(:disabled):not(.disabled):hover,
.web-designer .top-bar .btn-outline-action.thick:not(:disabled):not(.disabled):hover {
      font-weight: 700;
      font-size: 0.7vw;
      padding: 0;
}

.navbar-toggler[aria-expanded="true"] > .navbar-toggler-icon {
    background: url('../img/popup_close_menu.svg') no-repeat center center;
    background-size: 85%;
}

@media (max-width: 991px) {
    
    @media (orientation: landscape) {
        body.page-settings > .container-fluid{
            padding-left: 30px;
            padding-right: 30px;
        }
        

    }
}

#issues-list .set-password-button {
    position: absolute;
    top: 0.5vw;
    right: 0.5vw;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}

#issues-list .list-issue.active .set-password-button svg path,
#issues-list .list-issue:hover .set-password-button svg path {
    fill: #D1D1D1;
}

#issues-list .list-issue.active .set-password-button:hover svg path,
#issues-list .list-issue:hover .set-password-button:hover svg path {
    fill: var(--primary-color);
}

#issues-list .body .set-password-button svg {
    width: 10px;
    height: 10px;
    margin: 0;
    cursor: pointer;    
}

@media (min-width: 500px) and (max-width: 1000px) {
    #issues-list .body .set-password-button svg {
        width: 16px;
        height: 16px;
        margin: 0;
    }
}

@media (min-width: 1000px) {
    #issues-list .body .set-password-button svg {
        width: 24px;
        height: 24px;
        margin: 0;
    }
}

.switch-decision {
    margin: 7px 33.7% 0 16%;
}

.switch-light.switch-candy.switch-decision input:checked ~ span span:first-child, 
.switch-light.switch-candy.switch-decision input:not(:checked) ~ span span:nth-child(2) {
    color: var(--primary-color);
}

.switch-light.switch-candy.switch-decision input:checked ~ span span:first-child {
    color: var(--disabled-color) !important;
}
.switch-light.switch-candy.switch-decision input:not(:checked) ~ span span:nth-child(2) {
    color: var(--disabled-color) !important;
}


.switch-light.switch-candy.switch-decision span span {
    text-shadow: none !important;
    font-size: 0.9rem;
    text-transform: uppercase;
    width:50%;
    font-weight: var(--font-weight-regular);
}



.switch-light.switch-decision label, 
.switch-light.switch-decision > span {
    line-height: 1.5em;
    min-height: 1.5em;
    background: transparent;
    border: 1px solid var(--disabled-color);
}



/*.switch-light.switch-candy.disabled input:checked ~ span a,
.switch-candy.disabled a {
    background: #c50000 !important;
    background: #c5c5c5 !important;
}



.switch-light.switch-candy input:checked ~ span span:first-child,
.switch-light.switch-candy input:not(:checked) ~ span span:nth-child(2) {
    color: var(--disabled-color);
        var(--primary-color);
    font-weight: var(--font-weight-regular);
}*/


body.landing1{
    background: url("https://publuu.com/wp-content/themes/setupo-new/public/images/products_menu.png") top center no-repeat;
    
    background-color: #f5f5f5;
}

body.landing1 label:not(.custom-control-label) {
    font-size: 1.4rem;
    letter-spacing: 0.075rem;
    margin: 0.5rem 0.2rem 1rem 0.2rem;
    color: var(--tertiary-color-login);
    /*text-transform: uppercase*/
}

body.landing1 .btn {
    padding: 1rem;
    min-width: auto;
    font-size: 1.5rem;
    width: 100%;
    text-transform: unset;
    letter-spacing: 0.1rem;
    border-radius: 0.5rem !important;
    margin-top: 10px !important;
    
}

table.min-table {
    width: 100%;
    border-collapse: separate;
    color: #4b4b4b;
}

table.min-table th {
    font-size: 1.2rem;
    text-transform: uppercase;
    border-bottom: 1px solid #eaeaea;
    line-height: 1;
    padding: 7px 15px;
}

table.min-table td {
    border-bottom: 1px solid #eaeaea;
    line-height: 1;
    padding: 17px 15px;
}

table.min-table th:not(:first-child), table.min-table td:not(:first-child) {
    margin-left: 1px;
}

table.min-table a {
    font-weight: bold;
    color: var(--primary-color);
}

table.min-table .btn:not(:disabled):not(.disabled):hover > svg .symbol {
    fill: var(--primary-color);
}

table.min-table .btn:not(:disabled):not(.disabled):hover.btn-link-svg {
    background: none;
    color: var(--primary-color);
}

table.min-table td > img,
table.min-table td > button {
    display: block;
    margin: 0 auto;
}

.flatpickr-time input.flatpickr-hour{
    text-align: right !important;
    font-weight: 400;
}

.numInputWrapper span.arrowUp{
    display: none;
}
.numInputWrapper span.arrowDown{
    display: none;
}


.flatpickr-time input.flatpickr-minute, .flatpickr-time input.flatpickr-second{
    text-align: left !important;
}

.flatpickr-time input:hover, .flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
    background: #ffffff;
}

.flatpickr-time input.numInput {
    line-height: 1;
}

table.min-table tr.sortableTR th{
    cursor: pointer;
}

table.min-table tr.sortableTR th.sorted{
    background-color: #efefef;
    /*background-color: #e5f0ff;*/
}

table.min-table td.sorted{
    background-color: #f3f3f3;
}




table.min-table tr.sortableTR th.sorted.desc .arrow {
    margin-left: 5px;
     border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
table.min-table tr.sortableTR th.sorted.asc .arrow {
    margin-left: 5px;
     border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}@import url('https://fonts.googleapis.com/css?family=Lato:100,300,300i,400,400i,700,900&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Poppins:600');

/* reset default style options */
:root {
    --font-family-sans-serif: 'Lato', sans-serif;
    --font-family-monospace: 'Lato', sans-serif;
    --font-weight-thin: 100;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-semi-bold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;

    --nav-primary-color: #5ca9ff;
    --nav-secondary-color: #fff;
    
    --primary-color: #5ca9ff;
    --secondary-color: #c0deff;
    --active-color: #fff;
    --tertiary-color: #666666;
    --tertiary-color-login: #c4c4c4;
    --disabled-color: #c5c5c5;

    --interactivity-empty: rgba(255, 0, 0, 0.3);

    --designer-outline-color: #05e9d1;
}

/* hide borders around images when it has empty src on safari */
img[src='']{
    content: '';
    visibility: hidden;
}

/* prevent drag'n'drop select on safari */
body {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}

body {
    background-color: #f6f6f6;
    position:relative;
}

/* for centering remainig page content */
html, body {
    height: 100%;
}

body > .container-fluid {
    /* main navigation height = 102px */
    height: calc(100% - 102px);
}

body.web-designer > .container-fluid,
body.mobile-designer > .container-fluid,
body.interactivities > .container-fluid {
    height: auto;
}

@media (max-width: 991px) {
    
    @media (orientation: landscape) {
        body.flipbook > .container-fluid {
            padding-left: 25px;
            padding-right: 25px;
        }
        
    }
}
@media (max-width: 767px) {
    body.flipbook > .container-fluid {
        /* main navigation height = 102px */
        padding-left: 5px;
        padding-right: 5px;
    }
}


body > .container-fluid.has-header {
    /* main navigation height = 102px */
    /* page-header height = 96px */
    height: calc(100% - 198px);
}

@media (max-width: 767px) {
    body > .container-fluid.has-header.disallow-mobile {
        /* main navigation height = 102px */
        height: calc(100% - 102px);
    }
}

.mobile-portrait {
    display: none !important;
}

@media (orientation: portrait) {
    .mobile-portrait {
        display: flex !important;
    }
}

.mobile-landscape {
    display: none !important;
}

@media (orientation: landscape) {
    .mobile-landscape {
        display: flex !important;
    }
}

.center-content-vertically {
    display: flex;
    flex-direction: column;
    height:100%;
}

.center-content-vertically > * {
    flex-shrink: 0;
}

.center-content-vertically > :first-child {
    margin-top: auto !important;
}

.center-content-vertically > :last-child {
    margin-bottom: auto !important;
}

/* styles */
html {
    font-size: 62.5%;
}

body {
    font-family: var(--font-family-sans-serif);
    font-weight: var(--font-weight-regular);
    font-size: 1.5rem;    
}

a:focus,
button:focus {
    outline: none;
}

a:hover {
    text-decoration: none;
}

.form-check-input.is-valid~.form-check-label, .was-validated .form-check-input:valid~.form-check-label {
    color: inherit;
}

.font-weight-black {
    font-weight: var(--font-weight-black) !important;
}

.tooltip {
    font-family: var(--font-family-sans-serif);
    font-weight: var(--font-weight-regular);
    font-size: 1.4rem;    
}

/* remove outline */
.form-control:focus,
.btn.focus, 
.btn:focus,
.btn:not(:disabled):not(.disabled).active:focus, 
.btn:not(:disabled):not(.disabled):active:focus, 
.show > .btn.dropdown-toggle:focus {
    box-shadow: none;
}

/* remove borders */
.btn {
    border: none;
    transition: none;
}

/* styles */

.no-transition {
    transition: none !important;
}

.text-primary {
    color: var(--primary-color);
}

.border-primary {
    border-color: var(--primary-color);
}

svg {
    display:block;
}

.svg-link {
    cursor: pointer;
}

.svg-link > svg {
    max-width: 30px;
    width: 100%;
    max-height: 30px;
    height: auto;
}

.svg-link:hover > svg path {
    fill: var(--primary-color);
}

.btn {
    font-size: 1.5rem;
}

.btn:not(:disabled):not(.disabled):hover,
.btn:not(:disabled):not(.disabled).active, 
.btn:not(:disabled):not(.disabled):active, 
.btn:not(:disabled):not(.disabled).active-colorpicker, 
.btn:not(:disabled):not(.disabled).active-sidebar, 
.show > .btn-primary.dropdown-toggle {
    background: var(--primary-color);
    color: var(--active-color);
    box-shadow: none;
    border-color: var(--primary-color);
}

.btn-outline-secondary {
    border: 1px solid var(--primary-color);
    text-align: center;
    text-transform: uppercase;
    padding: 1.3rem 2.7rem;
    border-radius: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:not(:disabled):not(.disabled):active {
    border-color:var(--primary-color);
}

.btn-outline-secondary > svg {
    max-width: 19px;
    width: 100%;
    max-height: 19px;
    height: auto;
}

.btn-outline-secondary > svg .symbol {
    fill: var(--primary-color);
}

.btn-outline-secondary:hover > svg .symbol {
    fill: #fff;
}

.btn-outline-group {
    border: 1px solid #d9d9d9;
    background:transparent;
    color: var(--primary-color);
        font-size: 1.75rem;
    padding: .375rem 1.25rem;
}

.btn.btn-outline-group:not(:disabled):not(.disabled):hover {
    border: 1px solid #d9d9d9 !important;
    color: var(--primary-color) !important;
}

.form-control, .custom-select {
    font-size: 1.2rem;
    padding: 1rem;
    border-radius: 0.5rem;
    border-color: #d2d2d2;
    color: var(--tertiary-color);
    box-shadow: none;
}

.form-control:focus {
    border-color: #d2d2d2;
}

.form-control::placeholder {
    text-align: center;
    font-weight: var(--font-weight-light);
    color:#d9d9d9;
}

.form-control:focus::placeholder {
    color: transparent !important;
}

.form-control::-ms-input-placeholder {
    text-align: center;
    font-weight: var(--font-weight-light);
    color:#d9d9d9;
}

.form-control:focus::-ms-input-placeholder {
    color: transparent !important;
}

.form-control[readonly]::placeholder {
    color: #d9d9d9;
}

.form-control[readonly]::-ms-input-placeholder {
    color: #d9d9d9;
}

.form-control[readonly].datepicker,
.form-control[readonly].datetimepicker {
    background: #fff;
}

.form-check-label {
    margin-left: 5px;
}

.form-check-input.is-invalid ~ .form-check-label, .was-validated .form-check-input:invalid ~ .form-check-label {
    color: inherit;
    border-bottom: 1px solid #dc3545 !important;
}

.custom-select.is-invalid, 
.form-control.is-invalid, 
.was-validated .custom-select:invalid, 
.was-validated .form-control:invalid,
.was-validated [type=checkbox]:invalid
.StripeElement.invalid,
.input-group.is-invalid > .input-group-prepend > span,
.input-group.is-invalid > input {
    border-color: #dc3545 !important;
}

.form-control.is-valid, 
.was-validated .custom-select:valid, 
.was-validated .form-control:valid {
    border-color: #d2d2d2 !important;
}

.form-control:valid:focus,
.form-control:invalid:focus {
    box-shadow: none !important;
}

.form-control + span:empty {
    display: none;
}

.form-control:required + span {
    display: inline;
}

.form-with-required-indicators .form-control:required + span::after,
.form-with-required-indicators .custom-select:required + span::after {
    content: '*';
    position: absolute;
    top: -0.1rem;
    right: 1.25rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    display: block;
}

.input-counter-wrapper {
    position: relative;
}

.input-counter {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    right:10px;
    bottom:0;
    position:absolute;
    letter-spacing: .05rem;
    color: #828491;
}

.pseudo-placeholder-wrapper {
    display: table;
    position: relative;
    padding: 0 15px;
}

.pseudo-placeholder {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    right:25px;
    bottom:1px;
    position:absolute;
    letter-spacing: .05rem;
    color: #828491;
}

.col-form-label.bolded {
    font-weight: var(--font-weight-bold);
    font-size: 1.9rem;
    letter-spacing: 0.05rem;
    height: 100%;
    margin-top: auto;
    padding-bottom: 0;
    padding-top: 0;
}

.custom-select {
    cursor:pointer;
    height: calc(4.1rem + 2px);
    background:#fff url('../img/icon-chevron-down.svg') no-repeat right 0 center;
    padding-right: 2.5rem !important;
    border-color: #d2d2d2;
    border-radius: 0.5rem;
    text-align: center;
    text-align-last: center;
}

.custom-select:invalid {
    color: #d9d9d9;
}

.custom-select:disabled {
    background: #e9ecef;
    padding-right: 0 !important;
    cursor: auto;
}

.custom-select:focus,
.custom-select.is-valid:focus, 
.form-control.is-valid:focus, 
.was-validated .custom-select:valid:focus, 
.was-validated .form-control:valid:focus{
    border-color: #d2d2d2;
    box-shadow: none;   
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
    background:transparent;
}
.custom-control-input.is-valid ~ .custom-control-label, 
.was-validated .custom-control-input:valid ~ .custom-control-label {
    color:inherit;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
    box-shadow: none;   
}

.form-control-secondary {
    font-family: 'Lato', sans-serif;
    font-weight: var(--font-weight-regular);
    color: #666666;
    text-align: center;
    border-color: #d2d2d2;
}

.form-control-secondary:focus {
    color: #d9d9d9;
    border-color: #d2d2d2;
}


.form-control-secondary:disabled, .form-control-secondary[readonly] {
    background: #fff;
}

.input-group > .input-group-append > .btn-outline-secondary:hover svg .fill {
    fill: #000;
}

textarea.form-control-plaintext[readonly] {
    resize: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.42vw;
}

h3.issues {
    font-weight: var(--font-weight-light);
    font-size: 3rem;
    text-transform: none;
}

.h5, h5 {
    font-size: 2rem;
}

h6 {
    font-size: 1.4rem;
    color: #000;
}

h6.bigger {
    font-weight: var(--font-weight-regular);
    font-size: 3rem;
}

.pt-6r, .py-6r {
    padding-top: 6rem !important;
}

.pb-6r, .py-6r {
    padding-bottom: 6rem !important;
}

.w-60 {
    width: 60% !important;
}

.w-40 {
    width: 40% !important;
}

.close {
    font-size: 2.4rem;
}

.relative {
    position: relative;
}



/* main navigation */
#main-navigation.navbar-light {
    padding: 0.63vw 0.52vw;
}

#main-navigation > .container {
    max-width: 1820px;
}

#main-navigation.navbar-light .nav-items {
    margin-left: 0;
    justify-content: center;
}

@media (min-width: 992px) {
    #main-navigation.navbar-light .nav-items {
        /*margin-left: 30vw;*/
        left: 50%;
        transform: translateX(-50%);
        margin: 0px;
        position: absolute;
    }
}



#main-navigation.navbar-light .nav-items hr {
    height: 1px;
    border: 0;
    border-top: 0px dotted #fff;
    width: 30px;
    margin: auto 10px;
    background: transparent;
}


#main-navigation.navbar-light .nav-items .link {
    width: 80px;
    height: 80px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.3;
    letter-spacing: .1rem;
    white-space: nowrap;
    outline:0;
    text-decoration: none;
    position:relative;
    flex-shrink:0;
    font-weight: var(--font-weight-bold);
    cursor: pointer;
}

@media (max-width: 991px) {
    #main-navigation.navbar-light .nav-items hr {
        border-top: 0px dotted #fff;
        width: 0px;
        margin: auto 0px;
    }
    
    
    @media (orientation: landscape) {
        #main-navigation.navbar-light {
            padding: 0.0vw 0px;
        }

        #main-navigation.navbar-light .nav-items .link {
            max-height: 50px;
            height: 50px;
            max-width: 100px;
            width: 100px;
            font-size: 13px;
            margin: 0px 0;
            border: 0px solid #fff;
            border-radius: 0px;
            
        }
    }
    @media (orientation: portrait) {
        #main-navigation.navbar-light .nav-items .link {
            max-width: 60px;
            max-height: 60px;
            font-size: 11px;
            margin: 11px 10px;
        }
        #main-navigation.navbar-light {
            padding: 0.0vw 0px;
        }
    }
}

#main-navigation.navbar-light .nav-items .link:last-of-type {
    margin-right: 0;
}

#main-navigation.navbar-light .nav-items .link:last-of-type:after {
    display:none;
}

#main-navigation.navbar-light .nav-items .link.active,
#main-navigation.navbar-light .nav-items .link:hover {
    background: var(--nav-secondary-color);
    color: var(--nav-primary-color);
}

#main-navigation.navbar-light .nav-items .link.highlighted {
    z-index: 1010;
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    pointer-events: none;
}

#main-navigation.navbar-light .nav-items .link > span {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);

}

#main-navigation.navbar-light .navbar-nav .nav-link {
    border: 1px solid #fff;
    border-radius: 2rem;
    color: #fff;
    margin: 0 3px;
    text-align: center;
    font-size: 1.235rem;
    padding: .5rem 2.4rem;
    letter-spacing: 0.05rem;
    white-space: nowrap;
}


@media (max-width: 991px) {
    
    #main-navigation.navbar-light .navbar-nav .nav-link {
        padding: .3rem 2.4rem;
    }
}

#main-navigation.navbar-light .navbar-nav .nav-item.active > .nav-link, 
#main-navigation.navbar-light .navbar-nav .nav-link:hover {
    background: var(--nav-secondary-color);
    color: var(--nav-primary-color);
}

#main-navigation .navbar-brand > img {
    width: auto;
    height: 35px;
}

@media (max-width: 991px) {
    #main-navigation .navbar-brand > img {
        height: 19px;
        margin-left: 8px;
    }
    
    @media (orientation: portrait) { 
        #main-navigation .navbar-brand > img {
            visibility: hidden;
            margin-left: 0px;
        }
        
        .navbar-brand {
            margin: 0px;
        }
    }
}

#main-navigation.navbar-light .navbar-toggler {
    border: none;
    font-size: 1.75rem;
    margin-right: 8px;
    margin-left: 1.45rem;
}


    @media (orientation: landscape) { 
        #main-navigation.navbar-light .navbar-toggler {
            margin-right: 30px;
        }
        
    }

#main-navigation.navbar-light .navbar-toggler.highlighted {
    z-index: 1010;
    border-color: var(--primary-color);
    pointer-events: none;
}

#main-navigation.navbar-light .navbar-toggler.highlighted .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%235ca9ff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* navigation icons */
#main-navigation .nav-icon-wrapper {
    border-radius: 100%;
    width: auto;
    height: auto;
    position: relative;
}

#main-navigation .nav-icon-wrapper.active {
    box-shadow: 0 0 0 1px #fff inset, 0 0 10px 0 #fff inset;
}

#main-navigation .nav-icon-wrapper.attention {
    box-shadow: 0 0 0 1px #cb4d4d inset, 0 0 10px 0 #fff inset;
    margin: 0 2px;
}

#main-navigation .nav-icon-wrapper.highlighted {
    z-index: 1010;
    pointer-events: none;
}

#main-navigation .nav-icon-wrapper.highlighted svg .emblem {
    fill: var(--primary-color);
}

#main-navigation .nav-icon {
    border-radius: 100%;
    margin: 5px;
    display: block;
    padding: 0.8rem;
}

@media (max-width: 991px) {
    #main-navigation .nav-icon-wrapper {
        margin: 5px;
        width: 38px;
        height: 38px;
    }
    
    #main-navigation .nav-icon {
        padding: 0.1rem;
    }
}

#main-navigation .nav-icon-wrapper.attention .nav-icon,
#main-navigation .nav-icon-wrapper.active .nav-icon,
#main-navigation .nav-icon:hover {
    background: var(--nav-secondary-color);
}

@media (max-width: 991px) {
    
    #main-navigation .nav-icon-wrapper.attention .nav-icon,
#main-navigation .nav-icon-wrapper.active .nav-icon {
    
        background: var(--nav-secondary-color);
        width: 28px;    
        height: 28px;    
        
    
    }
    
    #main-navigation .nav-icon:hover{
        background: transparent;
    }
}


#main-navigation .nav-icon-wrapper.active svg .emblem {
    fill: #4b4b4b;
}

#main-navigation .nav-icon-wrapper.attention svg .emblem {
    fill: #cb4d4d;
}

#main-navigation .nav-icon svg {
    display: block;
    width: 1.77vw;
    height: 1.77vw;
}

@media (max-width: 991px) {
    #main-navigation .nav-icon svg {
        width: 26px;
        height: 26px;
        float: left;
        
    }
    
    
    #main-navigation .nav-icon::after{
        /*content: 'Push notifications';*/
        color: white;
        line-height: 40px;
        height: 40px;
        margin-left: 10px;
        float: left;
    }

    @media (orientation: landscape) {
        .navbar-brand{
            margin-left: 30px;
        }
    }
}

#main-navigation .nav-icon-wrapper.active .nav-icon svg {
    padding: 3px;
}

#main-navigation .nav-icon svg .emblem, 
#main-navigation .nav-icon svg .emblem {
    fill:var(--nav-secondary-color);
}

#main-navigation .nav-icon:hover svg .emblem {
    fill: var(--nav-primary-color);
}

#main-navigation .nav-icon-wrapper.attention .nav-icon:hover svg .emblem {
    fill: #cb4d4d;
}

@media (max-width: 991px) {
    #main-navigation .navbar-collapse {
        margin-top: 0px;
        background: #87befb;
        /*min-height: 400px;//calc(100vh - 102px);*/
    }
    
    #main-navigation .nav-icon:hover svg .emblem {
        fill: #ffffff;
    }
 

}

#main-navigation .navbar-collapse > div {
    margin: 0 5px;
}


#main-navigation.navbar-light .navbar-nav .nav-link.large {
    /*font-size: 0.83vw;*/
        font-size: 1.2rem;
}

@media (max-width: 991px) {
    #main-navigation.navbar-light .navbar-nav .nav-link.large {
        font-size: 14px;
        margin: 5px;
        /*margin-top: 10px;*/
        /*margin-bottom: 20px;*/
    }

    #main-navigation .navbar-collapse > div {
        margin: 5px 5px;
         flex-direction: unset !important;
    }

    
   
}

#main-navigation  h4 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: var(--font-weight-bold);
}

#main-navigation.navbar {
    background: var(--nav-primary-color) !important;
    min-height: 102px;
}


@media (max-width: 991px) {
    @media (orientation: landscape) { 
        #main-navigation.navbar {
            min-height: 50px;
        }
    }
    @media (orientation: portrait) { 
        #main-navigation.navbar {
            min-height: 82px;
        }
    } 
}

/*UKRYWAMY TOPBARBUTTONS I LOGO NA SRODKU GDY DISABLED*/
#main-navigation.navbar.navbar-disabled .nav-items,
#main-navigation.navbar.navbar-disabled #navbarNav,
#main-navigation.navbar.navbar-disabled .navbar-toggler
{
    display: none !important;
}

#main-navigation.navbar.navbar-disabled .navbar-brand{
    margin: auto;
}

@media (min-width: 1024px) {
    #main-navigation.navbar.navbar-disabled .navbar-brand > img {
            visibility: visible;
            /*margin-left: 0px;*/
        }
    #main-navigation.navbar.navbar-disabled .navbar-brand img {

            height: 45px;
        
    }
}

@media (max-width: 1024px) {
    #main-navigation.navbar.navbar-disabled .navbar-brand > img {
            visibility: visible;
            /*margin-left: 0px;*/
    }
        #main-navigation.navbar.navbar-disabled .navbar-brand img {
            height: 30px;
        }

}


#main-navigation.navbar.navbar-disabled a#nav-web:not(.nav-link),
#main-navigation.navbar.navbar-disabled a#nav-app:not(.nav-link)
{
    opacity:0.5;
    pointer-events: none;
}
#main-navigation.navbar.navbar-disabled div#nav-notifications a:not(.nav-link),
#main-navigation.navbar.navbar-disabled div#nav-stats a:not(.nav-link),
#main-navigation.navbar.navbar-disabled div#nav-sales a:not(.nav-link),
#main-navigation.navbar.navbar-disabled div#nav-settings a:not(.nav-link)
{
    opacity:0.5;
    
    pointer-events: none;
}


#main-navigation .spacer {
    width: 25px;
}

#main-navigation .nav-upgrade {
    left: 22.9%;
    transform: translateX(-50%);
    position: absolute;
}

#main-navigation .navbar-collapse .nav-upgrade {
    display: none;
    position: static;
    left: auto;
    transform: none;
}

@media (max-width: 991px) {
    #main-navigation .nav-upgrade {
        display: none;
    }

    #main-navigation .navbar-collapse .nav-upgrade {
        display: block;
    }
}

/*

    #main-navigation.navbar-light .nav-items {
        position: static;
        left: auto;
        transform: none;
        margin-left: auto;
    }

    #main-navigation .navbar-collapse {
        flex-grow: 0;
    }

    #main-navigation.navbar-light .nav-upgrade .nav-link {
        margin: 0 0 0 0.8rem;
    }
}

#main-navigation.navbar-light .navbar-nav.nav-upgrade .nav-link {
    background: var(--primary-color);//#fff;
    border-color: #fff;//ar(--primary-color);
    color: #fff;//var(--primary-color);
    transition: all ease-in-out .15s;
    letter-spacing: 0.075rem;
    font-weight: 700;
}

#main-navigation.navbar-light .navbar-nav.nav-upgrade .nav-link:hover {
    background: #fff;
    /*border-color: #fff;*/
     border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
}

/* custom "table" styles */
.table-custom > .header {
    margin-bottom: .5rem;
}

.table-custom > .header > div {
    font-weight: var(--font-weight-regular);
}

.table-custom.sortable > .header > div {
    cursor: pointer;
    font-weight: var(--font-weight-bold);
    
}

.table-custom.sortable > .header > div > span {
    position: relative;
    padding: .5rem 1rem;
    border-radius: 5rem;
}

.table-custom.sortable > .header > .asc > span::after {
    background:#fff url('../img/icon-chevron-up.png') no-repeat right .5rem top .5rem;
    content: '';
    width:25px;
    height:25px;
    right:-30px;
    position: absolute;
}

.table-custom.sortable > .header > .desc > span::after {
    background:#fff url('../img/icon-chevron-down.png') no-repeat right .5rem top .5rem;
    content: '';
    width:25px;
    height:25px;
    right:-30px;
    position: absolute;
}

.table-custom.sortable > .header > .asc > span, 
.table-custom.sortable > .header > .desc > span {
    background: var(--active-color);
}

.table-custom > .row.body {
    margin-bottom: .5rem;
}

.table-custom > .body .bordered {
    border: 1px solid #d2d2d2;
    border-radius: .5rem;
    padding: .375rem;
    height: 100%;
    width: 100%;
    line-height: 2;
}

.table-custom > .body > div .bordered.highlighted {
    background: #e9ecef;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.table-custom > .body .form-control {
    padding: .75rem;
    line-height: 1.5;
}

.table-custom > .body .custom-select {
    height: 100%;
}

.table-custom > .body .input-group {
    height:100%;
}

.table-custom img, 
.table-custom svg {
    max-height: 22px;
    max-width: 22px;
}

.table-custom .custom-select {
    height:100%;
}

.table-custom input,
.table-custom select {
    font-weight: var(--font-weight-bold);
    font-size: 1.4rem;
    height:100%;
    vertical-align:middle;
    padding: 1rem;
}

.table-custom .bordered input {
    padding: 0.75rem;
}

.table-custom .btn {
    font-size: 1.4rem;
}

.table-custom .btn-outline-secondary {
    padding: 0.375rem 0.75rem;
}

.table-custom .btn-outline-group {
    border-radius: 0.5rem;
}

.modal-footer > .table-custom {
    max-height:32vh;
    overflow-y: auto;
}

.row-small-gutter {
    margin-left: -4.5px;
    margin-right: -4.5px;
}

.row-small-gutter > * {
    padding-left: 4.5px;
    padding-right: 4.5px;
}

/* other */
h4 {
    color: #b5b5b5;
}

h3 {
    font-weight: var(--font-weight-black);
    font-size: .9vw;
    text-transform: uppercase;
    margin-top: 3rem;
    color:var(--tertiary-color);
}

h3:first-child {
    margin-top: 0;
}

h1.page-title {
    font-size: 4rem;
    font-weight: var(--font-weight-regular);
}

h1.table-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-regular);
    color: var(--tertiary-color);
}

h2.page-line {
    font-size: 2.3rem;
    font-weight: var(--font-weight-bold);
    margin: 4rem 0;
    color:#597a9e;
}

h2.page-line.stronger {
    margin: 6rem 0 4rem 0;
    font-size: 2.2rem;
    letter-spacing: 0.15rem;
}



@media (max-width: 901px) {
    @media (orientation: portrait) {
        h2.page-line.stronger {
            margin: 3rem 0 3rem 0;
            font-size: 2.2rem;
            letter-spacing: 0.15rem;
        }
        
    }
    @media (orientation: landscape) {
        h2.page-line.stronger {
            margin: 1rem 0 1rem 0;
            font-size: 2.0rem;
            letter-spacing: 0.15rem;
        }
        
    }
    
}
h3.page-line {
    font-size: 2rem;
    font-weight: var(--font-weight-regular);
    margin: 2rem 0;
    text-transform: none;
}

.page-line > span {
    font-size: 1.2rem;
    font-weight: var(--font-weight-regular);
    color: var(--primary-color);
    display: block;
    margin-top:1rem;
}

hr {
    background: #b5b5b5;
}
/* custom dropdown - select replacemenet */
.btn.btn-dropdown {
    cursor:pointer;
    font-size: 1.2rem;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: none;
    text-align: center;
    width: 100%;
    border: 1px solid #d2d2d2;
    color: var(--tertiary-color);
    background: #fff;
    letter-spacing: 0.05rem;
}

.btn.btn-dropdown:disabled {
    background-color: #e9ecef;
    opacity: 1;
    cursor: auto;
}

.btn.btn-dropdown.dropdown-toggle::after {
    position: absolute;
    top: 16px;
    right: 10px;
    border-top-width: 7px;
    border-right-width: 7px;
    border-left-width: 7px;
}

.btn.btn-dropdown.dropdown-toggle:disabled::after {
    display: none;
}

.btn.btn-dropdown:not(:disabled):not(.disabled):hover {
    border: 1px solid #d2d2d2;
    color: var(--tertiary-color);
    background: #fff;
}

.dropdown.dropdown-select .btn, 
.dropdown.dropdown-select .dropdown-item {
    font-weight: var(--font-weight-bold);
}

.dropdown.dropdown-select > .dropdown-menu {
    right: 0;
    border-radius: 0.5rem;
}

.dropdown.dropdown-select > .dropdown-menu > .dropdown-item {
    font-size: 1.5rem;
    color: var(--tertiary-color);
    text-align: center;
    letter-spacing: 0.05rem;
    font-weight: var(--font-weight-regular);
}

.dropdown.dropdown-select > .btn-dropdown > .separator,
.dropdown.dropdown-select > .dropdown-menu > .dropdown-item > .separator {
    color: var(--primary-color);
}
/* end custom dropdown - select replacemenet */

.dropdown.dropdown-select > .dropdown-menu > .dropdown-item:hover,
.dropdown.dropdown-select > .dropdown-menu > .dropdown-item:focus {
    background-color: #d2d2d2;
}

.btn-primary {
    color: #fff;
    background: var(--primary-color);
    min-width: 185px;
    text-align: center;
    text-transform: uppercase;
    padding: 1.3rem 2.7rem;
    border-radius: 3rem;
    font-weight: var(--font-weight-black);
    border: 1px solid transparent;
}

a:not([href]):not([tabindex]).btn-primary {
    color: #fff;
}

.btn:not(:disabled):not(.disabled).btn-primary:hover {
    border: 1px solid var(--primary-color);
}

.btn-primary.alt {
    border: 1px solid var(--primary-color);
    background: #fff;
    color: var(--primary-color);
}

.btn:not(:disabled):not(.disabled).btn-primary.alt:hover {
    border: 1px solid #fff;
    background: var(--primary-color);
    color: #fff;
}

.btn:not(:disabled):not(.disabled).btn-outline-primary,
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    min-width: 185px;
    text-align: center;
    text-transform: uppercase;
    padding: 1.3rem 2.7rem;
    border-radius: 3rem;
    font-weight: var(--font-weight-regular);
}

.btn:not(:disabled):not(.disabled).btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    cursor: not-allowed;
}

.btn:not(:disabled):not(.disabled).btn-outline-primary.btn-alt,
.btn.btn-outline-primary.btn-alt:disabled {
    font-weight: var(--font-weight-bold);
    border-radius: 3rem;
    font-size: 1.4rem;
    letter-spacing: 0.075rem;
}

.btn-outline-action {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 10rem;
    font-size: 1.1rem;
    font-weight: var(--font-weight-regular);
    text-transform: uppercase;
    letter-spacing: 0.075rem;
    padding: 0.7rem 0;
    width:16.5rem;
}

.btn-outline-action:disabled,
.btn-outline-action:hover:disabled,
.btn-outline-action.disabled
.btn-outline-action:hover.disabled {
    opacity: 1;
    border-color: #c5c5c5;
    color: #c5c5c5;
}

.btn-outline-action.btn:not(:disabled):not(.disabled):hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-outline-action.active {
    color: var(--primary-color);
}

.btn-outline-action.active:hover {
    border-color: var(--primary-color);
}

.btn-outline-action.btn-alt.active:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-outline-action.highlighted {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    z-index: 1010;
    pointer-events: none;
    position: relative;
}

.btn-success {
    background: #00e15f;
    border-radius: 10rem;
    padding: .75rem 3rem;
}

.fake-btn {
    display: inline-block;
    border: 0;
    background: #00e15f;
    border-radius: 10rem;
    padding: .75rem 3rem;
    color: #fff;
}

.btn-link-svg > svg .symbol {
    fill:#d2d2d2;
}

.btn-link-svg:hover,
.btn-link-svg:focus,
.btn.btn-link-svg:not(:disabled):not(.disabled):active {
    background:transparent;
}

.btn-svg {
    background: transparent;
    padding: .6rem 0;
}

.modal-footer .btn:not(:disabled):not(.disabled).btn-svg:hover,
.btn:not(:disabled):not(.disabled).btn-svg:hover {
    background: transparent;
}

.btn-svg > svg {
    width: 3.2rem;
    height: 3.2rem;
    display: block;
    margin: auto auto;
}

.btn-svg > svg .symbol {
    fill: var(--primary-color);
}

.btn-public {
    width: 100%;
    background: #6da9f8;
    border-radius: 0;
    text-transform: uppercase;
    color: #fff;
}

#interactivities-thumbnails {
    font-weight: var(--font-weight-black);
    margin-right: 27px;
    background: #e7e7e7;
    margin-top: 10px;
    min-height: 100%;
    /*height: 100%;*/
}

#interactivities-thumbnails > img { 
    width: 170px;
    max-height: 234px;
    object-fit: contain;
    cursor: pointer; 
    filter: drop-shadow(0 -1px var(--tertiary-color)) drop-shadow(0 1px var(--tertiary-color)) drop-shadow(-1px 0 var(--tertiary-color)) drop-shadow(1px 0 var(--tertiary-color));
}

#interactivities-thumbnails > img[src$="loader.svg"] {
    box-shadow: none;
    filter: none;
}

#interactivities-thumbnails > img:first-child { 
    margin-top:2px;
}

#interactivities-thumbnails > img.active { 
    filter: drop-shadow(0 -3px var(--primary-color)) drop-shadow(0 3px var(--primary-color)) drop-shadow(-3px 0 var(--primary-color)) drop-shadow(3px 0 var(--primary-color));
}

#interactivities-thumbnails > img.active[src$="loader.svg"] {
    box-shadow: none;
    filter: none;
}

#interactivities-thumbnails > label {
    font-weight: var(--font-weight-regular);
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--tertiary-color);
}

#interactivities-container { 
    position: relative; 
    background: #e7e7e7;
    padding: 5px 22px;
    margin: 0 30px;
    border-radius: 10px;
    width: 595px;
    flex-shrink: 0;
    /* 
        1.26vw = navigation padding (top+bottom); 
        4.32vw = navigation height (big buttons); 
        14.9vh = top bar height;
        10px = bottom margin;
    */
    height: calc((((100vh - 1.26vw) - 4.32vw) - 14.9vh) - 10px);
}

#interactivities-overlay { 
    position: absolute; 
    left:0; 
    top:0; 
    width:100%; 
    height:100%;
}

#interactivities-overlay.show-areas .interactivity-area {
    background: rgba(93, 169, 255, 0.6);
}

#interactivities-overlay.show-areas .interactivity-area.empty {
    background: var(--interactivity-empty);
}

.interactivities-sidebar {
    width: 240px;
    flex-shrink: 0;
    position: relative;
}

.interactivities-sidebar .top {
    position: absolute;
    background: #f6f6f6;
    top: 0;
    left: 0;
    right: 27px;
    height: 10px;
    z-index: 999;
}

.interactivities-sidebar .top-inside {
    width:100%;
    height:100%;
    background: #e7e7e7;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.interactivities-sidebar.sidebar-right > * {
    max-width: 100px;
}

.interactivities-sidebar.sidebar-right > .highlightable {
    max-width: 130px;
    margin-left: -15px;
    color: #5ca9ff;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.075rem;
}
.interactivities-sidebar.sidebar-right > .highlightable.on {
    background-color: transparent;
    color: var(--nav-primary-color);
}

.interactivities-sidebar.sidebar-right .btn-circular-outline-primary {
    font-size: 1.2vh;
}

.interactivities-sidebar.sidebar-right .btn-circular-outline-primary > .btn-upgrade-small {
    /* font-size * line-height; 4px for extra including borders */
    top: calc(-1 * ((1.23vh * 1.6) + 4px));
    padding: 0 2.25vh;
    font-size: 1.23vh;
    line-height: 1.6;
}

.interactivities-sidebar.sidebar-right div:last-child {
    margin: 0.0vh 0 0.1vh 0;
}

.interactivities-sidebar.sidebar-right label.small{
    font-weight: var(--font-weight-regular);
    color: #666;
}

#interactivities-canvas {
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

#interactivities-canvas.horizontal {
    width: 100%;
    height: auto;
}

#interactivities-canvas.vertical {
    width: auto;
    height: 100%;
}

.interactivity-area {
    position: absolute;
    background: rgba(93, 169, 255, 0.6);
    cursor: move;
}

.interactivity-area.selected {
    background: rgba(93, 169, 255, 0.9) !important;
    z-index: 333;
}

.interactivity-area.selected::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 2px dashed var(--primary-color);
}

.interactivity-area.selected.empty::before {
    border-color: var(--interactivity-empty);
}

.interactivity-area.hide-area.empty {
    background-color: var(--interactivity-empty);
}

.interactivity-area.hide-area.empty.selected {
    background-color: var(--interactivity-empty) !important;
    border-color: var(--interactivity-empty);
}

.interactivity-area.hide-area.empty.selected::before {
    border-color: var(--interactivity-empty);
}

.interactivity-area.hide-icon > .interactivity-intra-btn {
    display: none;
}

.interactivity-area.hide-icon.empty,  
.interactivity-area.hide-icon.empty.selected {
    background: var(--interactivity-empty) !important;
}

.interactivity-btn {
    width:20px;
    height:20px;
    background-size: cover !important;
    position: absolute;
}

.interactivity-intra-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.interactivity-intra-btn > svg {
    width: 100%;
    height: 100%;
    padding: 17.25%;
    display: block;
    cursor: grab;
}

.interactivity-intra-btn > svg.svg-video-1 {
    padding: 7px;
}

.interactivity-area .resize-handle {
    width: 6px;
    height: 6px;
    background: transparent;
    position: absolute;
}

.interactivity-area.selected .resize-handle {
    background-color: #005fca;
    z-index: 100;
}

.interactivity-area.selected.empty .resize-handle {
    background: var(--interactivity-empty);
}

.interactivity-area.selected .resize-handle.n {
    cursor: ns-resize;
}

.interactivity-area.selected .resize-handle.s {
    cursor: ns-resize;
}

.interactivity-area.selected .resize-handle.e {
    cursor: ew-resize;
}

.interactivity-area.selected .resize-handle.w {
    cursor: ew-resize;
}

.interactivity-area.selected .resize-handle.ne {
    cursor: nwse-resize;
}

.interactivity-area.selected .resize-handle.nw {
    cursor: nesw-resize;
}

.interactivity-area.selected .resize-handle.se {
    cursor: nesw-resize;
}

.interactivity-area.selected .resize-handle.sw {
    cursor: nwse-resize;
}

.btn.btn-outline-secondary.interactivity-option {
    border-radius: 100px;
    width: 7.8vh;
    height: 7.8vh;
    border-color: #5ca9ff;
    border-width: 2px;
    position:relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.set-default-style {
    margin-bottom:2rem;
}

.btn.btn-outline-secondary.set-default-style:active,
.btn.btn-outline-secondary.set-default-style:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

@media (min-width:1200px) {
    .set-default-style {
        margin-top: 25%;
    }
}

.btn.btn-outline-secondary.interactivity-option:hover {
    border-color: transparent;
    background: var(--primary-color);
}

.btn.btn-outline-secondary.interactivity-option > svg {
    width: 58%;
    height: 58%;
    display: block;
    max-width: none;
    max-height: none;
}

.btn.btn-outline-secondary.interactivity-option > svg .symbol {
    fill: #5ca9ff;
}

.btn.btn-outline-secondary.interactivity-option:hover > svg .symbol {
    fill: #fff;
}

.btn.btn-outline-secondary.interactivity-option > svg.svg-video-1 .symbol {
    stroke: #5ca9ff;
  
    fill:none;
}

.btn.btn-outline-secondary.interactivity-option:hover > svg.svg-video-1 .symbol {
    stroke: #fff;
    fill:none;
}

.btn.btn-outline-secondary.interactivity-style {
    border-radius: 0.5rem;
    width:8.1rem;
    height:8.1rem;
    padding: 0;
    border-color: #ececec;
    border-width: 2px;
    margin: 0 0.5rem;
}

.btn.btn-outline-secondary.interactivity-style.active,
.btn.btn-outline-secondary.interactivity-style:hover,
.btn.btn-outline-secondary.interactivity-style:focus {
    border-color: transparent;
}

.btn.btn-outline-secondary.interactivity-style > svg {
    max-width: 4rem;
    width: 100%;
    max-height: 100%;
    height: auto;
    display: block;
    margin: auto;
}

.btn.btn-outline-secondary.interactivity-style > svg .symbol {
    fill: #d8d8d8;
}

.btn.btn-outline-secondary.interactivity-style.active > svg .symbol,
.btn.btn-outline-secondary.interactivity-style:hover > svg .symbol,
.btn.btn-outline-secondary.interactivity-style:focus > svg .symbol {
    fill: #4b4b4b;
}

/* dropzone styles */

.dropzone {
    display: inline-block;
    border: 0;
    padding: 0;
    min-height: auto;
    background: transparent;
}

.dropzone[disabled] {
    pointer-events: none;
}

.dropzone .dz-message {
    margin: 0;
}

.dropzone.with-bottom-margin {
    margin-bottom: 4rem;
}

.dz-error-message {
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
}

.upload-preview-item {
    position: relative;
    border: 2px solid #d2d2d2;
    border-radius: 0.5rem;
    display: inline-block;
    width: 153px;
    height: 122px;
}

.upload-preview-item img {
    display: none;
}

.upload-preview-item img[src] {
    display: block;
}

.dz-complete.upload-preview-item {
    background: rgba(0, 0, 0, 0.05);
}

.dz-complete.upload-preview-item > img {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    object-fit: cover;
    border-radius: 0.5rem;
}

#audio-dropzone .dz-complete.upload-preview-item > img {
    object-fit: contain;
}

.dropzone .upload-preview-item img {
    border: 0;
}

.upload-preview-medium {
    width:180px;
    height:180px;
}

.upload-preview-item .btn-remove {
    position: absolute;
    top: -0.68vw;
    right: -0.68vw;
    width: 1.25vw;
    height: 1.25vw;
    background: #ff0000;
    color: #ffffff;
    font-size: 0.94vw;
    line-height:100%;
    border-radius: 1.25vw;
    font-weight: var(--font-weight-bold);
    display: none;
    padding: 0;
}

.dropzone[disabled] .btn-remove, .dropzone.disabled .btn-remove {
    display: none !important;
}

.upload-preview-item img {
    top: 0;
    left: 0;
    transform: none;
    border-radius: 0;
    width:100%;
    height: 100%;
    padding: 3rem;
    object-fit: contain;
    position: static;
    max-width: 100%;
    max-height: 100%;
}

.upload-preview-item .symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #d2d2d2;
    font-size: 3.4rem;
    font-weight: var(--font-weight-regular);
    z-index: 1;
    line-height: 4rem;
}

.upload-preview-item.dz-processing .symbol,
.upload-preview-item.dz-complete .symbol,
.upload-preview-item.dz-processing .help-text,
.upload-preview-item.dz-complete .help-text {
    opacity: 0;
}

.upload-preview-item .progress {
    position: absolute;
    bottom: 1rem;
    left: 2rem;
    right: 2rem;
    background-color: #d2d2d2;
    height: 0.5rem;
    border-radius: 0.5rem;
}

.upload-preview-item > .progress {
    opacity: 0;
}

.upload-preview-item .progress-bar {
    background-color: var(--primary-color);
    border-radius: 0.5rem;
}

.upload-preview-item.dz-success .btn-remove,
.upload-preview-item.dz-complete .btn-remove {
    display: block;
    z-index: 10;
}

.upload-preview-item-dotted.dz-processing .progress,
.upload-preview-item.dz-processing .progress {
    opacity: 1;
}

.upload-preview-item.dz-success .progress,
.upload-preview-item.dz-complete .progress {
    opacity: 0;
}

.dropzone .upload-preview-item.upload-preview-icon .progress {
    bottom: 50%;
    transform: translateY(-50%);
}

.dropzone .upload-preview-item.upload-preview-icon .progress .progress-bar {
    background-color: var(--primary-color);
}

.dropzone .upload-preview-item-dotted.upload-preview-icon {
    width: 160px;
    height: 160px;
}

.dropzone .dz-processing.upload-preview-item-dotted.upload-preview-icon {
    border-color:transparent;
}

.dropzone .upload-preview-item-dotted.upload-preview-icon .or-drop-here {
    font-size: 1.3rem;
    top: 65%;
}

.dropzone .upload-preview-item-dotted.upload-preview-icon .upload-file {
    font-size: 1.3rem;
    top: 44%;
}

.dropzone .upload-preview-item-dotted.upload-preview-icon .or-drop-here,
.dropzone .upload-preview-item-dotted.upload-preview-icon .upload-file {
    padding: 0.5rem 1.1rem;
}

.dropzone .upload-preview-item-dotted.upload-preview-icon > img,
.dropzone .dz-complete.upload-preview-item-dotted.upload-preview-icon > img {
    padding: 0;
    border-radius: 2rem;
}


.upload-preview-item.upload-preview-icon.dz-success .btn-remove,
.upload-preview-item.upload-preview-icon.dz-complete .btn-remove {
    top: 1rem;
    right: 1rem;
    width: 3.3rem;
    height: 3.3rem;
    font-size: 2.4rem;
}

.upload-preview-item.upload-preview-icon .btn-remove:hover {
    color: #fff;
    background: #ff0000;
}

#interactivity-audio-player {
    width: 521px;
    border-radius: 0.5rem;
}

/* loader overlay layer */
.loader-overlay {
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    z-index: 98;
    background: #ebf1f7;
}

.loader-overlay > div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.loader-overlay .lds-dual-ring {
    width: 100px !important;
    height: 100px !important;
}

.loader-overlay .lds-dual-ring div {
    width: 80px !important;
    height: 80px !important;
    top: 10px;
    left: 10px;
}

.modal-content .loader-overlay {
    padding: 20rem;
    position:static;
    background:#fff;
}

/* general designer */
.btn-designer-container {
    flex-shrink: 0;
    width: 100%;
    max-width:100%;
    justify-content: center;
}

@media (min-width: 768px) {
    .btn-designer-container {
        justify-content: normal;
    }
}

.designer-sidebar {
    max-width: 100%;
}

@media (min-width:767px) {
    .designer-sidebar {
        max-width: 12.5vw;
        width: 100%;
    }
}

.btn-designer-wrapper {
    margin-top: 0.78vw;
    width: 15%;
}
/* remove todo? */
@media (min-width: 768px) {
    .btn-designer-wrapper {
        width: 50%;
    }
}

.btn-designer-wrapper.interactivity {
    margin: 0 2vh;
    width: auto;
    min-width: none;
    max-width: none;
}

@media (max-width:767px) {
    .btn-designer-wrapper.interactivity {
        min-width: none;
        max-width: none;
    }
}

.btn-designer-wrapper.interactivity > .btn-designer {
    width: 6.4vh;
    height: 6.4vh;
}

.btn-designer-wrapper.interactivity > .btn-designer svg {
    width: 57%;
    max-width: 100%;
    height: 57%;
    max-height: 100%;
}

.btn-designer-wrapper.interactivity > .btn-designer > .wrapper svg {
    width: 100%;
    height: 100%;
}

.btn.btn-designer {
    background: transparent;
    border: 2px solid #cacaca;
    padding: 0;
    position: relative;
    margin: 0 auto;
    border-radius: 5px;
    width: 4.7vw;
    height: 4.7vw;
}

.btn.btn-designer.highlighted {
    z-index: 1010;
    pointer-events: none;
    border-color: var(--primary-color);
}

.btn.btn-designer.highlighted svg .symbol {
    fill: var(--primary-color);
}

.btn.btn-designer.highlighted svg .fill {
    fill: #6f6f6f;
}

.btn.btn-designer.interactivity-action {
    border-color: #dadada;
}

.btn.btn-designer:not(:disabled):not(.disabled):active {
    background: #fff;
}

.btn.btn-designer > svg {
    max-width: 1.88vw;
    max-height: 100%;
    width: 100%;
    height: auto;
    display:block;
    margin: auto;
    padding: 2px;
}

.btn.btn-designer > .wrapper {
    width: 57%;
    max-width: 100%;
    height: 57%;
    max-height: 100%;
    margin: auto;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    padding: 5px;
}

.btn.btn-designer.disabled > .wrapper {
    border-color: #d8d8d8;
}

.btn.btn-designer.background > .wrapper {
    background: var(--primary-color);
}

.btn.btn-designer.background.disabled > .wrapper {
    background: #d8d8d8;
}

.btn.btn-designer.background > .wrapper > svg .symbol {
    fill: #fff;
}

.btn.btn-designer.small > svg {
    max-width: 1.3vw;
}

.btn.btn-designer > svg.icon-show-state {
    max-width: 50px;
}

.btn.btn-designer > svg.icon-file-settings {
    width: 67%;
    height: 67%;
}

.btn.btn-designer > svg.svg-icon-description {
    max-width: 60px;
}

.btn.btn-designer > .color-value {
    display: none;
}

.btn.btn-designer:not(:disabled):not(.disabled):hover,
.btn.btn-designer:not(:disabled):not(.disabled).active,
.btn.btn-designer:not(:disabled):not(.disabled).active-colorpicker, 
.btn.btn-designer:not(:disabled):not(.disabled).active-sidebar {
    background: transparent;
}

.btn.btn-designer .symbol {
    fill: #cacaca;
}

.btn.btn-designer.interactivity-action .symbol {
    fill: #cacaca;
    stroke: none;
}

.btn.btn-designer .icon-file-settings .symbol {
    fill: transparent;
    stroke: #cacaca;
}

.btn.btn-designer .svg-icon-tap-area .symbol {
    stroke: #cacaca;
}

.btn.btn-designer .symbol.inactive {
    fill: #cacaca !important;
}

.interactivities-menu {
    padding: 2.8vh 0 1.3vh 0;
    width: 595px;
    margin: 0 15px;
}

.interactivities-menu .btn.btn-designer.on .symbol,
.btn.btn-designer:hover .symbol,
.btn.btn-designer.active .symbol,
.btn.btn-designer.active-colorpicker .symbol, 
.btn.btn-designer.active-sidebar .symbol  {
    fill: var(--primary-color);
    stroke: none;
}

.interactivities-menu .btn.btn-designer.on .icon-file-settings .symbol {
    stroke: var(--primary-color);
    fill: transparent;
}

.interactivities-menu .btn.btn-designer.on .svg-icon-tap-area .symbol {
    fill: var(--primary-color);
    stroke: var(--primary-color);
}

.interactivities-menu-secondary {
    padding: 2.8vh 0 1.5vh 0;
}

.interactivities-menu-secondary > .wrapper {
    max-width: 120px;
}

.interactivities-menu-secondary .btn-outline-action,
.interactivities-menu-secondary .has-tooltip {
    width: 100%;
    padding: calc(0.85vh - 1px) 0 !important;
    font-size: 1.15vh !important;
    max-width: 14vh;
}

.interactivities-menu-secondary .btn-outline-action + .btn-outline-action {
    margin-top: 1vh;
}

.interactivities-menu-secondary .btn-outline-action.has-tooltip.selected-tooltip {
    padding: calc(0.85vh - 2px) 0;
}

.btn.btn-designer ~ label {
    width: 100%;
    font-size: 0.7vw;
    margin-top: 0.16vw;
    text-align: center;
    padding:0 2px;
    color:var(--tertiary-color);
    line-height: 1.4;
}

.btn-designer-wrapper.interactivity .btn.btn-designer ~ label {
    font-size: 1.2vh;
    color: #d8d8d8;
    margin-top: 0.15vh;
}

.btn-designer-wrapper.interactivity .btn.btn-designer.on ~ label {
    color: var(--tertiary-color);
}

.icon-tiny {
    height: 40px;
    width: 40px;
    display: inline-block;
}

.icon-tiny {
    height: 35px;
    width: 35px;
}

.icon-tiny > svg {
    height:100%;
    width:100%;
    display: block;
}

.icon-tiny > svg .fill {
    fill: transparent;
}

.icon-tiny > svg .emblem {
    fill: #000;
}

.icon-tiny.inverse > svg .emblem {
    fill: #fff;
}

.btn.btn-designer > svg.icon-nav-bg-color {
    max-width: 1.98vw;
}

.btn.btn-designer > svg.icon-nav-logotype {
    max-width: 2.19vw;
}

.btn.btn-designer > svg.icon-main-upload-image {
    max-width: 1.82vw;
}

.btn.btn-designer > svg.icon-main-icon-bg-color {
    max-width: 1.98vw;
}

#designer-btn-icon-bg-color:hover > svg.icon-main-icon-bg-color .fill{
    fill: var(--primary-color)!important;
}

#designer-btn-icon-bg-color.active > svg.icon-main-icon-bg-color .fill
{
    fill: var(--primary-color)!important;
}

#designer-btn-icon-bg-color.active-colorpicker > svg.icon-main-icon-bg-color .fill,
#designer-btn-icon-bg-color.active-sidebar > svg.icon-main-icon-bg-color .fill
{
    fill: var(--primary-color)!important;
}

.btn.btn-designer > svg.icon-main-text-color {
    max-width: 1.67vw;
}

.btn.btn-designer > svg.icon-main-lines-color {
    max-width: 1.98vw;
}

.btn.btn-designer > svg.icon-main-banner {
    max-width: 3.03vw;
}

.btn.btn-designer > svg.icon-main-icon-color {
    max-width: 1.98vw;
}

.btn.btn-designer.disabled {
    opacity: 1;
    pointer-events: none;
}

.btn.btn-designer.disabled:hover {
    border-color: #dadada;
}

.btn.btn-designer.disabled.on .symbol,
.btn.btn-designer.disabled:hover .symbol,
.btn.btn-designer.disabled:focus .symbol {
    fill: #cacaca;
}

.btn.btn-designer.disabled.on .icon-file-settings .symbol,
.btn.btn-designer.disabled:hover .icon-file-settings .symbol,
.btn.btn-designer.disabled:focus .icon-file-settings .symbol {
    fill: transparent;
}


.btn.btn-designer.disabled.interactivity-action.bare-icon > svg.svg-link-1 .symbol,
.btn.btn-designer.disabled.interactivity-action.bare-icon > svg.svg-photo-1 .symbol,
.btn.btn-designer.disabled.interactivity-action.bare-icon > svg.svg-video-1 .symbol,
.btn.btn-designer.disabled.interactivity-action.bare-icon > svg.svg-sound-1 .symbol {
    fill: #cacaca;
}

.btn.btn-designer.interactivity-action.bare-icon > svg.svg-link-1, 
.btn.btn-designer.interactivity-action.bare-icon > svg.svg-photo-1,
.btn.btn-designer.interactivity-action.bare-icon > svg.svg-video-1,
.btn.btn-designer.interactivity-action.bare-icon > svg.svg-sound-1 {
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    background: none !important;
}

.btn.btn-designer.on.interactivity-action.bare-icon > svg.svg-link-1 .symbol, 
.btn.btn-designer.on.interactivity-action.bare-icon > svg.svg-photo-1 .symbol,
.btn.btn-designer.on.interactivity-action.bare-icon > svg.svg-video-1 .symbol,
.btn.btn-designer.on.interactivity-action.bare-icon > svg.svg-sound-1 .symbol {
    fill: var(--primary-color);
}

#designer-preview {
    position: relative;
}

.designer-active {
    outline: 2px solid var(--designer-outline-color) !important;
    z-index: 90;
}

#designer-preview svg {
    -webkit-backface-visibility: initial;
}

.designer-active.cover-line-name {
    outline-offset: -2px;
}

.designer-active.svg-icon-cart-transparent,
.designer-active.svg-icon-settings,
.designer-active.svg-icon-logout {
    outline-offset: -1px;
}

.designer-active.pricing > .line {
    display: none;
}

#tablet-nav-h.designer-active,
#tablet-nav-v.designer-active,
#tablet-v-secondary-nav.designer-active,
#phone-nav-v.designer-active,
#phone-v-line.designer-active {
    outline-offset: -2px;
}

.designer-navigation-icon-menu.designer-active {

}

#tablet-h-line.designer-active,
#tablet-v-line.designer-active,
#designer-phone-v .tabs.designer-active {
    outline-offset: -2px;
}

#designer-phone-v .banner img.designer-active {
    outline-offset: -2px;
}

.prevent-designer-highlight {
    outline: 0 !important;
}

/* custom color picker style */
#mycolorpicker {
    position: absolute;
    top: 102px;
    left: 0;
    right: auto;
    bottom: 0;
    width: 325px;
    padding: 0;
    z-index: 1005;
    background: #353535;
    transition: left 0.3s ease-out, right 0.3s ease-out, opacity .15s linear;
    opacity: 1;
}

@media(orientation: portrait) {
    #mycolorpicker {
        display: none;
    }
}

#mycolorpicker.right {
    left: auto;
    right: 0;
}

#mycolorpicker.left {
    left: 0;
    right: auto;
}

#mycolorpicker.hidden {
    left: -325px;
    right: auto;
    opacity: 0;
}

#mycolorpicker.hidden.right {
    left: auto;
    right: -325px;
}

#mycolorpicker.hidden.left {
    left: -325px;
    right: auto;
}

.colorpickle {
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #353535 !important;
}

.colorpickle .title {
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    font-size: 2rem;
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
}

.colorpickle .colorPickerWrapper {
    overflow: hidden;
}

.colorpickle .colorPickerWrapper,
.colorpickle .swatchHex {
    margin-top: 0px !important;
}

.colorpickle .sliderWrapper:not(.hWrapper):not(.aWrapper) {
    display: none !important;
}

.colorpickle .sliderWrapper.hWrapper {
    position: absolute !important;
    left: 273px;
    top: 95px;
    width: 405px;
    transform: rotate(90deg);
    transform-origin: 0;
    height: 20px;
}

.left > .colorpickle .sliderWrapper.hWrapper {
    left: 53px;
}

.colorpickle .hWrapper .sliderDiv .slider
{
    cursor: ns-resize;
}

/* colorpicker thumb styles Mozilla+WebKit+Ms */
.colorpickle .hWrapper .sliderDiv .slider::-moz-range-thumb
{
    border: none !important;
    width: 1px !important;
    background: #000 !important;
    border-radius: 0 !important;
    height: 20px !important;
    margin: 0;
    transform: none;
    box-sizing: border-box;
}

.colorpickle .hWrapper .sliderDiv .slider::-webkit-slider-thumb {
    border: none !important;
    width: 1px !important;
    background: #000 !important;
    border-radius: 0 !important;
    height: 20px !important;
    margin: 0;
    transform: none;
}

.colorpickle .hWrapper .sliderDiv .slider::-ms-thumb {
    border: none !important;
    width: 1px !important;
    background: #000 !important;
    border-radius: 0 !important;
    margin: 0;
    transform: none;
}

/* colorpicker track styles Mozilla+WebKit+Ms */
.colorpickle .hWrapper .sliderDiv .slider::-moz-range-track {
    height: 20px;
}

.colorpickle .hWrapper .sliderDiv .slider::-webkit-slider-runnable-track {
    height: 20px;
}

.colorpickle .hWrapper .sliderDiv .slider::-ms-track {
    height: 20px;
}

.colorpickle .sliderWrapper.hWrapper label,
.colorpickle .sliderWrapper.hWrapper .hInput {
    display: none;
}

.colorpickle .sliderWrapper.aWrapper{
    position: absolute !important;
    left: 50%;
    transform: translateX(-50%);
    top: 580px;
    width: 242px;
    z-index: 100;
}

.colorpickle .sliderWrapper.aWrapper label {
    color: #ffffff;
    line-height: 100%;
    position: absolute;
    top: -15px;
    left: 1px;
    padding: .1rem .5rem;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

.colorpickle .sliderWrapper.aWrapper .hInput {
    display: none;
}

.colorpickle .aWrapper .sliderBg {
    display:none;
}

.colorpickle .aWrapper .sliderDiv {
    left: 0;
    right: 0;
    top: 5px;
}

.colorpickle .aWrapper .sliderDiv .slider {
    margin: 0;
    background: #9bd0ff;
    height: 5px;
    border-radius: 1rem;
}

/* FF style */
.colorpickle .aWrapper .sliderDiv .slider::-moz-range-progress {
    background: var(--primary-color);
    height: 5px;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.colorpickle .aWrapper .sliderDiv .slider::-moz-range-thumb {
    border: 0 !important;
}

.colorpickle .aWrapper .sliderDiv .slider::-moz-range-track {
    background: #9bd0ff;
    height: 5px;
}

/* Chrome style */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .colorpickle .aWrapper .sliderDiv .slider {
        /* overflow: hidden; */
    }
    
    .colorpickle .aWrapper .sliderDiv .slider::-webkit-slider-thumb {
        /* box-shadow: -100vw 0 0 100vw var(--primary-color); */
        border: 0 !important;
    }

    .colorpickle .aWrapper .sliderDiv .slider::-webkit-runnable-track
    {
        background: #9bd0ff;
    }
}

/* Edge style */
.colorpickle .aWrapper .sliderDiv input.slider::-ms-fill-lower {
    background: #5ca9ff !important;
    height: 5px !important;
}

.colorpickle .aWrapper .sliderDiv .slider::-ms-thumb {
    border: 0 !important;
}

.colorpickle .aWrapper .sliderDiv .slider::-ms-fill-upper {
    background: #9bd0ff !important;
    height: 5px !important;
}

.colorpickle .aWrapper .aInput {
    display: none;
}

.colorpickle .sliderBg {
    border: 0;
    border-radius: 1rem;
}

.colorpickle .swatchHex {
    position: absolute !important;
    top: 80px;
    left: 0;
    width: 100%;
    
    /*left: 62pxsx;*/
    /*width: 222px;*/
}

#mycolorpicker .colorpickle .swatchHex {
  
    left: 42px;
    width: 242px;
}

.colorpickle .swatch {
    width: 110px !important;
    height: 180px !important;
    margin: 0 !important;
    border: 0 !important;
    display:none;
}

.colorpickle .hexValue {
    display: block;
    width: 90px !important;
    margin: 0 auto;
    border: 0 !important;
    border-bottom: 1px solid #ffffff !important;
    background: transparent !important;
    color: #ffffff !important;
    text-align: center;
    float: right;
}

.colorpickle .hWrapper .sliderBg {
    border-radius: 0;
    top: -1px;
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    border: 0px solid #e5e5e5;
}

.left .colorpickle .hWrapper .sliderBg {
    top: 0;
    bottom: -1px;
}

.colorpickle .hWrapper .sliderDiv {
    left: 0;
    right: 0;
    height: 20px;
}

.colorpickle .hWrapper .sliderDiv .slider {
    margin: 0;
    height: 20px;
    padding: 0 1px;
}

.colorpickle .colorPickerWrapper {
    position: absolute !important;
    left: 42px;
    top: 105px;
    width: 222px !important;
    height: 405px !important;
    border: 0px solid #e5e5e5 !important;
    border-right: none !important;
}

.left .colorpickle .colorPickerWrapper {
    left: 62px;
    border: 0px solid #e5e5e5 !important;
    border-left: none !important;
}

.colorpickle .buttonsWrapper {
    top: 660px !important;
    left: 0 !important;
    bottom: auto !important;
    right: 0 !important;
}

.colorpickle button.cancelBtn {
    position: absolute;
    top: -647px;
    left: 0;
    background: transparent url('../img/svg-icon-hide.svg') no-repeat center center;
    background-size: 100%;
    border: 0;
    border-radius: 0;
    width: 3.5rem;
    height: 3.5rem;
    transform: rotate(90deg);
    cursor: pointer;
}

#mycolorpicker.left .colorpickle button.cancelBtn {
    left: auto;
    right: 0;
    transform: rotate(-90deg);
}

.colorpickle button.cancelSecondaryBtn {
    position: absolute;
    top: -2.4rem;
    right: -2.4rem;
    border: 2px solid #696969;
    border-radius: 2.4rem;
    background: #fff;
    color: #696969;
    width: 2.4rem;
    height: 2.4rem;
    padding:0;
    margin:0;
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    z-index:10;
    line-height: 100%;
}

.colorpickle button.okBtn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    cursor: pointer;
    width: 82px;
    margin:0;
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    background: transparent;
    text-align: center;
    border-radius: 3rem;
    color: var(--primary-color);
    font-weight: var(--font-weight-black);
    border: 1px solid var(--primary-color);
    min-width: 130px;
    letter-spacing: 0.05rem;
    background-color: #fff;
    border: 0px;
}

.colorpickle button.okBtn:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: none;
}

.colorpickle .colorPickerIndicator {
    width: 20px !important;
    height: 20px !important;
    border-color: #fff !important;
}

.colorpickle .colorPickerIndicator::before,
.colorpickle .colorPickerIndicator::after {
    border: none !important;
}

#mycolorpicker-background,
#mycolorpicker-text-color,
#mycolorpicker-icon-emblem-color,
#mycolorpicker-icon-background-color {
    display: inline-block;
}

#mycolorpicker-background .colorpickle,
#mycolorpicker-text-color .colorpickle,
#mycolorpicker-icon-emblem-color .colorpickle,
#mycolorpicker-icon-background-color .colorpickle {
    width: 242px !important;
    height: 282px !important;
}

#mycolorpicker-background .colorpickle .swatchHex,
#mycolorpicker-text-color .colorpickle .swatchHex,
#mycolorpicker-icon-emblem-color .colorpickle .swatchHex,
#mycolorpicker-icon-background-color .colorpickle .swatchHex {
    top: 0;
}

#mycolorpicker-background .colorpickle .sliderWrapper.hWrapper,
#mycolorpicker-text-color .colorpickle .sliderWrapper.hWrapper,
#mycolorpicker-icon-emblem-color .colorpickle .sliderWrapper.hWrapper,
#mycolorpicker-icon-background-color .colorpickle .sliderWrapper.hWrapper {
    top: 15px;
    left: 11px;
    width: 222px;
}

#mycolorpicker-background .colorpickle .sliderWrapper.aWrapper,
#mycolorpicker-text-color .colorpickle .sliderWrapper.aWrapper,
#mycolorpicker-icon-emblem-color .colorpickle .sliderWrapper.aWrapper,
#mycolorpicker-icon-background-color .colorpickle .sliderWrapper.aWrapper {
    top: 275px;
}

#mycolorpicker-background .colorpickle .colorPickerWrapper,
#mycolorpicker-text-color .colorpickle .colorPickerWrapper,
#mycolorpicker-icon-emblem-color .colorpickle .colorPickerWrapper,
#mycolorpicker-icon-background-color .colorpickle .colorPickerWrapper {
    top: 25px;
    left: 20px;
    width: 222px !important;
    height: 222px !important;
    border: 0px solid #e5e5e5 !important;
    border-left: none !important;
}

input[type="range"] {
    cursor:pointer;
    overflow: visible;
}

input[type="range"]::-moz-range-thumb {
    width: 17px !important;
    height: 17px !important;
    background: var(--primary-color) !important;
    border: 2px solid #fff !important;
    border-radius: 50% !important;
    cursor: pointer;
}


input[type="range"]::-moz-range-progress {
    height:100%;
}

input[type="range"]::-webkit-slider-thumb {
    width: 17px !important;
    height: 17px !important;
    background: var(--primary-color) !important;
    border: 2px solid #fff !important;
    border-radius: 50% !important;
    transform:translateY(2px);
    cursor: pointer;
}

input[type=range]::-ms-thumb {
    width: 17px !important;
    height: 17px !important;
    background: var(--primary-color) !important;
    border: 2px solid #fff !important;
    border-radius: 50% !important;
    transform:translateY(65%);
    cursor: pointer;
}

/* DESIGNERS COMMON */
.cover-wrapper {
    position: relative;
}

.designer-container {
    cursor: pointer;
}

.designer-frame {
    display:block;
    width: 100%;
    height: 100%;
    z-index: -1;
    position:absolute;
    top:0;
    left:0;
}

.designer-frame.highlighted {
    outline: 2px solid var(--primary-color);
    z-index: 1010;
    pointer-events: none;
}

.subscription-line.hide,
.show-when-free.hide,
.show-when-paid.hide {
    display: none !important;
}

.show-when-free > svg,
.show-when-paid > svg {
    width: 100%;
    height: 100%;
}

.featured-double {
    position: absolute;
    top: 0;
    height: 0;
    left: 0;
    width: 0;
    z-index: 5;
}

/* PC DESIGNER */
#designer-pc {
    font-family: 'Lato', sans-serif !important;
    position: relative;
    max-width: 42vw;
    width: 100vw;
    max-height: 23.45vw;
    height: 100vh;
    margin: 4.75% 5% 9% 5%;
}

@media (max-width: 767px) {
    #designer-pc {
        max-width: 72vw;
        max-height: 40.3vw;
    }
}

#designer-pc .designer-container  {
    width: 100%;
    height: 100%;
    padding: 0 15px;
}

#designer-pc #designer-pc-image {
    position: absolute;
    top: -5.2vw;
    left: -6.95vw;
    width: 132.9%;
    z-index: -1;
}

@media (max-width: 767px) {
    #designer-pc #designer-pc-image {
        top: -9vw;
        left: -12vw;
        width: 133.3%;
    }
}

#designer-pc .icon {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;   
    display: block; 
    max-width: 100%;
    max-height: 100%;
}

#designer-pc #navigation {
    background-color: #fdfefeff;
    margin:0 -15px;
    outline-offset: -1px;
    padding: 9.5px 10px;
    height: 11.6%;
    flex-shrink: 0;
}

#designer-pc #navigation > * {
    flex: 1;
}

#designer-pc #navigation .navbar-brand {
    padding: 0;
    height: 100%;
}
#designer-pc #navigation .navbar-nav {
   

margin-bottom: 0.5vw;
}

#designer-pc #navigation #logo {
    height: 100%;
    max-width: 100%;
    display:block;
    margin:0 auto;
}

#designer-pc .navbar-expand .navbar-nav .nav-link {
    padding: 0 0.2vw;
}

#designer-pc #navigation .icon {
    width: 1.905vw;
    height: 1.905vw;
}

@media (max-width: 768px) {
    #designer-pc #navigation .icon {
        width: 1vw;
        height: 1vw;
    }
    
}

#designer-pc .featured-icon {
    display: block;
}

#designer-pc .featured-icon > svg {
    display: block;
}

#designer-pc-filler {
    height:0;
    width:100%;
    padding-top: 2%;
}

#designer-pc .cover-wrapper:not(.cover-wrapper-featured) .progress-wrapper > .progress {
    height: 5px;
}

/* PC DESIGNER navigation icons */
#designer-pc #navigation .svg-icon-cart-transparent:hover .emblem,
#designer-pc #navigation .svg-icon-login:hover .emblem,
#designer-pc #navigation .svg-icon-logout:hover .emblem,
#designer-pc #navigation .svg-icon-settings:hover .emblem
{
    display: none;
}

#designer-pc #navigation .svg-icon-cart-transparent:hover .fill,
#designer-pc #navigation .svg-icon-login:hover .fill,
#designer-pc #navigation .svg-icon-logout:hover .fill,
#designer-pc #navigation .svg-icon-settings:hover .fill {
    display: none;
}

#designer-pc #navigation .svg-icon-cart-transparent:hover .fill-full,
#designer-pc #navigation .svg-icon-login:hover .fill-full,
#designer-pc #navigation .svg-icon-logout:hover .fill-full,
#designer-pc #navigation .svg-icon-settings:hover .fill-full {
    display: block;
}

/* PC DESIGNER featured icons */
#designer-pc .svg-icon-share .emblem,
#designer-pc .svg-icon-favorite .emblem,
#designer-pc .svg-icon-info .emblem {
    fill:#6e6e6e;
}
#designer-pc .svg-icon-share:hover .emblem,
#designer-pc .svg-icon-favorite:hover .emblem,
#designer-pc .active .svg-icon-favorite .emblem,
#designer-pc .svg-icon-info:hover .emblem {
    fill:#c7c7c7;
}
#designer-pc .svg-icon-share .fill,
#designer-pc .svg-icon-favorite .fill,
#designer-pc .svg-icon-info .fill {
    fill:#6e6e6e;
    display:block;
}
#designer-pc .svg-icon-share:hover .fill,
#designer-pc .svg-icon-favorite:hover .fill,
#designer-pc .active .svg-icon-favorite .fill,
#designer-pc .svg-icon-info:hover .fill {
    display:none;
}
#designer-pc .svg-icon-share .fill-full,
#designer-pc .svg-icon-favorite .fill-full,
#designer-pc .svg-icon-info .fill-full {
    display:none;
}
#designer-pc .svg-icon-share:hover .fill-full,
#designer-pc .svg-icon-favorite:hover .fill-full,
#designer-pc .active .svg-icon-favorite .fill-full,
#designer-pc .svg-icon-info:hover .fill-full {
    fill:#6e6e6e;
    display:block;
}

/* PC DESIGNER general icons */
.svg-icon-cart .fill,
.svg-icon-read .fill {
    fill:#94c55e;
}
.svg-icon-cart:hover .fill,
.svg-icon-read:hover .fill {
}
.svg-icon-cart .emblem,
.svg-icon-read .emblem {
    fill:#FFFFFF;
}

#designer-pc #navigation .svg-icon-cart:hover .fill {
    filter: none;
}

/* PC DESIGNER other */

#designer-pc .btn:active:focus {
    box-shadow: none;
}

#designer-pc .cover {
    width: 75.5%;
    height: 100%;
}

#designer-pc .cover-featured {
    width: 96.7%;
    height: 100%;
}

#designer-pc .cover-line > .cover-line-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 300;
}

#designer-pc .cover-featured > .cover-line {
    max-width: 216px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

#designer-pc .cover-line > div:not(#featured-name) {
    font-size: 0.8vw;
    line-height: 1.7;
    margin: 0.3vw 0;
}

@media (max-width: 767px) {
    #designer-pc .cover-line > div:not(#featured-name) {
        margin-top: 0.15vw;
        font-size: 0.6vw;
    }
}

#designer-pc .cover-line-adjustable {
    position: relative;
}

#designer-pc #read-featured,
#designer-pc #read-featured-paid {
    position: relative;
}

#designer-pc #featured .icon#featured-share {
    --featured-share-bottom:2.35vw;
    position: absolute;
    bottom: var(--featured-share-bottom);
    right: 0;
    width: 1.91vw;
    max-width: 1.91vw;
    height: 1.91vw;
    max-height: 1.91vw;
}

@media (max-width: 767px) {
    #designer-pc #featured .icon#featured-share {
        --featured-share-bottom:3vw;
    }
}

#designer-pc #featured .icon#featured-info {
    --featured-info-bottom:2.35vw;
    position: absolute;
    bottom: var(--featured-info-bottom);
    left: 0;
    width: 1.91vw;
    max-width: 1.91vw;
    height: 1.91vw;
    max-height: 1.91vw;
}

@media (max-width: 767px) {
    #designer-pc #featured .icon#featured-info {
        --featured-info-bottom:3vw;
    }
}

#designer-pc #featured-name, .featured-spacer  {
    font-size: 1.00vw;
    /*font-weight: var(--font-weight-regular);*/
    width:100%;
}

#designer-pc #featured-name {
    line-height: 1.7;
    margin: 0.45vw 0;
}

@media (max-width: 767px) {
    #designer-pc #featured-name, .featured-spacer  {
        font-size: 1.05vw;
    }
}

#designer-pc .featured-spacer {
    height: 1.65vw;
    margin: 0 !important;
}

@media (max-width: 767px) {
    #designer-pc .featured-spacer {
        height: 4.65vw;
    }
}

#designer-pc #designer-pc-container {
    --designer-web-bg-color:none;
    color: #4e4d4d;
    background-size: cover;
    background-position: center;
    position: relative;
}


#designer-pc #designer-pc-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--designer-web-bg-color);
    pointer-events: none;
}

#designer-pc .show-when-featured-bought, 
#designer-pc .hide-when-featured-bought {
    display: none;
}

#designer-pc #featured {
    padding-top: 5.6%;
}

#designer-pc #featured .cover-line .icon-wrapper {
    width: 100%;
    margin: 0;
    padding: 0 30%;
}

#designer-pc #featured .icon-wrapper .icon > div {
    width: 100%;
    height: 100%;
}

#designer-pc #featured .cover-line .icon {
    width: 100%;
    height: 100%;
}

#designer-pc #featured .cover-line .icon::before {
    display: block;
    width: 25%;
}

#designer-pc #featured .cover-line .icon > svg {
    max-width:100%;
    max-height: 100%;
}

#designer-pc .icon > svg {
    width:100%;    
    height:100%;
}

#designer-pc #featured .icon {
    width: 1.25vw;
    max-width: 1.25vw;
    height: 1.25vw;
    max-height: 1.25vw;
}


@media (max-width: 767px) {
    #designer-pc #featured .icon {
        width: 1.36vw;
        max-width: 1.36vw;
        height: 1.36vw;
        max-height: 1.36vw;
    }
}

#designer-pc #featured .icon.featured-buy,
#designer-pc #featured .icon.current-subscription-url {
    width: 2.0vw;
    max-width: 2.0vw;
    height: 2.0vw;
    max-height: 2.0vw;
}

@media (max-width: 767px) {
    #designer-pc #featured .icon.featured-buy,
    #designer-pc #featured .icon.current-subscription-url {
        width: 2vw;
        max-width: 2vw;
        height: 2vw;
        max-height: 2vw;
    }
}

#designer-pc #featured .pricing {
    font-weight: 300;
    font-size: 0.8vw;
    width: 100%;
    color: #313131;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    display: flex;
}

#designer-pc #featured .pricing > * {
    line-height: 2.7;
}

@media (max-width: 767px) {
    #designer-pc #featured .pricing {
        font-size: 0.79vw;
    }
}

#designer-pc #featured .pricing > * {
    text-overflow: ellipsis;
}

#designer-pc #featured .pricing.subscription {
    width: 100%;
}

#designer-pc #featured .pricing > .price {
    font-weight: 400;
}

#designer-pc #featured .pricing > .line-top {
    position:absolute;
    top:0;
    left:0;
    right:0;
    height: 1px;
    background-color: #898787;
}

#designer-pc #featured .pricing > .line-bottom {
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    height: 1px;
    background-color: #898787;
}

#designer-pc #featured .dropdown-toggle {
    color: #313131;
    font-weight:300;
    background: none;
    background-size: 4px 5px;
    padding: 0;
    font-size: 0.8vw;
    border: 0;
    margin-top:0;
}

@media (max-width: 767px) {
    #designer-pc #featured .dropdown-toggle {
        font-size: 0.79vw;
    }
}

#designer-pc #featured .dropdown-toggle::after {
    display:none;
}

#designer-pc #featured .dropdown-toggle-icon {
    width: 4px;
    height: 5px;
    margin-bottom: 2px;
}

#designer-pc #featured .btn-primary {
        min-width: auto;
    border-color: transparent;
    background-color: #c6bbb7;
    font-size: 0.65vw;
    padding: 0.15vw 0.93vw;
    letter-spacing: 0.035vw;
    font-weight: var(--font-weight-light);
}

#designer-pc #featured .btn-primary:hover {
    color: #fff;
}

#designer-pc #featured .btn-primary:focus {
    box-shadow: none;
}

#designer-pc .cover > .cover-wrapper > img {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#designer-pc .cover-wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 137%;
    margin: 0 auto;
}

#designer-pc .cover-wrapper.cover-wrapper-featured {
    width: 100%;
    padding-bottom: 126%;
}

#designer-pc #banner .col {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 16.15%;
    margin: 0 auto;
}

#designer-pc #banner img {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#designer-pc .cover > .cover-wrapper > img,
#designer-pc #banner img.default {
    box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.05);
    /*filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.09));*/
}

#designer-pc [class^=col-],
#designer-pc .col {
    padding-left: 0.33vw;
    padding-right: 0.33vw;
}

#designer-pc .col-margin {
    padding-left: 0.33vw;
    padding-right: 0.33vw;
    flex: 0 0 5.6%;
    max-width: 5.6%;
    position: relative;
    width: 100%;
    min-height: 1px;
}

#designer-pc .filler-middle {
    padding-bottom: 1.55vw;
}

#designer-pc .filler {
    padding-bottom: 3vw;
}

/* MOBILE DESIGNER ICONS */

.designer-navigation-icon-menu {
    height: 1.25vw;
    width: auto;
    overflow: visible !important;
}

.designer-navigation-icon-bookmarks {
    height: 0.83vw;
}

/* TABLET DESIGNER */

#designer-preview.for-tablet .top-bar {
    width: 115%;
}


#designer-preview.for-tablet {
    width: 100%;
    max-width: 46vw;
    margin: 0 auto;
}

/* TABLET DESIGNER HORIZONTAL*/

#designer-tablet-h {
    font-family: 'Lato', sans-serif !important;
    position: relative;
    max-width: 36.46vw;
    width: 100vw;
    max-height: 27.4vw;
    height: 100vh;
    margin: 5.6% 0;
}

@media (max-width: 767px) {
    #designer-tablet-h {
        max-width: 72.92vw;
        max-height: 54.8vw;
    }
}

#designer-tablet-h .designer-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    position: absolute;
}

#designer-tablet-h #designer-tablet-h-image {
    position: absolute;
    top: -2.15vw;
    left: -4.04vw;
    width: 122.9%;
    z-index: -1;
}

@media (max-width: 767px) {
    #designer-tablet-h #designer-tablet-h-image {
        top: -4.3vw;
        left: -8.08vw;
    }
}

#designer-tablet-h .navigation {
    position: relative;
    width: 100%;
    height:13%;
    background-color: #adabab;
}

#designer-tablet-h .navigation .buttons-wrapper {
    width: 10%;
}

#designer-tablet-h .navigation .logo-wrapper {
    width: 52%;
    height: 96.6%;
    padding: 1.7% 0;
}

#designer-tablet-h .navigation .logo-wrapper.wider {
    width: 80%;
}

#designer-tablet-h .navigation .tabs-wrapper {
    width: 28%;
    display: flex;
}

#designer-tablet-h .logo
{
    width: auto;
    height: 100%;
}

#designer-tablet-h .buttons
{
    float:right;
    height:68px;
    width:42%;
}

#designer-tablet-h .navigation .icon
{
    display: inline-flex;
}

#designer-tablet-h .tabs
{
    float: right;
    width: 100%;
}

#designer-tablet-h .tab {
    color: #555555;
    font-size: 0.55vw;
    line-height: 18px;
    float: left;
    height: 18px;
    width: 50%;
    text-align: center;
    overflow:hidden;
    text-overflow: ellipsis;
    margin: 4px 0;
}

#designer-tablet-h .tab:last-of-type {
    border-left: 1px solid black;
}
#designer-tablet-v .tab:last-of-type {
    border-left: 1px solid black;
}

#designer-phone-v .tab:last-of-type {
    border-left: 1px solid black;
}


#designer-tablet-h .tab.active
{
    font-weight: var(--font-weight-semi-bold);
}

#designer-tablet-h .content
{
    height: 87%;
}

#designer-tablet-h .left-panel
{
    margin: 0 2.5%;
    width: 66.4%;
    height: 100%;
    float:left;
    position:relative;
}

#designer-tablet-h .separator {
    position:absolute;
    top:2%;
    bottom: 2%;
    left:2px;
    background-color: #e7e7e7;
    width:1px;
}

#designer-tablet-h .right-panel
{
    float:right;
    width: 28.6%;
    height: 100%;
    overflow:hidden;
    position:relative;
    padding: 2% 10px 10px 10px;
    display: flex;
    flex-direction: column;
}

#designer-tablet-h .right-panel .cover-wrapper
{
    margin: 0 auto;
    display: inline-block;
}

#designer-tablet-h .banner {
    width: 100%;
    height: 17.1%;
    margin: 2% auto 7% auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#designer-tablet-h .banner img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    position: absolute;
}

#designer-tablet-h .banner img.default {
    /*box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.05);*/
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.09));
}

#designer-tablet-h .current-issue-cover-wrapper
{
    float: left;
    width: 41.5%;
    height: 64.1%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#designer-tablet-h .current-issue-cover
{
    /*box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.05);*/
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.09));
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    position: absolute;
}

#designer-tablet-h .current-issue-cover[src$="loader.svg"] {
    box-shadow: none;
    filter: none;
}

#designer-tablet-h .current-issue-text
{
    font-weight: 400;
    line-height: 0.85vw;
    float: right;
    width: 56.4%;
    color: #a6a6a6;
    overflow: hidden;
    font-size: 0.750vw;
    padding: 0 2px;
}

#designer-tablet-h .current-issue-text span.issue-price
{
    font-size: 0.65vw;
}

#designer-tablet-h .current-issue-text .show-when-free{
    font-size: 0.75vw;
}


@media (max-width: 767px) { 
    #designer-tablet-h .current-issue-text
    {
        font-size: 1.05vw;
    }
}

#designer-tablet-h .current-issue-title
{
    font-weight: 400;
    font-family: 'Lato';
    margin-bottom: 0.4vw;
}

#designer-tablet-h .current-issue-title > span
{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    letter-spacing: 0.025rem;
    margin-bottom: 0.3vw;
}

#designer-tablet-h .current-issue-description
{
    font-family: 'Lato';
    font-weight: 300;
    font-size: 0.790vw;
    margin-bottom: 2px;
    overflow: hidden;
}

#designer-tablet-h .cover
{
    /*box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.05);*/
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.09));
    max-width: 9vw;
    max-height: 12vw;
}

#designer-tablet-h .cover[src$="loader.svg"] {
    box-shadow: none;
    filter: none;
}

@media (max-width: 767px) {
    #designer-tablet-h .cover
    {
        max-height: 16.16vw;
    }
}

#designer-tablet-h .cover:first-child {
    margin-top: 5px;
}

#designer-tablet-h .cover-title
{
    width: 100%;
    margin: 0 auto;
    max-width: 9vw;
    line-height: 1.6;
    margin: 0.15vw 0 0.875vw 0;
    padding: 0 3px;
    width: 100%;
    text-align: center;
    font-size: 0.62vw;
    color: #a8a8a8;
    font-family: 'Lato';
    font-weight: 400;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media (max-width: 767px) { 
    #designer-tablet-h .cover-title
    {
        font-size: 1.35vw;
    }
}

#designer-tablet-h .cover-title .show-when-free,
#designer-tablet-h .cover-title .show-when-paid > div {
    text-overflow: ellipsis;
    overflow: hidden;
}

#designer-tablet-h .cover-title .show-when-paid > div {
    float: left;
}

#designer-tablet-h .right-panel .progress-wrapper {
    width: 60%;
    left: 20%;
}

#designer-tablet-h .right-panel .progress-wrapper > .progress {
    height: 5px;
}

/* DESIGNER TABLET VERTICAL */
#designer-tablet-v {
    font-family: 'Lato', sans-serif !important;
    position: relative;
    max-width: 18.7vw;
    width:100vw;
    max-height: 24.88vw;
    height: 100vh;
    margin: 15.5% 8%;
}

@media (max-width: 767px) {
    #designer-tablet-v  {
        max-width: 37.4vw;
        max-height: 49.76vw;
        margin: 7.75% 4%;
    }
}

#designer-tablet-v .designer-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    position: absolute;
}

#designer-tablet-v #designer-tablet-v-image {
    position: absolute;
    top: 1.71vw;
    left: -5.9vw;
    width: 163.9%;
    transform: rotate(90deg);
}

@media (max-width: 767px) { 
    #designer-tablet-v #designer-tablet-v-image {
        top: 3.42vw;
        left: -11.8vw;
    }
}

#designer-tablet-v .navigation {
    position: relative;
    background-color: #adabab;
    height:10%;
}

#designer-tablet-v #tablet-v-secondary-nav.navigation {
    height: auto;
}

#designer-tablet-v .navigation .buttons-wrapper {
    width: 14%;
}

#designer-tablet-v .navigation .logo-wrapper {
    width: 72%;
    height: 97%;
    padding: 1.7% 0;
}

#designer-tablet-v .tabs-wrapper {
    padding-top: 0%;
    margin: 0%!important;
}

#designer-tablet-v .tabs-wrapper > .navigation.thinner {
    display: none;
    margin: 0;
    height: 0;
}

#designer-tablet-v #covers-thumbs {
    padding: 3% 0 0.85% 4.5%;
    overflow: hidden;
    align-items: start;
    justify-content: space-between;
}

#designer-tablet-v #covers-thumbs > div {
    padding-right: 4.7%;
}

#designer-tablet-v .logo
{
    height: 100%;
    width: auto;
}

#designer-tablet-v .buttons
{
    float:right;
    height:68px;
    width:42%;
}

#designer-tablet-v .navigation .icon
{
    width: 24px;
    min-width: 12px;
    height: 24px;
    display: inline-flex;
    align-items: center;
}

#designer-tablet-v .designer-navigation-icon-menu {
    /*height: 15px;*/
}

#designer-tablet-v .designer-navigation-icon-bookmarks {
    height: 11px;
}

#designer-tablet-v .tabs {
    display: block;
}

#designer-tablet-v .tab
{
    color: #555555;
    font-size: 0.45vw;
    line-height: 2.2;
    float: left;
    padding: 0 1.25vw;
    text-align: center;
    margin: 5px 0px;
}

@media (max-width: 767px) {
    #designer-tablet-v .tab {
        font-size: 0.72vw;
    }
}

#designer-tablet-v .tab.active
{
    font-weight: var(--font-weight-bold);
}

#designer-tablet-v .separator {
    background-color: #e7e7e7;
}

#designer-tablet-v .left-panel {
    padding: 0px 4.5%;
    height: 11.4%;
    margin-top: 5%;
}

#designer-tablet-v .middle-panel {
    padding: 0px 4.5%;
    height: 0;/* safari flex hack*/
}

#designer-tablet-v .banner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#designer-tablet-v .banner img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    position: absolute;
}

#designer-tablet-v .banner img.default {
    /*box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.05);*/
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.09));
}

#designer-tablet-v .current-issue-cover-wrapper
{
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#designer-tablet-v .current-issue-cover
{
    /*box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.05);*/
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.09));
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    position: absolute;
}

#designer-tablet-v .current-issue-cover,
#designer-tablet-v .cover
{
    /*box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.05);*/
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.09));
}


#designer-tablet-v .current-issue-cover[src$="loader.svg"],
#designer-tablet-v .cover[src$="loader.svg"] {
    box-shadow: none;
    filter: none;
}

#designer-tablet-v .current-issue-text
{
    margin-left: 2.95%;
    color: #a6a6a6;
    font-size: 0.6vw;
    line-height: 0.85vw;
    overflow: hidden;
    padding: 0 2px;
    position: relative;
}

#designer-tablet-v .current-issue-text span.issue-price
{
    font-size: 0.55vw;
}

#designer-tablet-v .current-issue-text .show-when-free{
    font-size: 0.55vw;
}

@media (max-width: 767px) { 
    #designer-tablet-v .current-issue-text
    {
        font-size: 0.84vw;
    }
}

#designer-tablet-v .current-issue-title
{
    font-weight: 400;
    font-family: 'Lato';
    margin-bottom: 0.1vw;
}

#designer-tablet-v .current-issue-title.padded
{
    padding-bottom: 0.58vw;
}

#designer-tablet-v .current-issue-title > span 
{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

#designer-tablet-v .current-issue-description
{
    font-family: 'Lato';
    font-weight: 300;
    font-size: 0.47vw;
    line-height: 0.65vw;
    overflow: hidden;
    margin-bottom: 2px;
}

#designer-tablet-v .right-panel .cover-wrapper
{
    display: inline-block;
}

#designer-tablet-v .cover
{
    height: 6.4vw;
    width: auto;
}

#designer-tablet-v .cover-title{
    text-align: center;
    margin: 0.26vw 0px;
    width: 100%;
    font-size: 0.39vw;
    color: #a8a8a8;
    font-family: 'Lato';
    font-weight: 400;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media (max-width: 767px) { 
    #designer-tablet-v .cover-title
    {
        font-size: 0.94vw;
    }
}

#designer-tablet-v .cover-title .show-when-free,
#designer-tablet-v .cover-title .show-when-paid > div {
    text-overflow: ellipsis;
    overflow: hidden;
}

#designer-tablet-v .cover-title .show-when-paid > div {
    float: left;
}

#designer-tablet-v .right-panel .progress-wrapper > .progress {
    height: 5px;
}

/* PHONE DESIGNER VERTICAL */
#designer-phone-v {
    font-family: 'Lato', sans-serif !important;
    position: relative;
    max-width: 13.02vw;
    width: 100vw;
    max-height: 23vw;
    height: 100vh;
    margin: 32% 7%;
}

@media (max-width: 767px) {
    #designer-phone-v {
        max-width: 26.04vw;
        max-height: 46vw;
        margin: 13% 3.5%;
    }
}

#designer-phone-v .designer-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    position: absolute;
}

#designer-phone-v #designer-phone-v-image {
    position: absolute;
    top: -4.45vw;
    left: -1.05vw;
    width: 116.6%;
    z-index: -1;
}

@media (max-width: 767px) {
    #designer-phone-v #designer-phone-v-image {
        top: -8.9vw;
        left: -2.1vw;
    }
}

#designer-phone-v .navigation {
    position: relative;
    background-color: #adabab;
    height: 7.5%;
}

#designer-phone-v .navigation .buttons-wrapper {
    width: 14%;
}

#designer-phone-v .navigation .logo-wrapper {
    width: 72%;
    height: 97%;
    padding: 1.5% 0;
}

#designer-phone-v .tabs-wrapper {
    align-items: center;
    display: flex;
}

#designer-phone-v .logo
{
    height: 100%;
    width: auto;
}

#designer-phone-v .buttons
{
    float:right;
    height:68px;
    width:42%;
}

#designer-phone-v .navigation .icon
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

#designer-phone-v .content {
    position:relative;
    padding-top: 5%;
}

#designer-phone-v .tabs-wrapper {
    position: absolute;
    bottom:0;
    left:0;
    right:0;
    border-bottom-left-radius: .1rem;
    border-bottom-right-radius: .1rem;
    z-index: 100;
}

#designer-phone-v .tabs {
    display: inline-block;
}

#designer-phone-v .tab {
    color: #555555;
    font-size: 0.65vw;
    text-transform: uppercase!important;
    line-height: 2.5;
    float: left;
    padding: 0 1.6vw;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0.26vw 0;
}

@media (max-width: 767px) {
    #designer-phone-v .tab {
        font-size: 0.72vw;
    }
}

#designer-phone-v .tab.active
{
    font-weight: var(--font-weight-semi-bold);
}

#designer-phone-v .separator {
    background-color: #e7e7e7;
}

#designer-phone-v .banner {
    width: 100%;
    margin: 0 auto;
}

#designer-phone-v .banner img {
    width: auto;
    height: auto;
    max-height: 70px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

#designer-phone-v .banner img.default {
    /*box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.05);*/
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.09));
}

#designer-phone-v .right-panel {
    display: flex;
    flex-direction: column;
}

#designer-phone-v .cover-wrapper {
    display: inline-block;
    margin: 0 auto;
    
    max-width: 70%;
}

#designer-phone-v .cover
{
    display: block;
    /*box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.05);*/
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.09));
    max-width: 100%;
    max-height: 19.5vw;
}

#designer-phone-v .cover[src$="loader.svg"] {
    box-shadow: none;
    filter: none;
}

@media (max-width: 767px) {
    #designer-phone-v .cover
    {
        max-height: 25vw;
    }
}

#designer-phone-v .cover:first-child {
    margin-top: 5px;
}

#designer-phone-v .cover-title
{
    width: 100%;
    margin: 5px 0 15px 0;
    margin-left: 3px;
    width: calc( 100% - 6px );
    
    font-size: 0.61vw;
    line-height: 1.5;
    color: #a8a8a8;
    font-family: 'Lato';
    font-weight: 400;
    outline-offset: -1px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media (max-width: 767px) {
    #designer-phone-v .cover-title
    {
        font-size: 1.04vw;
    }
}

#designer-phone-v .cover-title .show-when-free,
#designer-phone-v .cover-title .show-when-paid > div {
    text-overflow: ellipsis;
    overflow: hidden;
}

#designer-phone-v .cover-title .show-when-paid > div {
    float: left;
}

#designer-phone-v .progress-wrapper {
    left: 20%;
    width: 60%;
}


#designer-phone-v .spacer-small {
    height:1.15%;
    width:100%;
}

#designer-phone-v .spacer-big {
    height:2.85%;
    width:100%;
}

/* DESIGNER MOBILE COMMON */
.btn-clean {
    background: transparent;
    color: #000;
    border-radius: 50%;
    padding: 0;
    width: 2.34vw;
    height: 2.34vw;
    border: 1px solid #dadada;
    margin: 0 0.63vw;
}

.btn-clean > svg {
    padding: 11%;
    width: 100%;
    height: auto;
    display: block;
    margin: auto auto;
}

div.mobile-orientations > .btn-clean > svg {
    padding: 0;
    width: 57%;
    height: 57%;
    overflow: visible;
}

div.mobile-orientations > .btn-clean:first-child > svg {
    width: 57%;
    height: 57%;
    
}

.btn-clean > svg path {
    fill: #cacaca;
}

.btn-clean:focus > svg path,
.btn-clean:hover > svg path,
.btn-clean.active > svg path {
    fill: #5ca9ff;
}

.btn:not(:disabled):not(.disabled):focus.btn-clean,
.btn:not(:disabled):not(.disabled):hover.btn-clean,
.btn.btn-clean:not(:disabled):not(.disabled).active {
    background: transparent;
    color: #4b4b4b;
    border-color: var(--primary-color);
}

.btn-clean.highlighted {
    z-index: 1010;
    pointer-events: none;
    border-color: var(--primary-color);
    background: transparent;
}

.btn.btn-clean.highlighted:not(:disabled):not(.disabled).active {
    background: transparent;
}

.btn-clean.highlighted svg path {
    fill: var(--primary-color);
}

/* css card flip animation */
.card-wrapper {
    position:relative;
}

.card-face {
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 1s;
}

.card-face.card-front {
    transform: rotateY(0deg);
}

.card-face.card-back {
    transform: rotateY(180deg);
    position: absolute;
    top: 0;
    left:0;
    right:0;
    bottom:0;
    display: flex;
}

.flipped .card-face.card-front {
    transform: rotateY(-180deg);
}

.flipped .card-face.card-back{
    transform: rotateY(0deg);
}

/* other */
.top-bar {
    width: 100%;
}

.top-bar-height + h3 {
    margin-top: 0;
}

.top-bar-height {
    margin-bottom: 0.4vw;
}

.web-designer .top-bar-height {
    margin-top: 1.7vw;
}

.top-bar .btn-circular-outline-primary {
    font-size: 0.6vw;
    width: 4.2vw;
    height: 4.2vw;
    flex-shrink: 0;
}

.top-bar .btn-circular-outline-primary + .btn-circular-outline-primary {
    margin-left: 5.5%;
}

.top-bar .btn-circular-outline-primary + .publish-status {
    margin-left: 5.5%;
}

.bottom-bar {
    margin-top: 1rem;
}

.bottom-bar .btn {
    font-size: 1.6rem;
}

.btn-primary.btn-upgrade-small {
    min-width: auto;
    font-size: 0.6vw;
    font-weight: var(--font-weight-regular);
    padding: 0 1.1vw;
    letter-spacing: 0.05rem;
}

.btn-circular-outline-primary > .btn-upgrade-small {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    z-index: 10;
}

.btn-circular-outline-primary:hover > .btn-upgrade-small {
    display: block;
}

.btn-circular-outline-primary > .board {
    position: absolute;
    display: none;
    z-index: 5;
    top: -2rem;
    right: 0;
    bottom: 0;
    left: 0;
}

.btn-circular-outline-primary:hover > .board {
    display: block;
}

.btn-outline-action > .btn-upgrade-small {
    position: absolute;
    top: -1.5vw;
    right: 0px;
    background: transparent;
/*     left: 50%;*/
    /*transform: translateX(-1.125vw);*/ 
    /*25% width of button*/
    display: none;
    z-index: 10;
    
    min-width: 7.5vw;
    min-height: 1.8vw;
    /*line-height: 1.8vw;*/
}
.btn-outline-action:hover > .btn-upgrade-small {
    display: block;
}

.has-tooltip.selected-tooltip > #add-issue.btn {
    border-width: 2px;
    padding: calc(0.75rem - 1px) 0;
}

.btn-outline-action.has-tooltip.selected-tooltip {
    border-width: 2px;
    padding: calc(0.4vw - 1px) 0;
}

.btn:not(:disabled):not(.disabled).btn-circular-outline-primary.upgradeable.has-tooltip.selected-tooltip {
    border-width: 3px;
}

.is-tooltip-overlay {
    display: none;
}

.has-tooltip {
    position: relative;
}

.has-tooltip[data-has-tooltip-mode="only-when-disabled"] > button:disabled + .is-tooltip-overlay {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.is-tooltip {
    position: absolute;
    display: none;
    z-index: 2000;
    top: 0;
    left: 0;
    padding: 1vw;
    text-transform: none;
    text-align: left;
    color:#fff;
    font-size: 0.95vw;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.05rem;
    line-height: 1.25;
}

.is-tooltip::before {
    content: '';
    position: absolute;
    background: #292929;
    border-radius: 13px;
    border: 1px solid #292929;
    z-index: -1;
    top: 1.75vw;
    right: 0;
    bottom: 0;
    left: 0;
}

.is-tooltip.top::before {
    top: 0;
    bottom: 1.75vw;
}

.is-tooltip > .pointer {
    padding: 0;
}

.is-tooltip > .pointer.up > svg {
    transform: rotate(180deg);
}

.is-tooltip > .pointer > svg {
    margin: -1vw auto 0.25vw auto;
    width: 2.5vw;
    height: 2.5vw;
}

.is-tooltip.top > .pointer > svg {
    margin: 0.25vw auto -1vw auto;
}

.is-tooltip > .pointer > svg > path {
    fill: #404040;
}

.is-tooltip > .buttons {
    margin-top: 1vw;
    text-align: center;
}

.is-tooltip > .buttons > .btn-upgrade {
    font-size: 0.73vw;
    padding: 0.25vw 1vw;
    letter-spacing: 0.05rem;
    min-width: 5.5vw;
    font-weight: var(--font-weight-regular);
}

.is-tooltip > .buttons > .btn:not(:disabled):not(.disabled).btn-primary.btn-upgrade:hover {
    background: #fff;
    border-color: #fff;
    color: var(--primary-color);
}

.is-tooltip > p {
    text-align: center;
}

#issues-list, #issues-empty {
    margin-top: 2%;
}

#issues-empty p {
    padding: 2rem 0 5rem 0;
}

.progress-wrapper {
    position: absolute;
    display: block;
    top: 40%;
    left: 8%;
    width: 84%;
    z-index: 99;
}

#issues-list {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1300px) {
    #issues-list {
        max-width: 1300px;
    }
}

#issues-list h1 {
    color: #5e5e5e;
    margin-bottom: 0vw;
    font-weight: var(--font-weight-bold);
    font-size: 2.7vw;
    letter-spacing: 0.1vw;
}

@media (min-width: 1000px) {
    #issues-list h1 {
        margin-bottom: 0rem;
        font-size: 2.6rem;
        letter-spacing: 0.01rem;
    }
}


    #issues-list > .header {
        margin-bottom: 1.7rem;
        padding: 0.78vw 2.7vw;
    }
    
    
#issues-list > .body {
    background: #fff;
    padding: 0.78vw 2.7vw;
    width: 100%;
    position: relative;
    /*box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px;*/
}



    

#issues-list > .body > div {
    border-top: 1px solid #dfdfdf;
    padding: 10px 0;
    position: relative;
}



@media (min-width: 1000px) {
    #issues-list > .header {
        margin-bottom: 1.7rem;
        padding: 0.78vw 2.7vw;
    }
}
@media (max-width: 1000px) {
    #issues-list > .header {
        margin-bottom: 1.7rem;
        padding: 0.78vw 2.7vw;
    }
    #issues-list > .body {
        padding: 0px;
    }
    #issues-list > .body > div {
        border-top: 1px solid #dfdfdf;
        padding: 5px 0;
    }
}



#issues-list > .body > div:last-child {
    border-bottom: 1px solid #dfdfdf;
}

#issues-list > .body > div > * {
    margin: 0;
}

#issues-list > .body .spacer {
    display: block;
    min-width: 1px;
    max-width: 25px;
    width: 100%;
}


@media (max-width: 991px) {
    #issues-list > .body .spacer {
        max-width: 15px;
    }
}

#issues-list .switch-light.switch-candy {
    display: flex;
    flex-shrink: 0;
}

#issues-list .switch-light.switch-candy a {
    height: calc(100% - 2px);
    margin: 1px;
    right: calc(50% - 2px);
}

#issues-list .switch-light input:checked ~ span a {
    right: 0;
}

#issues-list .switch-light.switch-candy > span {
    margin: 0;
    padding:0 ;
}

#issues-list .publish-switch {
    width: 5%;
    padding: 0 1px;
}

#issues-list .publish-switch.switch-light.switch-candy > span {
    background: #dfdfdf;
    min-height: 2.2vw;
    width: 3vw;
    margin: 0 auto;
}

@media (min-width: 1000px) {
    #issues-list .publish-switch.switch-light.switch-candy > span {
        min-height: 24px;
        width: 36px;
    }
}
/*@media (max-width: 500px) {
   #issues-list > .body > div {
        border-top: 1px solid #dfdfdf;
        padding: 5px 0;
    }
}*/

#issues-list .publish-switch.switch-light.switch-candy input:checked ~ span {
    background: var(--primary-color);
}

#issues-list .publish-switch.switch-candy a {
    background: #fff !important;
    width: 60%;
    right: calc(34% - 1px);
}

#issues-list .price-switch.switch-light.switch-candy > span {
    background: transparent;
    /*border: 1px solid #b0d0f9;*/
    border: 1px solid var(--disabled-color);
}


#issues-list .list-issue.active .price-switch.switch-light.switch-candy > span,
#issues-list .list-issue:hover .price-switch.switch-light.switch-candy > span {
    background: transparent;
    border: 1px solid #b0d0f9;
    /*border-color: #aaa;*/
}

#issues-list .switch-light input[disabled="disabled"] ~ span {
    cursor: not-allowed;
}

#issues-list .switch-light input[disabled="disabled"] ~ span a {
    background: #efefef !important;
}

.switch-light.switch-candy.switch-decision input[disabled="disabled"]:checked ~ span span:first-child, 
.switch-light.switch-candy.switch-decision input[disabled="disabled"]:not(:checked) ~ span span:nth-child(2) {
    color: #afafaf !important;
}

#issues-list .list-image-wrapper {
    position: relative;
}

#issues-list .list-image-wrapper svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    border-radius: 50%;
    max-width: 32px;
    max-height: 32px;
    width: 32px !important;
    height: 32px !important;
        
    padding: 1px;
    z-index: 25;
    display:none !important;
}


@media (max-width: 991px) {
    #issues-list .list-image-wrapper svg {
        width: 50% !important;
        height: 50% !important;
    
    }
}

#issues-list .uploading .list-image-wrapper svg {
    display: none;
}

#issues-list .list-image-wrapper .waiting {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    display: none;
    z-index: 20;
}

#issues-list .uploading .list-image-wrapper .waiting {
    display: block;
}



#issues-list .price-switch.switch-light label, 
#issues-list .price-switch.switch-light > span {
    line-height: 2.5;
    min-height: auto;
}

#issues-list .price-switch.switch-light.switch-candy span span {
    padding: 0 1.25vw;
    font-size: 1.17vw;
    text-transform: none;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.075vw;
    line-height: 1.8;
}

#issues-list .price-switch.switch-light.switch-candy input:not(:checked) ~ span a {
    width: 52%;
    right: calc(48% - 2px);
}

#issues-list .price-switch.switch-light.switch-candy input:checked ~ span a {
    width: 48%;
}


@media (min-width: 1000px) {
    #issues-list .price-switch.switch-light.switch-candy span span {
        padding: 0 1.6rem;
        letter-spacing: 0.125rem;
    font-size: 14px;
    line-height: 30px;
    }
}
@media (min-width: 500px) and (max-width: 1000px) {
    
    #issues-list .price-switch.switch-light.switch-candy span span {
      font-size: 12px;
    line-height: 24px;
    }
}
/*@media (max-width: 500px) {
    #issues-list .price-switch.switch-light.switch-candy span span {
        font-size: 1.8vw;
    }
}*/


#issues-list .list-coupons-wrapper {
    display: none;
}

@media (min-width: 1000px) {
    #issues-list .list-coupons-wrapper {
        display: block;
    }

    #issues-list .dropdown-item.coupons-button {
        display: none !important;
    }
}

#issues-list .preview-link {
    display: block;
}

#issues-list .list-image-wrapper svg path {
    fill: #fff;
}

#issues-list .list-image-wrapper,
#issues-list .list-image-wrapper > .preview-link {
    width: 8vw;
    height: 8vw;
}

#issues-list .list-image-wrapper > .preview-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1000px) {
    #issues-list .list-image-wrapper,
    #issues-list .list-image-wrapper >.preview-link {
        width: 120px;
        height: 121px;
    }
}
/*@media (max-width: 500px) {
    #issues-list .list-image-wrapper,
    #issues-list .list-image-wrapper >.preview-link {
        width: 13vw;
        height: 16vw;
    }
}*/

#issues-list .list-image-wrapper img[src=""] {
    display: none;
}
#issues-list .list-image-wrapper img[src=""] + .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #d8d8d8;
    display: block !important;
    z-index: 10;
    pointer-events: none;
}

#issues-list .title-text > span {
    cursor: pointer;
    width: 16.0vw;
    display: flex;
    align-items: center;
}

@media (min-width: 1000px) {
    #issues-list .title-text > span {
        width: 145px;
    }
}
/*@media (max-width: 500px) {
    #issues-list .title-text > span {
        width: 20vw;
    }
}*/

#issues-list .title-text > span > span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

#issues-list .title-text > span > svg {
    width: 1.41vw;
    height: 1.41vw;
    margin: 0 0 0 0.03vw;
    flex-shrink: 0;
}

#issues-list .title {
    /*color: var(--primary-color);*/
    color: #666;
    display: inline-block;
    font-size: 1.41vw;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.098vw;
}

#issues-list .list-issue:not(:hover):not(.active) .title > svg {
    display: none;
}


#issues-list .title:hover {
    /*color: var(--primary-color);*/
   text-decoration: underline;
   
}

#issues-list .pages-count {
    color: #8f8f8f;
    display: inline-block;
    font-size: 1.17vw;
    letter-spacing: 0.038vw;
    margin-top: 0.26vw;
    margin: .5vw 0 1vw 0;
}

@media (min-width: 500px) and (max-width: 1000px) {
    #issues-list .pages-count {
        margin: .2rem 0 2.2rem 0;
    }
}

@media (min-width: 1000px) {
    #issues-list .pages-count {
        margin: .5rem 0 2.8rem 0;
    }
}

#issues-list .btn-outline-action {
    padding: 0 0.95vw;
    width: auto;
    font-size: 1.17vw;
    text-transform: none;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.075vw;
    line-height: 1.8;
    color: var(--disabled-color);
    border-color: var(--disabled-color);
    
}

@media (min-width: 1000px) {
    #issues-list .title {
        font-size: 17px;
        letter-spacing: 0.125rem;
    }
    #issues-list .title-text > span > svg {
        width: 21px;
        height: 21px;
        margin: 0 0 0 5px;
    }
    #issues-list .pages-count {
        font-size: 15px;
        letter-spacing: 0.05rem;
    }
    #issues-list .btn-outline-action {
        padding: 0 1.2rem;
        font-size: 14px;
        line-height: 30px;
        letter-spacing: 0.1rem;
    }
    
    
}
@media (min-width: 500px) and (max-width: 1000px) {
    #issues-list .title {
        font-size: 16px;
        letter-spacing: 0.125rem;
    }
    #issues-list .title-text > span > svg {
        width: 20px;
        height: 20px;
        margin: 0 0 0 4px;
    }
    #issues-list .pages-count {
        font-size: 14px;
        letter-spacing: 0.03rem;
        margin-top: 0.5rem;
    }
    #issues-list .btn-outline-action {
         font-size: 12px;
        line-height: 24px;
    }
}

/*@media (max-width: 500px) {
    #issues-list .title {
        font-size: 2.3vw;
        letter-spacing: 0.125rem;
    }
    
    #issues-list .pages-count {
        font-size: 14px;
        letter-spacing: 0.03rem;
        margin-top: 0.5rem;
    }
    #issues-list .btn-outline-action {
         font-size: 1.8vw;
    }
    #issues-list .pages-count {
        font-size: 1.55vw;
        letter-spacing: 0.038vw;
        margin-top: 0.26vw;
    }
}*/

@media (min-width: 992px) {
    .show-when-mobile{
        display: none !important;
    }
}

@media (max-width: 991px) {
    .show-when-desktop{
        display: none !important;
    }
    .show-when-mobile{
        /*display: block !important;*/
    }
    
    
}

@media (min-width: 801px) AND (max-width: 991px) {
    //iphone X ?
    @media (orientation: landscape) {
        body.flipbook > .container-fluid {
            padding-left: 25px;
            padding-right: 25px;

        }
    }
}

@media (max-width: 991px) {
    .btn-outline-action.interactivities-link {
        opacity: 0.5;
        
    }
}

#issues-list .header svg {
    display: inline-block;
    width: 100%;
    max-width: 2.5vw;
    height: 100%;
    max-height: 2.5vw;
    margin-right: 0.5vw;
}

@media (min-width: 1000px) {
    #issues-list .header svg {
        max-width: 24px;
        max-height: 24px;
        margin-right: 5px;
    }
}

#issues-list .header svg path {
    fill: #fff;
}

#issues-list .body svg {
    display: block;
    max-width: auto;
    width: 1.49vw;
    max-height: auto;
    height: 1.49vw;
    margin-right: 0.39vw;
}

@media (min-width: 1000px) {
    #issues-list .body svg {
        width: 16px;
        height: 16px;
        margin-right: 5px;
    }
}

#issues-list button svg path,
#issues-list a svg path {
    
    fill: var(--disabled-color);
    /*fill: var(--primary-color);*/
}

#issues-list .list-issue.active button svg path,
#issues-list .list-issue.active a svg path,
#issues-list .list-issue:hover button svg path,
#issues-list .list-issue:hover a svg path {
    fill: var(--primary-color);
}


#issues-list .list-issue.active button:hover svg path,
#issues-list .list-issue.active a:hover svg path,
#issues-list .list-issue:hover button:hover svg path,
#issues-list .list-issue:hover a:hover svg path {
    fill: white;
}

#issues-list button:hover svg path,
#issues-list a:hover svg path {
    fill: #fff;
}

#issues-list button:disabled:hover svg path,
#issues-list a:disabled:hover svg path {
    fill: #c5c5c5;
}

#issues-list .actions {
    color: #6f6f6f;
    width: 9.07%;
    padding: 0 1px;
}


@media (max-width: 991px) {
    
    #issues-list .actions {
        color: #6f6f6f;
        width: 7.07%;
        padding: 0 1px;
    }
}

#issues-list .actions .dropdown-toggle,
#issues-list .actions .tutorial-tooltip {
    margin: 0 auto;
    border: 0px;
}

#issues-list .actions .dropdown-menu {
    width: 21vw;
    font-size: 1.4vw;
    padding: 0;
    background: #f3f3f3;
    border-color: #cfcfcf;
    box-shadow: 0 0 1px #d8d8d8;
}

@media (min-width: 1000px) {
    #issues-list .actions .dropdown-menu {
        width: 210px;
        font-size: 1.4rem;
    }
}

#issues-list .actions .dropdown-menu svg{
    width: 36px;
    height: 22px;
    /*fill: red;*/
}
/*#issues-list .actions .dropdown-menu .dropdown-item svg{
    width: 20px;
    height: 20px;
}*/

#issues-list .links-table .actions .dropdown-menu svg{
    width: 2.8vw;
    height: 2.8vw;
}

@media (min-width: 500px) and (max-width: 1000px) {
    #issues-list .links-table .actions .dropdown-menu svg{
        width: 20px;
        height: 20px;
    }
}

@media (min-width: 1000px) {
    #issues-list .links-table .actions .dropdown-menu svg{
        width: 28px;
        height: 28px;
    }
}

#issues-list .actions .dropdown-menu[x-placement="top-end"] {
    margin-bottom: 10px;
}

#issues-list .actions .dropdown-menu[x-placement="bottom-end"] {
    margin-top: 10px;
}

#issues-list .dropdown-item-container {
    cursor: default;
}

#issues-list .actions .dropdown-menu .dropdown-item,
#issues-list .actions .dropdown-menu .dropdown-item-container {
    padding: 1.0rem 1.0rem 1.0rem 1.0rem;
    color: #6f6f6f;
}

#issues-list .actions .dropdown-menu .dropdown-item-container.disabled{
    opacity: 0.15;
}

#issues-list .list-issue.active .actions .dropdown-menu .dropdown-item-container > div,
#issues-list .list-issue:hover .actions .dropdown-menu .dropdown-item-container > div {
    cursor: default;
}

#issues-list .actions .dropdown-menu .dropdown-item-container > label {
    cursor: pointer;
}

#issues-list .actions .dropdown-menu .dropdown-item-container:hover {
    background-color: #f8f9fa;
    cursor: arrow;
}

#issues-list .actions .dropdown-menu .dropdown-item {
    cursor: pointer;
}

#issues-list .actions .dropdown-menu .dropdown-item:active {
    background: #f8f9fa;
    color: #6f6f6f;
}

#issues-list .actions svg {
    margin: 0 12px 0 0;
}

#issues-list .links-table .dropdown-menu {
    border-radius: 8px;
    width: auto;
    min-width: auto;
    padding: 2.3vw 0;
}

@media (min-width: 500px) and (max-width: 1000px) {
    #issues-list .links-table .dropdown-menu {
        padding: 1.7rem 0;
    }
}

@media (min-width: 1000px) {
    #issues-list .links-table .dropdown-menu {
        padding: 2.3rem 0;
    }
}

#issues-list .links-table .dropdown-menu .switch-light.switch-candy.switch-knob > span {
    min-height: 10px;
    width: 13px;
}

@media (min-width: 500px) and (max-width: 1000px) {
    #issues-list .links-table .dropdown-menu .switch-light.switch-candy.switch-knob > span {
        min-height: 15px;
        width: 21px;
    }
}

@media (min-width: 1000px) {
    #issues-list .links-table .dropdown-menu .switch-light.switch-candy.switch-knob > span {
        min-height: 16px;
        width: 27px;
    }
}

#issues-list .links-table .actions .dropdown-menu .dropdown-item,
#issues-list .links-table .actions .dropdown-menu .dropdown-item-container {
    padding: 1vw .8vw;
}

@media (min-width: 500px) and (max-width: 1000px) {
    #issues-list .links-table .actions .dropdown-menu .dropdown-item,
    #issues-list .links-table .actions .dropdown-menu .dropdown-item-container {
        padding: .7rem .5rem;
    }
}

@media (min-width: 1000px) {
    #issues-list .links-table .actions .dropdown-menu .dropdown-item,
    #issues-list .links-table .actions .dropdown-menu .dropdown-item-container {
        padding: 1rem .8rem;
    }
}

#issues-list .links-table .actions svg > *,
#issues-list .links-table .actions .dropdown-item:hover:not(:disabled) svg > * {
    fill: #5CA9FF !important;
}

#issues-list .list-issue .hide-while-uploaded {
    display: none !important;
}

#issues-list .list-issue.uploading .hide-while-uploaded {
    display: block !important;
}

#issues-list .list-issue.uploading .hide-while-uploading {
    display: none !important;
}

#issues-list .list-issue.uploading .publish-switch.hide-while-uploading {
    display: block !important;
    visibility: hidden !important;
}

#issues-list .progress-wrapper {
    position: relative;
    top: 0;
    left:0;
    width: 100%;
}

@media(min-width: 1000px) {
    #issues-list .progress-wrapper {
        min-width: 85.5%;
    }
}

#issues-list .progress {
    margin: 0 auto;
    width: 75%;
}

#issues-list .progress-cancel {
    top: 50%;
    left: auto;
    right: 0;
    transform: translateY(-50%);
    max-width: none;
    width: 7.4%;
    cursor: pointer;
    padding: 0 1px;
}

#issues-list .progress-cancel svg {
    max-width: none;
    width: 2.52vw;
    max-height: none;
    height: 2.52vw;
    margin: 0 auto;
}

@media (min-width: 1000px) {
    #issues-list .progress-cancel svg {
        width: 29px;
        height: 29px;
    }
}

#issues-list .progress-cancel svg path {
    fill: #f11f2e;
}

#issues-list .progress-cancel:hover {
    background: transparent;
}

#issues-list .progress-proc-name,
#issues-list .progress-proc {
    color: var(--primary-color);
    font-size: 1.88vw;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.13vw;
    text-transform: none;
    height: auto;
    margin: 0 auto;
    width: 75%;
    float: none;
}

@media (min-width: 1000px) {
    #issues-list .progress-proc-name,
    #issues-list .progress-proc {
        font-size: 1.8rem;
        letter-spacing: 0.125rem;
    }
}

#issues-list .progress-proc-name {
    margin-bottom: 10px;
}

#issues-list .progress-proc {
    margin-top: 10px;
}

.dropdown-toggle.no-arrow::after {
    display: none;
}



#create-issue .progress-wrapper {
    top: 42%;
    left: 0;
    width: 100%;
}

#create-issue .progress-wrapper.new-progress-wrapper{
    top: 0%;
    height: 100%;
}


.progress-proc {
    width: 100%;
    text-align: center;
    font-weight: 300;
    font-size: 0.52vw;
    height: 0.52vw;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.progress-proc.hidden {
    visibility: hidden;
}

#create-issue .progress-wrapper > .progress-proc {
    font-size: 1.9rem;
    height: 1.75rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
}

#create-issue .progress-wrapper > #progress-cancel{
    color: var(--primary-color);
    background: white;
    border: 1px solid var(--primary-color);
    font-weight: var(--font-weight-regular);
  
    padding: 0.7rem 1.85rem;
    font-size: 1.3rem;
    min-width: 100px;
    bottom: 8%;
    top: unset;
    left: calc(50% - 50px);
    transform: none;
    max-width: unset;
    width: auto;
    
}
#create-issue .progress-wrapper > #progress-cancel:hover{
    color: white;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 3rem;
}

.progress-proc-name {
    float:left;
    margin-top: 10px;
    width: 100%;
    text-align: center;
    font-weight: 300;  
    font-size: 0.75vw;
    height: 0.75vw;
    line-height: 1;
    text-transform: capitalize;
    color: var(--primary-color);
}

.simplebar-content .progress-proc-name {
    font-size: 0.95vw;
}

.cover-featured  .progress-proc-name {
    font-size: 1.15vw;
}


#designer-tablet-v-container .cover-wrapper-featured .progress-proc-name {
    font-size: 0.85vw !important;
    height: 0.85vw !important;
}

#designer-tablet-v-container .cover-wrapper .progress-proc-name {
    font-size: 0.6vw;
    height: 0.6vw;
} 

.current-issue-cover-wrapper .progress-proc-name {
    font-size: 1.15vw;
    height: 1.15vw;
}

#create-issue .progress-wrapper > .progress-proc-name {
    font-size: 2.5rem;
    height: 2.5rem;
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: 500;
}

.progress-wrapper .progress {
    background-color: #e9ecef;
    border-radius: 0.5rem;
}

#issues-list .list-issue:hover .progress-wrapper .progress {
    background-color: #ffffff;
    border-radius: 0.5rem;
}


.progress-wrapper .progress-bar {
    height: 100%;
    background-color: var(--primary-color);
}

.badge-platform {
    color: #d9d9d9;
    font-size: 1rem;
    padding: 1.2rem 0.5rem;
    border: 1px solid #d2d2d2;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-left: .4rem;
    background: #fff;
    letter-spacing: 0.1rem;
    line-height: 1.8rem;
}

.badge-platform:first-child {
    margin-left: 0;
}

.badge-platform.active {
    color: var(--tertiary-color);
}

.badge-platform > svg {
    max-height: 2rem;
    height:100%;
    max-width: 2rem;
    min-width: 1rem;
    width:100%;
    margin-right: 0.6rem;
}
.badge-platform > svg .fill {
    fill: #d9d9d9;
}

.badge-platform.active > svg .fill{
    fill: var(--tertiary-color);
}

/* custom scrollbars */
.scrollable-column {
    position: relative;
    height: 100%;
}

.scrollable-column-content {
    position: absolute;
    height:100%;
    top:0;
    left:0;
    right:0;
    bottom:0;
}

.scrollable-column-content .row {
    margin:0;
}

@media (min-width: 1200px) {
    .scrollable-column-xl-content {
        position: absolute;
        height:100%;
        top:0;
        left:0;
        right:0;
        bottom:0;
    }

    .scrollable-column-xl-content .row {
        margin:0;
    }
}

.simplebar-scrollbar {
    right:0;
    width: 100%;
}

.simplebar-scrollbar::before {
    background: var(--secondary-color);
    border-radius: 5px;
}

.simplebar-scrollbar.simplebar-visible {
    visibility: inherit !important;
    z-index:1;
}

.simplebar-track .simplebar-scrollbar.simplebar-visible::before {
    opacity: 1;
}

.simplebar-track.simplebar-vertical::after {
    z-index:0;
    content: '';
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    border: 2px solid #ececec;
    border-radius:5px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar::before {
    top: 0;
    bottom: 0;
}

.simplebar-track:hover .simplebar-scrollbar::before, .simplebar-track .simplebar-scrollbar.visible::before {
    opacity: 1;
}

.simplebar-track.simplebar-horizontal {
    display: none;
}
/* end custom scrollbas*/

label.small {
    font-size: 14px;
    
    font-weight: var(--font-weight-bold);
    margin: 0.4vh 0 1.8vh 0;
}

.highlightable {
    font-weight: var(--font-weight-black);
    text-transform: uppercase;
    font-size: 1.5vh;
    padding: 1.2vh 1.9vh;
    border-radius: 50px;
    margin-top: -1.95vh;
    margin-bottom: 1.2vh;
    color: var(--primary-color);
    line-height: 1.9;
}

.highlightable.on {
    background: var(--primary-color);
    color: #fff;
}

/* modals */
.modal-content {
    border: 3px solid #efefef;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.68);
    border-radius: 1.2rem;
}

.modal-content h5 {
    color: #597a9e;
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
    margin-top: 0.5rem;
    text-align: center;
}


.modal-content button.close {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.8rem;
    line-height: 100%;
    border-radius: 2.4rem;
    font-weight: var(--font-weight-bold);
    border: 2px solid #ececec;
    margin: 0 0 0 auto;
    padding: 0;
    opacity: 1;
    color: #d8d8d8;
}

.modal-content button.close:hover {
    color: #999;
    border-color: #999;
} 

.modal-header button.close {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.8rem;
    line-height: 100%;
    border-radius: 2.4rem;
    font-weight: var(--font-weight-bold);
    border: 2px solid #ececec;
    margin: 0 0 0 auto;
    padding: 0;
    opacity: 1;
    color: #d8d8d8;
}

.modal-header button.close:hover {
    color: #999;
    border-color: #999;
} 



.modal-header {
    border: 0;
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
    letter-spacing: 0.025rem;
}

.modal-header > span {
    font-size: 2rem;
    margin-top: 2rem;
}

.modal-title {
    font-weight: var(--font-weight-black);
    letter-spacing: 0.05rem;
}

.modal-sidebar .modal-title {
    margin-top: 15px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 700;
}

.modal-body {
    padding: 1rem 5rem 1rem 5rem;
}




.modal-body .dropzone {
    margin-top: 3rem;
}

.modal-body .dropzone.gallery-item {
    margin-top: 0;
}

.modal-body .dropzone.gallery-item .upload-preview-item .progress {
    bottom: 47%;
}

.modal-body .dropzone.gallery-item .upload-preview-item .progress-bar {
    background-color: var(--primary-color);
}




.modal-body p {
    font-size: 1.6rem;
    padding: 0;
    margin-bottom: 0;
    color:var(--tertiary-color);
}

.modal-md {
    max-width: 600px;
}

.modal-xl {
    max-width: 1410px;
}

.modal-footer {
    border: 0;
    margin: 0 0 2.5rem 0;
}

.file-upload-modal .modal-footer {
    margin-top: 0;
    padding-top: 0;
}

.modal-content .btn:not(:disabled):not(.disabled).btn-outline-primary,
.modal-content .btn-outline-primary.disabled, 
.modal-footer .btn-outline-primary:disabled  {
    padding: 0.8rem 2rem;
    min-width:130px;
    color: var(--primary-color);
    font-weight: var(--font-weight-black);
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    border-radius: 3rem;
}

.modal-content .btn:not(:disabled):not(.disabled).btn-outline-primary.active,
.modal-content .btn:not(:disabled):not(.disabled).btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
}

.modal-content .btn:not(:disabled):not(.disabled).btn-outline-primary.btn-upload,
.modal-content .btn-outline-primary.btn-upload.disabled, 
.modal-footer .btn-outline-primary.btn-upload:disabled {
    background: var(--primary-color);
    color: #fff;
    font-size: 1.5rem;
    font-weight: var(--font-weight-regular);
    text-transform: none;
    white-space: nowrap;
    letter-spacing: 0.1rem;
    padding: .5rem 2rem .5rem 2rem;
    border-radius: 3rem;
    margin-top: 2.5rem;
}

.modal-content .btn-outline-primary.btn-upload > svg {
    display: block;
    max-width: 25px;
    max-height: 25px;
    margin-right: 1rem;
}

.modal-content .btn-outline-primary.btn-upload > svg > * {
    stroke: #fff;
}

.modal-content .btn.btn-dropdown:not(:disabled):not(.disabled):hover {
    border: 1px solid #d2d2d2;
    color: var(--tertiary-color);
    background: #fff;
}

.modal-content.justify-content-center .btn {
    margin-right: 5rem;
}

.modal-content.justify-content-center .btn:last-of-type {
    margin-right: 0;
}

.modal-body .form-control {
    color: var(--tertiary-color);
    border-color: #e4e4e4;
    font-size: 1.3rem;
    padding: 0.6rem;
    font-family: 'Lato', sans-serif;
    font-weight: var(--font-weight-regular);
    background: #f7f7f7;
}

.modal-body .form-control[readonly].datepicker, 
.modal-body .form-control[readonly].datetimepicker {
    background: #f7f7f7;
}

.modal-body .form-control::placeholder {
    border-color: #e4e4e4;
    font-size: 1.5rem;
    font-weight: var(--font-weight-regular);
    text-align: center;
    color: #b6b6b6;
}

.modal-body .form-control::-ms-input-placeholder {
    border-color: #e4e4e4;
    font-size: 1.5rem;
    font-weight: var(--font-weight-regular);
    text-align: center;
    color: #b6b6b6;
}

.modal-body textarea.form-control {
    height:14rem;
}

.modal-body textarea.form-control::placeholder {
    line-height:12rem;
}

.modal-body .form-control::-ms-input-placeholder {
    line-height:12rem;
}

/* modal dropzone */
#video-preview .preview-item,
#audio-preview .preview-item,
.dropzone .upload-preview-item-dotted,
.modal-body .dropzone .upload-preview-item {
    border: 1px dashed var(--primary-color);
    border-radius: 2rem;
    background: #f6f6f6;
    width: 263px;
    height: 231px;
}

.dropzone .dz-complete.upload-preview-item-dotted,
.modal-body .dropzone .dz-complete.upload-preview-item {
    border: 1px solid #e4e4e4;
}

#video-preview .preview-item,
#audio-preview .preview-item,
.modal-dialog .dropzone .dz-complete.upload-preview-item-dotted,
.modal-body .dropzone .dz-complete.upload-preview-item {
    border: 0px solid #e4e4e4;
    background: #666;
}


.dropzone .upload-preview-item-dotted .upload-file,
.modal-body .dropzone .upload-preview-item .upload-file {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 1;
    background: #3d6ea7;
    padding: .5rem 2.5rem;
    border-radius: 3rem;
    white-space: nowrap;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.dropzone .upload-preview-item-dotted .upload-file > svg,
.modal-body .dropzone .upload-preview-item .upload-file > svg {
    display: block;
    max-width: 25px;
    max-height: 25px;
    margin-right: 1rem;
    margin-top: .5rem;
}

.modal-body .dropzone .upload-preview-item .upload-file > svg {
    margin-top: 0;
}

.dropzone .upload-preview-item-dotted .upload-file > svg > *,
.modal-body .dropzone .upload-preview-item .upload-file > svg > * {
    stroke: #fff;
}

.dropzone .dz-complete.upload-preview-item-dotted > img,
.modal-body .dropzone .dz-complete.upload-preview-item > img {
    top: 0;
    left: 0;
    transform: none;
    border-radius: 0;
    width:100%;
    height: 100%;
    padding: 3rem;
    object-fit: contain;
    position: static;
}

.dropzone .upload-preview-item-dotted .help-text,
.modal-body .dropzone .upload-preview-item .help-text {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    white-space: nowrap;
    color: #646464;
    letter-spacing: 0.05rem;
    font-weight: var(--font-weight-light);
    font-size: 1.3rem;
}

.dropzone .upload-preview-item-dotted .or-drop-here,
.modal-body .dropzone .upload-preview-item .or-drop-here {
    position: absolute;
    top: 69%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    white-space: nowrap;
    color: #646464;
    letter-spacing: 0.05rem;
    font-weight: var(--font-weight-light);
    font-size: 1.3rem;
}

.dropzone.dz-started .upload-preview-item-dotted .upload-file,
.dropzone.dz-started .upload-preview-item-dotted .help-text,
.dropzone.dz-started .upload-preview-item-dotted .or-drop-here,
.dropzone.dz-complete .upload-preview-item-dotted .upload-file,
.dropzone.dz-complete .upload-preview-item-dotted .help-text,
.dropzone.dz-complete .upload-preview-item-dotted .or-drop-here,
.modal-body .dropzone.dz-started .upload-preview-item .upload-file,
.modal-body .dropzone.dz-started .upload-preview-item .help-text,
.modal-body .dropzone.dz-started .upload-preview-item .or-drop-here,
.modal-body .dropzone .dz-complete.upload-preview-item .upload-file,
.modal-body .dropzone .dz-complete.upload-preview-item .help-text,
.modal-body .dropzone .dz-complete.upload-preview-item .or-drop-here {
    display: none !important;
}

/* setup modal */

.setup-modal .custom-select, .modal.setup-modal .form-control {
    margin-top: 1rem;
    height: calc(3.5rem + 2px);
    padding: 0 !important;
    font-weight: var(--font-weight-regular);
    font-size: 1.5rem;
    background-color: #f7f7f7;
    border-color: #e4e4e4;
}

.setup-modal input.form-control {
    text-align: center;
}

.modal.setup-modal .custom-select {
    padding-right: 2.5rem !important;
}

.modal-body .dropzone .upload-preview-item .btn-remove {
    top: 0.5rem;
    right: 0.5rem;
}

.modal-body .dropzone .upload-preview-item .btn-remove:hover {
    color: #fff;
    background:#ff0000;
}

/* specific modals styling */

#modal-upload-banner .modal-body .dropzone .upload-preview-item .upload-file {
    font-size: 1.2rem;
    padding: .5rem 2.5rem;
    top: 48%;
    border-radius:3rem;
}

#modal-upload-banner .modal-body .dropzone .upload-preview-item .upload-file > svg {
    margin-right: 1.5rem;
}

#modal-upload-banner p {
    margin-bottom: 1.8rem;
}

#modal-upload-banner .dropzone {
    margin-top: 0;
}

#modal-upload-banner .modal-body .dropzone .dz-processing.upload-preview-item > img,
#modal-upload-banner .modal-body .dropzone .dz-complete.upload-preview-item > img {
    padding: 0;
    border-radius: 2rem;
}

#modal-upload-banner .modal-body .dropzone.dz-started .upload-preview-item {
    border-color: transparent;
}

#modal-upload-cover-first .modal-md,
#modal-upload-cover-second .modal-md,
#modal-upload-cover-third .modal-md {
    max-width: 686px;
}

#modal-upload-cover-first .upload-file,
#modal-upload-cover-second .upload-file,
#modal-upload-cover-third .upload-file {
    padding: 1rem 2rem;
}

#modal-upload-cover-first .upload-file svg,
#modal-upload-cover-second .upload-file svg,
#modal-upload-cover-third .upload-file svg {
    display: none;
}

#modal-upload-image .modal-body {
    padding-top: 0.5rem;
}

#modal-upload-image .modal-md {
    max-width: 665px;
}

#modal-upload-image .dropzone {
    margin-top: 4rem;
}

#modal-upload-image .modal-body .dropzone .upload-preview-item .upload-file {
    font-size: 1.2rem;
    padding: .5rem 2.5rem;
    top: 50%;
    border-radius:3rem;
}

#modal-upload-logotype h5 {
}

#modal-upload-logotype .modal-md {
    max-width: 665px;
}

#modal-upload-logotype .dropzone {
    margin-top: 0rem;
}

#modal-upload-logotype .modal-footer {
    margin-top: 3.5rem;
}

#modal-live-preview .modal-md {
    max-width: 733px;
}

#modal-live-preview .modal-body p {
    font-size: 1.8rem;
}

#modal-live-preview .simple-table {
    margin: 4rem;
}

#modal-live-preview .simple-table span {
    color: var(--primary-color);
    display:block;
    width:100%;
    margin-bottom: 1rem;
}

#modal-live-preview .simple-table img {
    width: 136px;
    height: 136px;
}

#modal-live-preview .simple-table input {
    font-size: 2.5rem;
    padding: 0.4rem;
}

#modal-remove-issue {
    max-width: 652px;
}

#modal-replace-issue {
    max-width: 687px;
}

#modal-create-issue {
    max-width: 796px;
    margin: 1.75rem auto;
}

#modal-create-issue .modal-body {
    padding-left: 8.5rem;
    padding-right: 8.5rem;
}

#modal-create-issue p {
    margin-bottom: 1.8rem;
}

#modal-create-issue input {
    margin-bottom: 6rem;
}

#modal-edit-issue {
    max-width: 796px;
}



    #modal-edit-issue .modal-body {
        padding-left: 8.5rem;
        padding-right: 8.5rem;
    }


#modal-edit-issue .wysiwyg .ql-editor.ql-blank::before,
#modal-edit-issue p {
    margin-bottom: 0.1rem;
    font-size: 2.1rem;
}

#modal-edit-issue form > .form-group {
    margin-bottom: 6rem;
}


@media (max-width: 901px) {
    
    #modal-edit-issue form > .form-group {
        margin-bottom: 3rem;
    }
    #modal-edit-issue p {
        margin-bottom: 0.1rem;
        font-size: 1.7rem;
    }
    #modal-edit-issue .ql-editor p {
        margin-bottom: 0.1rem;
        font-size: 1.3rem;
    }
    #modal-edit-issue .modal-body {
        padding-left: 3.5rem;
        padding-right: 3.5rem;
    }
    
    
    #modal-edit-issue {
        max-width: 650px;
    }


    @media (orientation: landscape) {
    }
    
    @media (orientation: portrait) {
    }
}

#modal-edit-issue textarea.form-control {
    height: 21rem;
}

#modal-edit-issue textarea.form-control::placeholder {
    line-height:20rem;
}

#modal-edit-issue textarea.form-control::-ms-input-placeholder {
    line-height:20rem;
}

#modal-coupons {
    max-width: 700px;
}

#modal-coupons .input-group {
    width: 264px;
    margin: .5rem auto 1.5rem auto;
}

#modal-coupons .btn-outline-group {
    background: #f7f7f7;
}

#modal-coupons .modal-footer {
    margin-right: 4.5rem;
    margin-left: 4.5rem;
}

#modal-coupons .table-custom {
    max-width: 700px;
    width: 100%;
    
    margin-top: 10px;
}

#modal-coupons .header,
#modal-coupons .body {
    margin-bottom: 1rem;
}

#modal-coupons .header > *,
#modal-coupons .body > * {
    text-align: center;
    display: inline-block;
    max-width: 16.5rem;
    width: 100%;
    padding: 0 1.0rem;
    vertical-align: top;
}

#modal-coupons .header > *:last-child,
#modal-coupons .body > *:last-child {
    max-width: 6rem;
}

#modal-coupons .header > div {
    font-weight: var(--font-weight-regular);
        font-size: 1.4rem;
}

#modal-coupons .bordered {
    text-align: center;
        font-size: 1.4rem;
        line-height: 1.7rem;
    padding: .6rem .375rem;
    display: block;
    font-weight: 300;
}

#modal-coupons .btn-ajax {
    line-height: 100%;
}

#modal-coupons .modal-footer .btn:not(:disabled):not(.disabled):hover > svg .symbol {
    fill: var(--primary-color);
}

#modal-coupons .modal-footer .btn:not(:disabled):not(.disabled).btn-ajax {
    color: var(--primary-color);
    font-size: 1.1rem;
}

#modal-coupons .modal-footer .btn:not(:disabled):not(.disabled):hover.btn-ajax {
    background: #fff;
    color: var(--primary-color);
    font-size: 1.1rem;
}


@media (max-width: 901px) {
    @media (orientation: landscape) {
        #modal-coupons .header > div {
      
        }
        
        
        
    }
    
    @media (orientation: portrait) {
        #modal-coupons .header > div {
            font-weight: var(--font-weight-regular);
            font-size: 1.0rem;
        }
        
        #modal-coupons .header > *,
        #modal-coupons .body > * {
            text-align: center;
            display: inline-block;
            max-width: 8.1rem;
            width: 100%;
            padding: 0 1.0rem;
            vertical-align: top;
        }
        
        
        #modal-coupons .modal-footer {
            margin-right: 1.0rem;
            margin-left: 1.0rem;
        }

        #modal-coupons .bordered {
            text-align: center;
                font-size: 0.75rem;
                line-height: 1.0rem;
            padding: .6rem .375rem;
            display: block;
            font-weight: 300;
        }
    }
}





#configure-interactivity-audio .modal-body .dropzone .upload-preview-item {
    width: 480px;
    height: 344px;
}

#video-preview .preview-item,
#audio-preview .preview-item,
#configure-interactivity-video .modal-body .dropzone .upload-preview-item {
    width: 480px;
    max-width: 100%;
    height: 344px;
}

#configure-interactivity-gallery .modal-body .dropzone .upload-preview-item {
    width: 149px;
    height: 118px;
    border-radius: 2rem;
    border: 1.5rem solid #fff;
    box-sizing: content-box;
    margin:0;
}

#configure-interactivity-gallery .modal-body .dropzone .upload-preview-item:after {
    content: '';
    position: absolute;
    top: 0;
    border: 1px solid #cdcdcd;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
}

#configure-interactivity-gallery .modal-body .dropzone .upload-preview-item > img {
    padding: 0;
    object-fit: cover;
    border-radius: 1rem;
}

#subdomain-link-modal h2 {
    margin-bottom: 2.1rem;
    font-size: 1.8rem;
    letter-spacing: 0.025rem;
}

#subdomain-link-modal h5 {
    margin: -1.3rem 0 2rem 0;
}

#subdomain-link-modal .r-input {
    width: 435px;
}

#subdomain-link-modal .form-group {
    margin:0;
}

#subdomain-link-modal .form-group > .text-danger {
    position: absolute;
}

#subdomain-link-modal input::placeholder {
    color: #757575;
}

#subdomain-link-modal input::-ms-input-placeholder {
    color: #757575;
}

#subdomain-link-modal .r-domain {
    padding: 0 30px 0 10px;
    color: #757575;
    font-size: 1.5rem;
}

#subdomain-link-modal .r-copy > .btn {
    width: 132px;
}

#publish-modal .dropzone {
    margin-top: 0;
}

#publish-modal .dropzone .upload-preview-item-dotted.upload-preview-icon {
    width: 160px;
    height: 160px;
}

#publish-modal .modal-body .dropzone .upload-preview-item .upload-file {
    font-size: 1.3rem;
    top: 44%;
    padding: 0.5rem 1.1rem;
}

#publish-modal .dropzone .upload-preview-item-dotted.upload-preview-icon .or-drop-here {
    font-size: 1.3rem;
    top: 65%;
    padding: 0.5rem 1.1rem;
}

#publish-modal .dotted.upload-preview-icon > img, .dropzone .dz-complete.upload-preview-item-dotted.upload-preview-icon > img {
    padding: 0;
    border-radius: 2rem;
}

#publish-modal .btn-dropdown,
#setup-modal .btn-dropdown {
    line-height: 1.25;
    font-size: 1.5rem;
    padding: 0.8rem;
    background-color: #f7f7f7;
    border-color: #e4e4e4;
}

@media (max-width: 992px) {
    #publish-modal .btn-dropdown.scale,
    #setup-modal .btn-dropdown {
        font-size: 7px;
        line-height: 1.85rem;
    }
}

/* input groups */

.input-group.input-group-with-overlay > .form-control:not(:last-child) {
    margin-right: -1rem;
    padding-right: 2rem;
}
.input-group.input-group-with-overlay > .form-control:not(:first-child) {
    margin-left: -1rem;
    padding-left: 2rem;
}

.input-group.input-group-with-overlay > .input-group-append,
.input-group.input-group-with-overlay > .input-group-prepend {
    z-index: 10;
}

.input-group.input-group-with-overlay > .input-group-append .input-group-text,
.input-group.input-group-with-overlay > .input-group-prepend .input-group-text {
    border-radius: .5rem;
}

.input-group.input-group-with-overlay > .input-group-append .btn,
.input-group.input-group-with-overlay > .input-group-prepend .btn {
    padding: 0.9rem;
    border-color: #d2d2d2;
    background-color: #fff;
    border-radius: 0.5rem;
}

#issues-featured-top-section > .input-group.input-group-with-overlay > .form-control-secondary {
    cursor: default;
    padding: 9px 10px;
}

#issues-featured-top-section > .input-group.input-group-with-overlay > .input-group-append {
    margin: 2px;
}

#issues-featured-top-section > .input-group.input-group-with-overlay > .input-group-append .btn {
    padding: 0px 12px;
    align-items: center;
}

.input-group.input-group-with-overlay > .input-group-append .btn.btn-outline-secondary:hover,
.input-group.input-group-with-overlay > .input-group-append .btn.btn-outline-secondary:hover,
.input-group.input-group-with-overlay > .input-group-prepend .btn.btn-outline-secondary:focus,
.input-group.input-group-with-overlay > .input-group-prepend .btn.btn-outline-secondary:focus {
    background-color:var(--primary-color);
}

.input-group-text.input-group-with-svg {
    background: var(--active-color);
    border-color: var(--active-color);
}

.input-group-text.input-group-with-svg > svg .symbol {
    fill: #4b4b4b;
}

.input-group.input-group-with-overlay > .input-group-append .input-group-text.svg-icon {
    border-left:0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group-text.svg-icon {
    background: #fff;
}

.input-group-text.svg-icon .symbol {
    fill: var(--primary-color);
}

.input-group[data-datepicker-id] {
    cursor: pointer;
}

.input-group .input-group-floating-icon {
    position: absolute;
    top:10px;
    right:-50px;
}


@media (max-width: 901px) {
    @media (orientation: landscape) {
        .input-group .input-group-floating-icon {
            position: absolute;
            top:6px;
            right:-40px;
        }
        
        
        
    }
    
    @media (orientation: portrait) {
        .input-group .input-group-floating-icon {
            position: absolute;
            top:6px;
            right:-40px;
        }
        
    }
}


.input-group .input-group-floating-icon > svg {
}

.input-group .input-group-floating-icon > svg .symbol {
    fill: var(--primary-color);
}

.input-group-floating-icon[data-datepicker-id] {
    cursor: pointer;
}

#gallery-items {
    max-width: 930px;
    width:100%;
    display: inline-block;
    font-size: 0;
    text-align: center;
}

#gallery-items .upload-preview-item {
    margin: 1.5rem;
}

#gallery-items .upload-preview-item.dz-clickable,
#gallery-items .upload-preview-item.blank {
    cursor: pointer;
}

.gallery-items-sidebar {
    width: 150px;
    display: inline-block;
    vertical-align: top;
    font-weight: var(--font-weight-bold);
    margin-top:15px;
    position:relative;
    color: var(--primary-color);
}

.gallery-items-sidebar div:first-of-type {
    margin-top:75px;
}

.gallery-items-sidebar svg,
.gallery-items-sidebar img {
    position: absolute;
    top:0;
}

.gallery-items-sidebar svg .symbol {
    fill: var(--primary-color);
}

.gallery-items-sidebar svg.svg-arrow {
    transform: rotate(-45deg);
    right: -50px;
    top:-20px;
}

.gallery-items-sidebar svg.svg-drag {
    width:50px;
    height:60px;
    left: 20px;
}

.gallery-items-sidebar img {
    left: 50%;
    transform:translateX(-50%);
}

.arrow-pointer {
    position: absolute;
    pointer-events: none;
    z-index: 100;
    transform-origin: 78.7% 79.1%;
}

.media-controls {
    max-width: 100%;
    width: 480px;
    height: 67px;
    background: #d2d2d2;
    border-radius: 0.5rem;
    margin: 0 auto;
}

.media-controls > * {
    display: inline-block;
}

.media-controls button {
    border:0;
    background:transparent;
    margin:0;
    padding:0;
    width:55px;
}

.media-controls button:hover {
    cursor:pointer;
}

.media-controls button > svg {
    height: auto;
    margin: 0 auto;
}

.media-controls button > svg.icon-shape-inverted {
    width: 46px;    
}

.media-controls button > svg.svg-sound{
    width: 28px;    
}

.media-controls button > svg.icon-shape-inverted .symbol {
    fill:transparent;
}

.media-controls button > svg.icon-shape-inverted .fill,
.media-controls button > svg.svg-sound .symbol {
    fill:#fff;
}

.media-controls input[type="range"] {
    width: 100%;
    background: #d2d2d2;
    border: 1px solid #fff;
    padding: 0;
    height: 7px;
}

.media-controls input[type="range"]::-moz-range-thumb {
    background: #fff !important;
    border: 0 !important;
}

.media-controls input[type="range"]::-moz-range-progress {
    background: #fff;
}

.media-controls input[type="range"]::-webkit-slider-thumb {
    background: #fff !important;
    border: 0 !important;
}

.media-controls input[type="range"]::-ms-thumb {
    background: #fff !important;
    border: 0 !important;
}

.media-controls input[type="range"]::-ms-fill-lower {
    background: #fff !important;
    height:30px !important;
}

/* interactivity configure link */
#link-preview-page {
    width: 232px;
    height: 270px;
    position:relative;
    background: #f6f6f6;
    border-radius: 2rem;
}

#link-preview-page img {
    position:absolute;
    object-fit: contain;
    z-index:2;
    width:100%;
    height:100%;
    padding: 1.3rem 1.7rem;
}

#link-preview-page.disabled img {
    opacity: 0.5
}

#link-preview-page img[src='']{
    content: '';
    width: 0;
    height: 0;
}

#configure-interactivity-link .input-text-editable {
    max-width: 206px;
}

#configure-interactivity-link .modal-header > span {
    font-size: 1.8rem;
}

#link-interactivity-separator {
    text-align: center;
    text-transform: uppercase;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin: 4rem 0;
}

#link-preview-page-prev,
#link-preview-page-next {
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    font-size: 4rem;
    color: #d2d2d2;
    border:0;
    background:transparent;
}

#link-preview-page-prev:hover,
#link-preview-page-next:hover {
    cursor: pointer;
}

#link-preview-page-prev {
    left: -50px;
}

#link-preview-page-next {
    right: -50px;
}

/* toggle switch */
.switch-light.switch-candy > span {
    width:100%;
    border-radius: 25px;
    border:0;
    margin: 2px;
    box-shadow: none;
    padding: 2px 0;
    background:#fff;
    cursor: pointer;
    display: inline-block;
}

.switch-candy a {
    border-radius: 25px;
    border:0;
    box-shadow: none;
    background: var(--primary-color) !important;
    outline:none !important;
    height: calc(100% - 4px);
    right: calc(50% - 4px);
    margin: 2px;
    width: 50%;
}

.switch-candy.disabled {
    cursor: auto;
    pointer-events: none;
}

.switch-light.switch-candy input:checked ~ span a {
    background: var(--primary-color) !important;
    /*background: var(--disabled-color) !important;*/
    right: 0;
}

.list-issue.active .switch-light.switch-candy input:checked ~ span a,
.list-issue:hover .switch-light.switch-candy input:checked ~ span a {
    background: var(--primary-color) !important;
    /*background: var(--disabled-color) !important;*/
    right: 0;
}


.switch-light.switch-candy.disabled input:checked ~ span a,
.switch-candy.disabled a {
    /*background: #c50000 !important;*/
    background: #c5c5c5 !important;
}

.switch-light.switch-candy span span {
    text-shadow: none !important;
    font-size: 1.1rem;
    text-transform: uppercase;
    width:50%;
    font-weight: var(--font-weight-regular);
}

.switch-light.switch-candy input:checked ~ span span:first-child,
.switch-light.switch-candy input:not(:checked) ~ span span:nth-child(2) {
    color: var(--disabled-color);
        /*var(--primary-color);*/
    font-weight: var(--font-weight-regular);
}

body.sales .switch-light.switch-candy input:checked ~ span span:first-child,
body.sales .switch-light.switch-candy input:not(:checked) ~ span span:nth-child(2) {
    color: var(--primary-color);
    font-weight: var(--font-weight-regular);
}



.list-issue.active .switch-light.switch-candy input:checked ~ span span:first-child,
.list-issue.active .switch-light.switch-candy input:not(:checked) ~ span span:nth-child(2), 
.list-issue:hover .switch-light.switch-candy input:checked ~ span span:first-child,
.list-issue:hover .switch-light.switch-candy input:not(:checked) ~ span span:nth-child(2) {
    color:var(--primary-color);
    font-weight: var(--font-weight-regular);
}

.switch-light.switch-candy input ~ span span:first-child, 
.switch-light.switch-candy input:checked ~ span span:nth-child(2) {
    color: #fff;
}

.switch-light.switch-candy.disabled input:checked ~ span span:first-child,
.switch-light.switch-candy.disabled input:not(:checked) ~ span span:nth-child(2) {
    color: #c5c5c5;
}


#price-switch {
    margin: 0.5vw 0 0 0;
}

#designer-preview .switch-light.switch-candy > span {
    width: 15.7vw;
    padding: 0;
    min-height: auto;
}

#designer-preview .switch-light.switch-candy span span {
    font-size: 0.6vw;
    letter-spacing: 0.05rem;
    line-height: 3.35;
}

#price-switch.highlighted {
    z-index: 1010;
    pointer-events: none;
    margin-top: 1.475vw;
}

#price-switch.highlighted .switch-light.switch-candy > span {
    border: 2px solid var(--primary-color);
    background: transparent;
}

#price-switch.highlighted .switch-light.switch-candy input ~ span span:first-child, 
#price-switch.highlighted .switch-light.switch-candy input:checked ~ span span:nth-child(2) {
    color: var(--primary-color);
}

#price-switch.highlighted .switch-light.switch-candy a {
    background: transparent !important;
    border: 1px solid var(--primary-color);
    transition: none;
}

/* nav-tabs */
.nav-tabs-custom {
    border: 0;
    margin-bottom: 6rem;
}

.nav-tabs.nav-tabs-custom .nav-link {
    border-radius: 0.25rem;
    margin: 0 0.25rem;
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: var(--font-weight-black);
    padding: 1.6rem 3.7rem;
    letter-spacing: 0.2rem;
}

.nav-tabs.nav-tabs-custom .nav-item {
    margin-left: 1.2em;
    margin-right: 1.2rem;
}

.nav-tabs.nav-tabs-custom .nav-item.show .nav-link, 
.nav-tabs.nav-tabs-custom .nav-link.active, 
.nav-tabs.nav-tabs-custom .nav-link {
    border-color: var(--primary-color);
    min-width: 221px;
}

.nav-tabs.nav-tabs-custom .nav-link.active {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}

.nav-tabs.nav-tabs-custom .nav-link > svg {
    height: 2rem;
    width: auto;
    margin-right: 2rem;
}

.nav-tabs.nav-tabs-custom .nav-link > svg .fill {
    fill: var(--primary-color);
}

.nav-tabs.nav-tabs-custom .nav-link.active  > svg .fill {
    fill: #fff;
}

.tab-content.tab-content-custom .tab-pane p {
    font-size: 1.8rem;
    letter-spacing: 0.075rem;
    color: var(--tertiary-color);
}

/* store form */
form.store h1 {
    color: #e9e9e9;
    font-size: 6.2rem;
    font-weight: var(--font-weight-bold);
    margin:-1.2rem 0 0 0;
    padding:0;
}

form.store label {
    color: #3e3e3e;
    width:100%;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.05rem;
    margin:0;
    padding:0;
    display: block;
    line-height: 1.8rem;
    margin-bottom: 11px;
}

form.store label ~ span {
    color: #828491;
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    display: block;
    line-height: 100%;
}

form.store .form-group.row {
    margin-bottom:2.4rem;
}

form.store .form-control::placeholder {
    letter-spacing: 0.1rem;
}

form.store .form-control::-ms-input-placeholder {
    letter-spacing: 0.1rem;
}

form.store #annual-number-of-issues {
    text-align: center;
}

/* other */

[data-datepicker-field] {
    cursor: pointer;
}

label.required::after {
    content: '*';
    margin-left: 10px;
    color: var(--primary-color);
}

.StripeElement.form-control {
    max-height: 51.5px;
}

.circle-primary {
    background: var(--primary-color);
    border-radius:100rem;
    width: 145px;
    height: 145px;
}

.circle-primary > img {
    max-width: 85px;
}

.card-deck-clean .card-header {
    background: transparent;
    border-bottom: 0;
}

.card-deck-clean .card-footer {
    background: transparent;
    border-top: 0;
    font-size: 1.3rem;
    padding-top: 0rem;
}

.card-deck-clean .card-footer b {
    font-weight: var(--font-weight-black);
}

.card-deck-clean .card-footer div {
    color: #62696f;
}

.card-deck-clean .card-footer .btn:not(:disabled):not(.disabled).btn-outline-primary {
    padding: 0.7rem 0 0.8rem 0;
}

.text-necessary {
    color: #999999;
}

.text-necessary > span {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/*custom checkbox*/
.custom-checkbox .custom-control-label {
    margin-left: 1.2rem;
}

label#label_terms_accepted {
    font-size: 1.3rem;
}

label#label_terms_accepted a {
    color: #999;
    font-weight: var(--font-weight-bold);
}

.custom-checkbox .custom-control-label::before {
    border: 1px solid #6f6f6f;
    background-color: transparent;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0;
    top: .5rem;
}

.public-page .custom-checkbox .custom-control-label::before {
    top: .1rem;
    border-color: #b6c2ce;
    border-radius: .25rem;
    background-color: #fff;
}

label#label_terms_accepted::before{
    top:0.1rem !important;
}

.custom-control-input:focus ~ .custom-control-label::before,
.custom-control-input:checked ~ .custom-control-label::before {
    box-shadow:none;
}

.custom-control-input:active ~ .custom-control-label::before {
    background: transparent;
}

.custom-checkbox .custom-control-label::after {
    width: 1.85rem;
    height: 1.85rem;
    top: 0.0rem;
}

.public-page .custom-checkbox .custom-control-label::after {
    top: .1rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%236f6f6f' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.public-page .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23666666' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: transparent;
}

.public-page .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #fff;
}

.public-page .custom-checkbox .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    background: #fff;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before, 
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before {
    background-color: transparent !important;
}

.public-page .was-validated .custom-control-input:valid ~ .custom-control-label::before,
.public-page .custom-control-input.is-valid:checked ~ .custom-control-label::before, 
.public-page .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before {
    background-color: #fff !important;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before {
    box-shadow:none;
}

.public-page .custom-control-input.is-invalid~.custom-control-label,
.public-page .was-validated .custom-control-input:invalid~.custom-control-label {
    color: inherit;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
    background-color: transparent;
}

.public-page .was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.public-page .custom-control-input.is-invalid ~ .custom-control-label::before {
    background-color: rgba(255,0,0,0.25);
    border-color:#dc3545 !important;
}

/* custom margins */
.mt-8, .my-8 {
    margin-top: 8rem !important;
}
.mb-8, .my-8 {
    margin-bottom: 8rem !important;
}

.mt-7, .my-7 {
    margin-top: 7rem !important;
}
.mb-7, .my-7 {
    margin-bottom: 7rem !important;
}

.mb-2r, .my-2r {
    margin-bottom: 2rem !important;
}

.mt-2r, .my-2r {
    margin-top: 2rem !important;
}

.mb-3r, .my-3r {
    margin-bottom: 3rem !important;
}

.mt-3r, .my-3r {
    margin-top: 3rem !important;
}

.mb-4r, .my-4r {
    margin-bottom: 4rem !important;
}

.mt-4r, .my-4r {
    margin-top: 4rem !important;
}

.mb-5r, .my-5r {
    margin-bottom: 5rem !important;
}

.mt-5r, .my-5r {
    margin-top: 5rem !important;
}

.mb-6r, .my-6r {
    margin-bottom: 6rem !important;
}

.mt-6r, .my-6r {
    margin-top: 6rem !important;
}

.mb-6hr, .my-6hr {
    margin-bottom: 6.5rem !important;
}

.mt-6hr, .my-6hr {
    margin-top: 6.5rem !important;
}

.mb-7r, .my-7r {
    margin-bottom: 7rem !important;
}

.mt-7r, .my-7r {
    margin-top: 7rem !important;
}

.pr-2r {
    padding-right: 2rem !important;
}

form.placeholder-left ::placeholder {
    text-align: left;
}

form.placeholder-left ::-ms-input-placeholder {
    text-align: left;
}

.settings-header {
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.05rem;
    font-size: 2.1rem;
}

.text-subheadline {
    font-size: 1.3rem;
}

.text-headline {
    color: var(--primary-color);
}

.flex-even {
    flex: 1 1 0;
}

/* custom tabs style */
.tabs-options .tab-description {
    font-weight: var(--font-weight-light);
    color:#000;
    text-align: center;
    padding: 0 1rem;
    line-height: 100%;
    position: absolute;
    top: -8.5rem;
}

@media(min-width:1460px) {
    .tabs-options .tab-description {
        top: -5.5rem;
    }
}

@media(max-width:860px) {
    .tabs-options .tab-description {
        display: none;
    }
}

.tabs-options > .tab-content {
    border: 1px solid #d2d2d2;
    border-radius: 1rem;
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 2rem;
}

.tabs-options > .nav-tabs {
    border: 0;
    margin-bottom: -1rem;
    position: relative;
    z-index: 1;
}

.tabs-options > .nav-tabs .nav-link {
    border: 1px solid #d2d2d2;
    border-radius: 1rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    font-weight: var(--font-weight-bold);
    color:#000;
    background: #f6f6f6;
    position:relative;
    font-weight: var(--font-weight-black);
}

.tabs-options > .nav-tabs .nav-item {
    margin-top: 1rem;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 0 1.75rem 0;
}

.nav-tabs > .nav-link.active span {
    font-size: 2rem;
}

.tabs-options > .nav-tabs .nav-item.show .nav-link, .nav-tabs > .nav-link.active {
    margin-top: 0;
    background: var(--active-color);
    color: #000;
    outline:0;
    flex-basis: 8%;
}

.tabs-options > .nav-tabs .nav-item.show .nav-link, .nav-tabs > .nav-link.active .tab-description {
    top: -7.5rem;
}

@media(min-width:1460px) {
    .tabs-options > .nav-tabs .nav-item.show .nav-link, .nav-tabs > .nav-link.active .tab-description {
        top: -4.5rem;
    }
}

.video {
    border: 1px solid #d9d9d9;
    border-radius: 0.3rem;
    max-width: 555px;
    width:100%;
    height: 360px;
    margin: 1rem auto 2rem auto;
}

.btn-text-small {
    font-size: 1rem;
}

.btn-text-big {
    font-weight: var(--font-weight-black);
    line-height: 100%;
}



.hint-text {
    position:absolute;
    font-weight: var(--font-weight-bold);
}

.hint-text svg .symbol {
    fill: #000;
}

.hint-text.hint-page-number {
    right: 60px;
    bottom: 10px;
    width:110px;
}

.hint-text.hint-page-number svg {
    transform: scaleY(-1) rotate(130deg) translate(50px, 100px);
}

.hint-text.hint-page-url {
    right: 110px;
    top: 100px;
    width:120px;
}

.hint-text.hint-page-url svg {
    transform: scaleY(-1) rotate(80deg) translate(5px, 45px);
}

.modal-body .tabs-options .tab-pane {
    min-height: 450px;
}

.input-text-editable {
    position: relative;
}

.input-text-editable-clone {
    position: absolute;
    top: 0;
    left: 0;
}

form .btn .lds-dual-ring {
    width: 25px !important;
    height: 25px !important;
    margin: 0 auto;
}

form .btn .lds-dual-ring div {
    border-color: #fff transparent #fff transparent;
    width: 25px !important;
    height: 25px !important;
    top:auto;
    left:auto;
}

form .btn.btn-outline-primary .lds-dual-ring div {
    border-color: #58acf4 transparent #58acf4 transparent;
}

#store-index-row.row > .col {
    max-width: 770px;
}

#notifications-form-row.row > .col {
    max-width: 550px;
    margin-bottom: 10px;
}

#notifications-reports-row {
    margin-top: 5.2rem;
    max-width: 990px;
    margin: 5.2rem auto 0 auto;
}

#notifications-reports-row .min-table th:first-child,
#notifications-reports-row .min-table td:first-child {
    width: 100%;
}

#notifications-reports-row hr {
    background: #d9d9d9;
    margin-bottom: 1.7rem;
}

form#notifications-form > .form-group {
    text-align: center;
}

form#notifications-form > .form-group > label {
    color: var(--tertiary-color);
    font-size: 1.5rem;
    letter-spacing: 0.05rem;
    margin-bottom: 1rem;
}

form#notifications-form .form-control,
form#notifications-form .form-control:focus {
    color: var(--tertiary-color);
}

form#notifications-form .form-control {
    font-size: 2rem;
    border-radius: 0.25rem;
}

form#notifications-form .form-control::placeholder {
    color: var(--tertiary-color);
    font-weight: var(--font-weight-regular);
    text-transform: lowercase;
    letter-spacing: 0.2rem;
    font-size: 1.5rem;
    line-height: 2rem;
}

form#notifications-form .form-control::-ms-input-placeholder {
    color: var(--tertiary-color);
    font-weight: var(--font-weight-regular);
    text-transform: lowercase;
    letter-spacing: 0.2rem;
    font-size: 2rem;
    line-height: 2rem;
}

form#notifications-form input.form-control {
    line-height: 1.5;
}

form#notifications-form textarea.form-control {
    letter-spacing: 0.02rem;
    font-size: 2rem;
}

form#notifications-form .input-group.input-group-with-overlay > .form-control:not(:first-child) {
    margin-left: -1rem;
    font-size: 1.4rem;
    text-align: center;
    padding: 0.5rem 1rem 0.5rem 2rem;
    border-radius: 0 0.25rem 0.25rem 0;
}



form#notifications-form .input-group.input-group-with-overlay > .input-group-prepend .input-group-with-svg {
    padding: 0 .6rem;
    border: 1px solid #d2d2d2;
}

form#notifications-form .input-group.input-group-with-overlay > .input-group-prepend .input-group-with-svg > svg {
    width: 2.7rem;
    height: 2.7rem;
}

form#notifications-form .input-group.input-group-with-overlay > .input-group-prepend .input-group-with-svg > svg .symbol {
    fill: var(--primary-color);
}

#send-at-form-group > .input-group {
    max-width: 180px;
    margin: 0 auto;
}

.flatpickr-calendar {
    box-shadow: none;
    border: 1px solid #e6e6e6;
}

.flatpickr-calendar:before, .flatpickr-calendar:after {
    display: none;
}

.flatpickr-calendar.arrowTop {
    margin-top: -2px;
}

#sales-index-row.row > .col {
    max-width: 1080px;
}

span.flatpickr-weekday {
    font-weight: var(--font-weight-bold);
    color: var(--tertiary-color);
    font-size: 1.4rem;
}

.flatpickr-current-month span.cur-month,
.flatpickr-current-month input.cur-year {
    font-weight: var(--font-weight-regular);
    color: #597a9e;
    
    font-size: 15px;
}

.flatpickr-day.today {
    border-color: var(--primary-color);
}

.flatpickr-day:hover,
.flatpickr-day:focus,
.flatpickr-day.today:hover,
.flatpickr-day.today:focus
.flatpickr-day.selected,
.flatpickr-day.selected:focus {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
    color: #597a9e;
    font-size: 135%;
}

h1.earned {
    font-size: 8.1rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 7rem;
}



@media (max-width: 901px) {
    @media (orientation: portrait) {
        h1.earned {
            font-size: 3.5rem;
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 2.5rem;
        }
        
    }
    @media (orientation: landscape) {
        h1.earned {
            font-size: 4.2rem;
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 2.5rem;
        }
    }
    
}



.secondary-header {
    font-size: 1.8rem;
    letter-spacing: 0.075rem;
    color: var(--tertiary-color);
    margin-bottom: 2rem;
}

.ql-toolbar.ql-snow,
.ql-container.ql-snow {
    font-family: var(--font-family-sans-serif);
    border-color: #c4c4c4;
    color: var(--tertiary-color);
    background: #f7f7f7;
}

.ql-toolbar.ql-snow {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.ql-container.ql-snow {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}


.ql-snow.ql-toolbar button{
    border: 1px solid #9E9E9E;
    border-radius: 4px;
    padding: 3px 4px;
    height: 23px;
    width: 24px;
}
    
.ql-snow.ql-toolbar button.ql-active{   
    color: white !important;
    background-color: #6FA7F8;
    border-color: #539CF7;
}
    
.ql-snow.ql-toolbar button:hover {
    color: var(--primary-color);
}

.ql-snow.ql-toolbar button.ql-active svg path{
    stroke: #fff !important;
} 


.ql-container,.ql-editor {
    -webkit-touch-callout: text; /* iOS Safari */
    -webkit-user-select: text; /* Safari */
    -khtml-user-select: text; /* Konqueror HTML */
    -moz-user-select: text; /* Firefox */
    -ms-user-select: text; /* Internet Explorer/Edge */
    user-select: text;
    max-height: 300px;
}

body.page-settings table.min-table {
     -webkit-touch-callout: text; /* iOS Safari */
    -webkit-user-select: text; /* Safari */
    -khtml-user-select: text; /* Konqueror HTML */
    -moz-user-select: text; /* Firefox */
    -ms-user-select: text; /* Internet Explorer/Edge */
    user-select: text;
}

.ql-editor {
    cursor: text;
}

.btn-upgrade {
    background: var(--primary-color);
    border-radius: 3rem;
    color: #fff;
    text-transform: uppercase;
}

.btn-upgrade-floating {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-circular-outline-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
    border-radius: 50%;
    width: 7.8vh;
    height: 7.8vh;
    white-space: normal;
    position: relative;
}

.btn-circular-outline-primary#generate-link {
    width: 68px;
    height: 68px;
    font-size: 1.5rem;
}

.btn.btn-circular-outline-primary:not(:disabled):not(.disabled):hover {
    background: var(--primary-color);
    color: #fff;
}

.btn:not(:disabled):not(.disabled).btn-circular-outline-primary.upgradeable {
    cursor: default;
    color:#959aa0;
    letter-spacing: 0.015rem;
}

.btn:not(:disabled):not(.disabled).btn-circular-outline-primary.upgradeable:hover {
    background: transparent;
}

.btn.btn-circular-outline-primary.highlighted {
    z-index: 1010;
    pointer-events: none;
}

.btn-circular-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 7.4rem;
    height: 7.4rem;
    white-space: normal;
    position: relative;
}

.btn-absolute-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#generate-link {
    margin-top:18%;
}

.switch-light label, .switch-light > span {
    line-height: 1.8em;
}


.form-control-plaintext.alt {
    background: #f7f7f7;
    border: 1px solid #e4e4e4;
    border-radius: 5px;
    padding: 0.6rem 2.1rem;
    color: #757575;
}

#modal-link h2 {
    font-size: 1.7rem;
    margin: 1.7rem 0 2.2rem 0;
}



#modal-link textarea {
    margin-bottom: 0.5rem;
}

#modal-link textarea[rows="1"],
#modal-link-after-upload textarea[rows="1"] {
    white-space: nowrap;
    overflow: hidden;
}

@media (min-width: 768px) {
    #modal-link textarea[rows="1"] {
        margin-bottom: 5.5rem;
    }
}

#modal-link .btn-outline-action {
    width: 13.2rem;
    font-size: 1.3rem;
}



@media (max-width: 901px) {
    @media (orientation: landscape) {
        .modal-content h5 { 
            font-size: 1.8rem;
            margin-top: -2.5rem;
        }
        .modal-body {
            padding: 0rem 2rem 1rem 2rem;
        }
        #modal-link h2 {
            font-size: 1.5rem;
            margin: 1.2rem 0 1.7rem 0;
        }
        #modal-link textarea {
            font-size: 1.3rem;
            padding: 0.6rem 1.1rem;
        }
        #modal-link textarea[rows="1"] {
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        #modal-link .btn-outline-action {
            width: 9.0rem;
            font-size: 1.0rem;
        }
        textarea#generate-link-embed{
            height: 90px;
        }
    }
    
    @media (orientation: portrait) {
        .modal-content h5 { 
            font-size: 1.8rem;
            margin-top: -2.5rem;
        }
        .modal-body {
            padding: 0rem 2rem 1rem 2rem;
        }
        #modal-link h2 {
            font-size: 1.5rem;
            margin: 1.2rem 0 1.7rem 0;
        }
        #modal-link textarea {
            font-size: 1.3rem;
            padding: 0.6rem 1.1rem;
        }
        #modal-link textarea[rows="1"] {
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        #modal-link .btn-outline-action {
            width: 9.0rem;
            font-size: 1.0rem;
        }
    }
}






.web-designer .btn-outline-action {
    height: 1.8vw;
    width: 7.5vw;
    font-size: 0.6vw;
    padding: 0.4vw 0;
    margin-top: 0.4vw;
}

.btn-outline-action.thick {
  background: var(--primary-color);
  color: #fff;
}

.btn-outline-action.thick:not(:disabled):not(.disabled):hover {
  /*background: transparent;*/
  /*color: var(--primary-color);*/
  
    font-weight: 700;
    font-size: 0.7vw;
    
    padding: 0.3vw 0;
}

.web-designer .upgradeable:hover{
  background: transparent !important;
  color: var(--primary-color)!important;
}

#modal-link .modal-content .btn:not(:disabled):not(.disabled):hover {
    background: var(--primary-color);
}





/* style for locked pages*/
.locked {
    background-image: url('../img/keylock.svg');
    background-repeat: no-repeat;
    background-position: center 190px;
    background-size: 38.8%;
}

.locked.statistics {
    background-position-y: 270px;
    background-size: 46%;
}

.locked .lockable {
    opacity: 0.35;
}

.locked .lockable .page-line {
    color: #5a5a5a;
}

.locked .lockable a,
.locked .lockable .btn,
.locked .lockable input,
.locked .lockable textarea,
.locked .lockable .input-group,
.locked .lockable .switch-candy,
.locked-switch {
    pointer-events: none;
}

.locked-switch a,
.locked .lockable .switch-candy a {
    background: #afafaf !important;
}

.locked-switch.switch-light.switch-candy input:checked ~ span span:first-child, 
.locked-switch.switch-light.switch-candy input:not(:checked) ~ span span:nth-child(2),
.locked .lockable .switch-light.switch-candy input:checked ~ span span:first-child, 
.locked .lockable .switch-light.switch-candy input:not(:checked) ~ span span:nth-child(2) {
    color: #939393;
}

.locked .lockable .btn:not(:disabled):not(.disabled).btn-outline-primary {
    background: #cfcfcf;
    border-color: #cfcfcf;
    color: #555;
    font-weight: var(--font-weight-bold);
    font-size: 1.5rem;
}

.locked .lockable .input-group.input-group-with-overlay > .input-group-prepend .input-group-with-svg > svg .symbol {
    fill: #bdbdbd !important;
}

.locked .lockable .nav.nav-tabs.bare .nav-link {
    color: #555;
}

.btn-upgrade {
    font-size: 1.5rem;
    padding: 0.5rem 3rem;
    letter-spacing: 0.2rem;
    min-width: 200px;
    font-weight: var(--font-weight-bold);
}

.statistics .page-line {
    margin: 5.5rem 0;
    font-size: 2.8rem;
}

.stats.switch-light.switch-candy {
    max-width: 340px;
}

.stats.switch-light.switch-candy > span {
    padding: 5px 0;
}

.stats.switch-light.switch-candy span span {
    font-size: 1.3rem;
}

.nav.nav-tabs.bare {
    margin-bottom: 50px;
    border-bottom-color: #eaeaea;
    display: inline-flex;
    margin-left: 7%;
}

body.issue-statistics .nav.nav-tabs.bare {
    border-bottom-color: #c2cdd9;
}

#modal-window .nav.nav-tabs.bare {
    margin: 0;
}

.nav.nav-tabs.bare .nav-link {
    color: #6a6a6a;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 1.4rem;
    padding: .5rem 0 1.5rem 0;
}

.nav.nav-tabs.bare .nav-item ~  .nav-item {
    margin-left:9.5rem;
}

.nav-tabs.bare .nav-link:focus, 
.nav-tabs.bare .nav-link:hover {
    border-color: transparent;
}

.nav-tabs.bare .nav-item.show .nav-link, 
.nav-tabs.bare .nav-link.active {
    background-color: transparent;
    border: none;
    border-bottom: 3px solid var(--primary-color);
    color: #6a6a6a;
}

.charts {
    width: 100%;
    max-width: 1030px;
    padding-bottom: 5rem;
}

body.issue-statistics .charts {
    margin-top: 1.5rem;
}

.charts .tab-pane {
    height: 25.9vw;
    position: relative;
}

body.issue-statistics .charts .tab-pane {
    height: 13vw;
    min-height: 250px;
}


body.issue-statistics .charts div.col {
        text-align: center;
    
}

body.issue-statistics .charts .tab-pane p {
    color: #4d4d4d;
    font-size: 1.8rem;
    letter-spacing: 0.075rem;
}
body.issue-statistics .charts .tab-pane p.main {
    font-weight: 700;
}



@media (max-width: 901px) {

.charts .tab-pane {
    min-height: 300px;
}

.nav.nav-tabs.bare {
    margin-bottom: 20px;
    border-bottom-color: #eaeaea;
    display: inline-flex;
    margin-left: 7%;
}

    
}

.charts svg.svg-icon-print {
    width: 32px;
    height: 32px;
    margin-right: 18.5%;
    margin-top: 1rem;
}

.charts svg.svg-icon-print .symbol {
    fill: #949494;
}

.publish-status {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.7vw;
    font-weight: var(--font-weight-light);
        margin-top: 1.3vw;
}

.green-dot {
    background: #00a651;
    display:block;
    width: 0.89vw;
    height: 0.89vw;
    margin-right: 0.4vw;
    border-radius: 100%;
}

.yellow-dot {
    background: #ffd200;
    display:block;
    width: 0.89vw;
    height: 0.89vw;
    margin-right: 0.4vw;
    border-radius: 100%;
}

.sales .switch-light {
    max-width: 340px;
    padding: 1.6rem 0 5.3rem 0;
}

.sales .switch-light.switch-candy > span {
    padding: 5px 0;
}

.sales .switch-light.switch-candy span span {
    font-size: 1.3rem;
}


@media (max-width: 901px) {
    @media (orientation: portrait) {
        .sales .switch-light {
            max-width: 300px;
            padding: 0.0rem 0 1.1rem 0;
        }

        
    }
    @media (orientation: landscape) {
        .sales .switch-light {
            max-width: 300px;
            padding: 1.0rem 0 1.0rem 0;
        }
    }
    
}



.locked.sales {
    background-position-y: 297px;
    background-size: 39%;
}

.locked.sales h1.earned {
    color: #5c5c5c;
}



#custom-form {
    padding-top: 10rem;
}


@media (max-width: 1000px) {
    @media (orientation: portrait) {
        #custom-form {
            min-height: 650px;
            padding-top: 5rem;
        }
    }
     @media (orientation: landscape) {
        #custom-form {
            min-height: 500px;
            padding-top: 5rem;
        }
    }
}



#custom-form > .wrapper {
    max-width: 681px;
    width: 100%;
}



#custom-form .form-control {
    font-size: 1.5rem;
    padding: 1.2rem 1rem;
    
}


#custom-form .form-control::placeholder {
    color: #999999;
    font-weight: var(--font-weight-regular);
}
#custom-form .form-control::-ms-input-placeholder {
    color: #999999;
    font-weight: var(--font-weight-regular);
}

#custom-form.store-payment-form .form-control{
    font-size: 1.4rem;
    padding: 0.6rem 1rem
}
#custom-form.store-payment-form label.placeholder {
    font-size: 1.4rem;
    top: 17px;
}


#custom-form .custom-select {
    font-size: 1.5rem;
    height: calc(4.8rem + 2px);
}
#custom-form.store-payment-form .custom-select{
    font-size: 1.4rem;
    height: calc(3.3rem + 2px);
    padding: 0.5rem;
}
#custom-form.store-payment-form .btn{
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.8rem 1rem;
    min-width: 162px;
    letter-spacing: 0.05rem;
    /*background: transparent;*/
}

/*#custom-form.store-payment-form .btn:hover{
    background: #2277c0;
    color: white;
}*/
/*#custom-form.store-payment-form .custom-select option{
    padding-top: 0px;
}*/


#custom-form .custom-select:invalid {
    color: #999;
}

#custom-form .custom-checkbox {
    color: #999999;
}

#custom-form .form-control {
    margin-bottom: 1.4rem;
}

#custom-form .custom-checkbox .custom-control-label::before {
    border-color: #d4d4d4;
    border-radius: 1px;
    width: 1.75rem;
    height: 1.75rem;
    top: 1.0rem;
}

#custom-form .custom-checkbox .custom-control-label::after {
    width: 2.0rem;
    height: 2.0rem;
    top: 0.0rem;
    left: -0.1rem;
}

#custom-form .req {
    margin-top: 0.6rem;
}

#custom-form .terms {
    margin-top: 2.7rem;
}

#custom-form .buttons {
    margin-top: 6rem;
}

#custom-form .buttons .btn {
    min-width:193px;
}

@media (max-width: 1000px) {
    #custom-form .terms {
    margin-top: 1.2rem;
}

    #custom-form .buttons {
    margin-top: 2rem;
    margin-bottom: 4rem;
}

    #custom-form .buttons .btn {
        min-width: 149px;
    }
}

label.placeholder {
    margin: 0;
    position: absolute;
    left: 50%;
    top: 25px;
    transform: translate(-50%,-50%);
    color: #999999;
    pointer-events: none;
}

label.placeholder.hide {
    display: none;
}

#payment-gateway-svg {
    pointer-events: none;
    position: absolute;
    top: 20px;
    right: -35px;
    overflow: hidden;
    width: 430px;
    height: 430px;
}

#payment-gateway-svg > svg {
    transform: scaleX(-1) scale(1.4) rotate(190deg);
    pointer-events: none;
    width: 100%;
    height: 100%;
}

body.thank-you h2.page-line {
    font-size: 4.1rem;
    margin: 11.9rem 0 2.8rem 0;
}

body.thank-you p.page-info {
    font-size: 2rem;
    max-width: 515px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
    letter-spacing: 0.055rem;
}

body.thank-you p.page-info-secondary {
    color: var(--tertiary-color);
    line-height: 2;
    font-size: 1.8rem;
    max-width: 490px;
    margin: 13.1rem auto 2.6rem auto;
    text-align: center;
    letter-spacing: 0.055rem;
}

body.settings-store-payment .wrapper {
    width: 100%;
    max-width: 530px;
}


body.settings-store-payment .wrapper .logo {
    max-width: 150px;
    padding: 2.7rem 0 6.2rem 0;
}

body.settings-store-payment h2.page-line {
    font-size: 2rem;
    margin-top: 8.7rem;
    letter-spacing: 0.05rem;
}

body.settings-store-payment .form-group {
    margin: 0;
}

body.settings-store-payment .form-row {
    margin-bottom: 2.3rem;
}

body.settings-store-payment .form-control {
    padding: 0.7rem 1rem;
    font-size: 1.4rem
}

body.settings-store-payment .form-control::placeholder {
    color: #999;
    font-weight: var(--font-weight-regular);
}

body.settings-store-payment .form-control::-ms-input-placeholder {
    color: #999;
    font-weight: var(--font-weight-regular);
}

body.settings-store-payment .custom-select {
    padding: 0.7rem 1rem;
    font-size: 1.4rem;
    height: calc(3.5rem + 2px);
}

body.settings-store-payment .btn-outline-primary {
    margin-top: 1.1rem;
}

body.settings-store-payment .btn:not(:disabled):not(.disabled).btn-outline-primary, 
body.settings-store-payment .btn-outline-primary.disabled, .btn-outline-primary:disabled,
body.settings-store-payment .btn:not(:disabled):not(.disabled).btn-outline-primary {
    min-width: 152px;
    padding: 0.75rem 2.7rem;
    font-size: 1.4rem;
}

body.settings-store-payment .modal-content h5 {
    font-size: 3.2rem;
    margin-top: -1rem;
    margin-bottom: 1.8rem;
}

body.settings-store-payment .modal .modal-dialog {
    max-width: 1350px;
}

body.settings-store-payment .modal .modal-body {
    padding: 2rem 9rem 4rem 9rem;
}

body.settings-store-payment .modal .modal-body img {
    width: 100%;
    border: 1px solid var(--primary-color);
}

.info-icon {
    width:18px;
    height: 18px;
    border: 1px solid #b7b7b7;
    border-radius: 50%;
    margin: 0.9rem 0 0 0.8rem;
    display: block;
    cursor: pointer;
}

.info-icon > svg {
    width: 100%;
    height: 100%;
    display: block;
}

.info-icon > svg > * {
    fill: #b7b7b7;
}

.settings-row {
    margin-top: 3.2rem;
}





@media (min-width: 991px) {
    .navigation-sidebar {
        margin-top: 12.8rem;
        max-width: 174px;
        width: 100%;
    }
    
}

.navigation-sidebar .btn {
    min-width: auto;
    font-size: 1rem;
    padding: 0.75rem 0.75rem;
    margin: 0 0.5rem 2.2rem 0.5rem;
    font-weight:var(--font-weight-regular);
    width: 9rem;
}


@media (min-width: 992px) {
    .navigation-sidebar .btn {
        font-size: 1.4rem;
        width: 16.5rem;
        margin: 0 0 2.2rem 0;
    }
}

@media (max-width: 991px) {
    .navigation-sidebar {
        margin: auto;
    }

    .settings-row {
        margin-top: 1.2rem;
    }
    
    @media (orientation: portrait) {
       .navigation-sidebar .btn {
            font-size: 1rem;
            width: 9.5rem;
            margin: 0 0.3rem 1.2rem 0.3rem;
        }
    }
}



body.page-settings h2.page-line {
    margin: 0 0 6.1rem 0;
    text-align: center;
}

@media (max-width: 991px) {
    
    body.page-settings h2.page-line {
        margin: 0 0 2.1rem 0;
        text-align: center;
    }
}


@media (max-width: 767px) {
    body.page-settings h2.page-line.md-smaller {
        font-size: 1.6rem;
        margin: 1.0rem 0 0 0;
    }
}

body.page-settings #custom-form .form-control {
    font-size: 1.4rem;
    padding: 0.6rem 1rem;
}

body.page-settings #custom-form .custom-select {
    height: calc(3.3rem + 2px);
    padding: 0 1rem;
    margin-bottom: 1.4rem;
}

body.page-settings label.placeholder {
    top: 19px;
    white-space: nowrap;
}

body.page-settings #custom-form .form-control::placeholder{
    font-weight: var(--font-weight-light);
}

body.page-settings #custom-form .buttons .btn {
    min-width: 150px;
    padding: 0.75rem 0.75rem;
    font-size: 1.2rem;
    margin-bottom: 1.4rem;
}

body.page-settings #custom-form .buttons {
    margin-top: 1.2rem;
}

body.page-settings.login #custom-form .wrapper {
    max-width: 512px;
}

body.page-settings .wrapper .logo {
    max-width: 150px;
    padding: 2.7rem 0 6.2rem 0;
}

body.page-settings.modal-content h5 {
    font-size: 3.2rem;
    margin-top: -1rem;
    margin-bottom: 1.8rem;
}

body.page-settings .modal .modal-dialog {
    max-width: 1350px;
}

body.page-settings .modal #force-cancel-modal.modal-dialog {
    max-width: 800px;
}

body.page-settings .modal #force-cancel-modal.modal-dialog .modal-header h5 {
    color: #fb5b61;
}

body.page-settings .modal .modal-body {
    padding: 1rem 0.5rem;
}

@media (min-width: 768px) {
    body.page-settings .modal .modal-body {
        padding: 2rem 9rem 4rem 9rem;
    }
}

body.page-settings .modal .modal-body img {
    width: 100%;
    border: 1px solid var(--primary-color);
}

body.page-settings.payment #custom-form > .wrapper {
    max-width: 560px;
}

body.page-settings.payment .info-icon {
    width: 22px;
    height: 22px;
    margin-top: 0.7rem;
}

@media (max-width: 767px) {
    body.page-settings.payment .info-icon {
        margin-left: 0;
    }
}

body.page-settings.payment .logo {
    max-width: 120px;
    padding: 2rem 0;
}
@media (max-width: 991px) {
  @media (orientation: landscape) {
            body.page-settings.payment .logo {
        padding: 0 0 2.4rem 0;
        margin-top: 02rem;
    }
        }
}
    


body.page-settings.payment .form-group {
    margin-bottom: 2.2rem;
}

@media (max-width: 767px) {
    body.page-settings .wrapper {
        padding: 0 0.75rem;
    }
}

body.page-settings.payment #custom-form .buttons {
    margin-top: 2.8rem;
}

@media (max-width: 991px) {
    body.page-settings.payment #custom-form .buttons {
        margin-top: 0.2rem;
    }
}

body.page-settings.plan .wrapper,
.is-tooltip .wrapper {
    max-width: 700px;
    background: #fff;
    border-radius: 10px;
    margin: auto;
}

.is-tooltip .wrapper {
    border-radius: 13px;
    margin-top: 1vw;
}

body.page-settings.plan .wrapper ul,
.is-tooltip .wrapper ul {
    columns: 2;
    column-gap: 112px;
    padding: 19px;
    list-style: none;
    color: #565656;
    
    text-transform: lowercase;
}


@media (min-width:992px) {
    .mw-50 {
        min-width: 50%;
        margin-left: 60px;
    }
}



.is-tooltip .wrapper ul {
    columns: 2;
    padding: 0 1.35vw 1.35vw 1.35vw;
    column-gap: 5.83vw;
}

body.page-settings.plan .wrapper li,
.is-tooltip .wrapper li {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05rem;
    line-height: 2.2rem;
}




.is-tooltip .wrapper li {
    font-size: 0.78vw;
    letter-spacing: 0.026vw;
}

body.page-settings.plan .wrapper li::before,
.is-tooltip .wrapper li::before {
    content: "\2022";
    color: var(--primary-color);
    display: inline-block;
    width: 14px;
    margin-right: 12px;
    font-size: 2rem;
}

.is-tooltip .wrapper li::before {
    width: 0.73vw;
    margin-right: 0.625vw;
    font-size: 1.04vw;
}





@media (max-width: 991px) {
    
        body.page-settings.plan .wrapper ul {
            columns: 2;
            column-gap: 112px;
            padding: 15px;
        }
        
        
        @media (orientation: portrait) {
            body.page-settings.plan .wrapper ul {
               columns: 1; 
            }
        }
        
        @media (orientation: landscape) {
/*            .mw-50 {
                min-width: 75%;
                margin-left: 20px;
            }*/
            
            body.page-settings.plan .wrapper li,
            .is-tooltip .wrapper li {
                font-size: 1.3rem;
                font-weight: 300;
                letter-spacing: 0.05rem;
                line-height: 2.2rem;
            }

            body.page-settings.plan .wrapper li::before,
            .is-tooltip .wrapper li::before {
                content: "\2022";
                color: var(--primary-color);
                display: inline-block;
                width: 14px;
                margin-right: 5px;
                font-size: 2rem;
            }

        }
}       
        

body.page-settings.plan h2.page-line {
    margin: 0 0 3.5rem 0;
}


@media (max-width: 991px) {
    body.page-settings.plan h2.page-line {
        margin: 0 0 0.5rem 0;
    }
}

body.page-settings.plan h3,
.is-tooltip h3 {
    text-align:center;
    text-transform: none;
    font-size: 2.4rem;
    color: #333333;
    letter-spacing: 0.35rem;
    margin: 0;
    font-weight: var(--font-weight-bold);
}

.is-tooltip h3 {
    font-size: 1.25vw;
    padding: 1rem 0;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
}

.is-tooltip .colorful {
    margin-top: 0;
    width: 8.75vw;
}

@media (max-width: 768px) {
    body.page-settings:not(.plan) h3 {
        display: none;
    }
}

body.page-settings.plan .small-buttons {
    max-width: 700px; 
    margin: 0 auto;
    text-align: right;
}

body.page-settings.plan .small-buttons > a {
    color: #565656;
    font-size: 1.3rem;
    margin: 0 0.5rem;
    cursor: pointer;
}

body.page-settings.plan .buttons {
    margin-top: 34px;
}

body.page-settings.plan .buttons .btn {
    font-size: 1.2rem;
    padding: 0.8rem 1rem;
    min-width: 162px;
}

body.page-settings .table-custom .btn {
    width: 10rem;
    font-size: 1.1rem;
}

.colorful {
    height: 1px;
    width: 168px;
    background: linear-gradient(to right, #4048b7, #41a9ff);
    margin:7px auto 9px auto;
}

.mobile-designer .designer-container {
    --designer-app-bg-color:none;
}

.mobile-designer .designer-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--designer-app-bg-color);
    z-index: 0;
    pointer-events: none;
}

.mobile-designer .designer-container > * {
    position: relative;
    z-index: 1;
}

.mobile-designer .btn-outline-action{
    height: 1.8vw;
    width: 7.5vw;
    font-size: 0.6vw;
    padding: 0.4vw 0;
    margin-top: 0.4vw;
}

.mobile-designer .upgradeable:hover{
  background: transparent !important;
  color: var(--primary-color)!important;
}

#notifications-form-row .btn:not(:disabled):not(.disabled).btn-outline-primary {
    padding: 0.6rem 1rem;
    min-width: 140px;
}

#add-issue-wrapper {
    display: inline-block;
}

#add-issue.btn {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 18.23vw;
    padding: 0.79vw 1.04vw;
    font-size: 1.56vw;
    letter-spacing: 0.1vw;
}

#add-issue.btn.highlighted {
    pointer-events: none;
    z-index: 1010;
}

@media (min-width: 1000px) {
    #add-issue.btn {
        min-width: 175px;
        padding: 0.75rem 1rem;
        font-size: 1.5rem;
        letter-spacing: 0.1rem;
    }
}

/* tutorial */
#tutorial.tutorial-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999;
    color: #fff;
    overflow: auto;
}

#tutorial .initial p {
    line-height: 1.4;
}

#tutorial p {
    margin: 0;
    color: #222;
    font-size: 1.05vw;
    font-weight: var(--font-weight-regular);
    letter-spacing: 0.05rem;
    line-height: 1.25;
}

#tutorial div.step:not(.initial) p {
    margin: 0;
    font-size: 1.05vw;
    font-weight: var(--font-weight-regular);
    
    letter-spacing: 0.05rem;
    line-height: 1.75;
    padding: 1.0vw;
    position: relative;
    padding-top: 3.0vw;
    text-align: center;
}

#tutorial p + p {
    margin-top: 1.45vw;
}

#tutorial .buttons {
    margin-top: 1.0vw;
    padding: 0;
}

#tutorial .initial .buttons {
    margin-top: 2.78vw;
}

#tutorial .btn-tutorial {
    border: 1px solid #fff;
    color: #fff;
    background: var(--primary-color);
    text-transform: lowercase;
    border-radius: 2rem;
    padding: 0.1rem 0.2rem;
    line-height: 2.2rem;
    min-width: 4.075vw;
    font-size: 0.8vw;
    vertical-align: middle;
    font-weight: 300;
    line-height: 1.45;
    float: left;
}

#tutorial div.step.initial .btn-tutorial {
    float: none;
}

#tutorial .btn-tutorial:focus,
#tutorial .btn-tutorial:hover {
    cursor: pointer;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}

#tutorial .btn-tutorial + .btn-tutorial {
    margin-left: 0.525vw;
}

#tutorial .btn-tutorial.narrow {
    min-width: auto;
    width: 2.56vw;
}

#tutorial .btn-tutorial > svg {
    max-height: 1.05vw;
    height: 100%;
    display: block;
    margin: 1px auto;
}

#tutorial .btn-tutorial > svg > * {
    fill: #000;
    stroke: #000 !important;
}


#tutorial .step {
    background: rgba(255, 255, 255, 1.0);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0.05vw 0.88vw 1.15vw 0.88vw;
    text-align: center;
    border-radius: 13px;
    max-width: 700px;
    position: relative;
    display: inline-block;
}

#tutorial .step.initial {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3.03vw 2.78vw 3.13vw 2.78vw;
}

#tutorial .step#step-7{
    max-width: 450px;
}

#tutorial .pointer {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    margin: 0 auto;
    width: 2.25vw;
    height: 2.25vw;
}

#tutorial .pointer > svg {
    width: 100%;
    height: 100%;
}

#tutorial .pointer > svg > * {
    fill: #b9b9b9;
}

#tutorial .pointer.up {
    top: calc(-2.25vw + 0.2vw);
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
}

#tutorial .pointer.left {
    left: calc(-2.25vw + 0.2vw);
    transform: translateY(-50%);
    right: auto;
}

#tutorial .pointer.right {
    right: calc(-2.25vw + 0.2vw);
    transform: translateY(-50%);
    left: auto;
}

#tutorial .pointer.down {
    bottom: calc(-2.25vw + 0.2vw);
    left: 50%;
    transform: translateX(-50%);
    top: auto;
}

#tutorial .pointer.up > svg {
    transform: rotate(180deg);
}

#tutorial .pointer.left > svg {
    transform: rotate(90deg);
}

#tutorial .pointer.right > svg {
    transform: rotate(270deg);
}

#tutorial-start-button {
    position: absolute;
    right: 5.3vw;
    bottom: -2.9vw;
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
    width: 1.46vw;
    height: 1.46vw;
    cursor: pointer;
    z-index: 999;
}

@media (max-width: 991px) {
    #tutorial-start-button {
        right: 16px;
        bottom: -32px;
        width: 30px;
        height: 30px;
    }
}

#tutorial-start-button > svg {
    display: block;
    width: 100%;
    height: 100%;
}

#tutorial-start-button:hover > svg > * {
    fill: var(--primary-color);
}

#tutorial-start-button:hover > svg > .symbol {
    fill: #fff;
}

/* end tutorial */

.input-group.highlighted {
    z-index: 1010;
    pointer-events: none;
}

.input-group.highlighted > input {
    border: 1px solid var(--primary-color) !important;
    background: transparent !important;
    color: var(--primary-color);
}

.input-group.highlighted > .input-group-append > .btn {
    border: 1px solid var(--primary-color) !important;
    background: transparent !important;
}

#rotate-screen {
    width: 123px;
    display: block;
    margin: 0 auto;
}

.rotate-screen-text {
    font-size: 2rem;
    margin-top: 3.3rem;
    padding-bottom: 6rem;
}

input#domain-name{
    text-align: right;
}

#modal-billing-notice .modal-dialog {
    max-width: 863px;
}

#modal-billing-notice .modal-header h5 {
    color: #fb5b61;
    text-transform: uppercase;
    font-size: 2.1rem;
    margin-top: -1.3rem;
}

#modal-billing-notice .modal-body p {
    color: #000;
    font-size: 1.7rem;
}

#modal-billing-notice .modal-footer {
    margin: 2.9rem 0 1.1rem 0;
}

#modal-billing-notice .modal-footer .btn.btn-outline-primary {
    border-color: #6c6c6c;
    color: #5a6066;
    text-transform: none;
    font-size: 1.3rem;
    min-width: 150px;
}

#modal-billing-notice .modal-footer .btn.btn-outline-primary:hover {
    background-color: #5a6066;
    border-color: #6c6c6c;
    color: #fff;
}

#app-published > .modal-dialog {
    max-width: 720px;
}

.web-designer,
.mobile-designer,
.interactivities {
    overflow-x: hidden;
}

/*FORCED STYLES FOR WEBDESIGN*/
/*.web-designer nav#main-navigation{
    min-height: 10vh;
}*/
.web-designer h2.page-line{
    line-height: 5vh;
    font-size: 2.0rem;
    margin: 0;
    font-weight: 400;
}
.web-designer .container-fluid.has-header{
    height: 80vh;
}
.web-designer #designer-preview.for-pc{
    width: 100%;
    max-width: 62vw;
    margin: 0 auto;
}
.web-designer #designer-pc{
    max-width: 100%;
    max-height: 34.8vw;
}
.web-designer #designer-pc #designer-pc-image {
    position: absolute;
    top: -7.7vw;
    left: -10.3vw;
    width: 132.925%;
    z-index: -1;
}


/*FORCED STYLES FOR MOBILE DESIGN*/
/*.mobile-designer nav#main-navigation{
    min-height: 10vh;
}*/
.mobile-designer h2.page-line{
    line-height: 5vh;
    font-size: 2.0rem;
    margin: 0px;
    font-weight: 400;
}
.mobile-designer .container-fluid.has-header{
    height: 82vh;
}
.mobile-designer #designer-preview.for-tablet.designer-tablet-h{
        max-width: 49vw;
}
.mobile-designer #designer-preview.for-tablet.designer-tablet-v{
    width: 30vw;
}


.mobile-designer #designer-tablet-h{
    max-width: 43.50vw;
    max-height: 32.7vw;
}

.mobile-designer #designer-tablet-h #designer-tablet-h-image {
    position: absolute;
      top: -2.62vw;
    left: -4.83vw;
    width: 122.9%;
    z-index: -1;
}

.mobile-designer #designer-tablet-v {
    font-family: 'Lato', sans-serif !important;
    position: relative;
    max-width: 24.0vw;
    width: 100vw;
    max-height: 32.0vw;
    height: 100vh;
    margin: 11.5% 8%;
}
.mobile-designer #designer-tablet-v #designer-tablet-v-image {
    position: absolute;
    top: 2.27vw;
    left: -7.55vw;
    width: 163.5%;
    transform: rotate(90deg);
}

#designer-phone-v{
    max-width: 16vw;
    max-height: 28.1vw;
    margin: 13% 7%;
}

#designer-phone-v #designer-phone-v-image {
    position: absolute;
    top: -5.5vw;
    left: -1.3vw;
    width: 116.6%;
    z-index: -1;
}



div#tablet-nav-h div#navigation-icon-logout{
    padding-right: 1.65vw !important;
}
div#tablet-nav-h div#navigation-icon-settings{
    padding-left: 1.5vw !important;
}
div#tablet-nav-v div#navigation-icon-logout{
    padding-right: 0vw !important;
    margin-right: 1.0vw;
}
div#tablet-nav-v div#navigation-icon-settings{
    padding-left: 0vw !important;
    margin-left: 1.5vw;
}

#designer-phone-v .designer-navigation-icon-menu {
    height: 0.9vw;
}
#designer-phone-v .show-when-paid .name{
    width: 65%;
}
#designer-phone-v .show-when-paid .price{
    width: 35%;
}

#designer-tablet-h .current-issue-title .issue-price{
    font-weight: 400;
}

#designer-tablet-v .current-issue-title .issue-price{
    font-weight: 400;
}

polygon.forcenofill{
    fill: none!important;
}

#tutorial .tutorial-next{
    left: calc(50% - 2.5vw);
    margin: 0px !important;
    position: absolute;
    font-weight: 400;
    padding: 0.2vw 1vw 0.2vw 1vw;
    text-transform: uppercase;
    height: 1.6vw;
    width: 5vw;
    letter-spacing: 0.025vw;
    
}

#tutorial .tutorial-next:hover{
    border: 1px solid #fff;
}

.btn-tutorial-close{
   
    z-index: 9999;
    border-radius: 50%;
    width: 1.2vw;
    height: 1.2vw;
    right: -0.5vw;
    border: 0px;
    margin: 0px !important;
    position: relative;
    float:right;
    top: 0.25vw;
    color: #000;
    background: transparent;
    line-height: 1vw;
    font-weight: 300;
    font-size: 1vw;
    padding: 0px;
    cursor: pointer;
    background: transparent;
}

.btn-tutorial-close:hover{
    border: 1px solid var(--primary-color);
    background: transparent;
}

#tutorial .btn-tutorial-back{
    max-width: 1.6vw;
    max-height: 1.6vw;
    min-width: 1.6vw;
    max-width: 1.6vw;
    width: 1.6vw;
    height: 1.6vw;
    padding: 0px;
    background: transparent !important;
}

.input-group-number {
    position: relative;
}

.input-group-number.disabled {
    pointer-events: none;
}

.input-group-number > .increment, 
.input-group-number > .decrement {
    position: absolute;
    font-size: 0;
    color: var(--tertiary-color);
}

.input-group-number > .increment:hover, 
.input-group-number > .decrement:hover {
    cursor: pointer;
}

.input-group-number.disabled > .increment, 
.input-group-number.disabled > .decrement {
    color: #e4e4e4;
}

.input-group-number > .increment {
    top: 9px;
    right: 7px;
}

.input-group-number > .increment::after {
    display: inline-block;
    width: 0;
    height: 0;
    content: "";
    border-top: 0;
    border-right: 7px solid transparent;
    border-bottom: 7px solid;
    border-left: 7px solid transparent;
}

.input-group-number > .decrement {
    top: 20px;
    right: 7px;
}

.input-group-number > .decrement::after {
    display: inline-block;
    width: 0;
    height: 0;
    content: "";
    border-top: 7px solid;
    border-right: 7px solid transparent;
    border-bottom: 0;
    border-left: 7px solid transparent;
}

.input-group-number.disabled input {
    color: #e4e4e4;
}

.designer-sidebar .btn.btn-designer:hover .symbol,
.designer-sidebar .btn.btn-designer.active .symbol,
.designer-sidebar .btn.btn-designer.active-colorpicker .symbol,
.designer-sidebar .btn.btn-designer.active-sidebar .symbol {
    fill: white;
}


.designer-sidebar .btn:not(:disabled):not(.disabled):hover,
.designer-sidebar .btn:not(:disabled):not(.disabled).active, 
.designer-sidebar .btn:not(:disabled):not(.disabled):active, 
.designer-sidebar .btn:not(:disabled):not(.disabled).active-colorpicker, 
.designer-sidebar .btn:not(:disabled):not(.disabled).active-sidebar, 
.designer-sidebar .show > .btn-primary.dropdown-toggle {
    background: var(--primary-color) !important;
    color: var(--active-color);
    box-shadow: none;
    border-color: var(--primary-color);
}




.colorpickle .slider {
    width: 100%;
    margin-top: 6px;
    cursor: ew-resize;
}

.disabled-click {
    pointer-events: none;
}

.disabled-click .btn,
.disabled-click #issues-featured-top-section .input-group.input-group-with-overlay > .input-group-append .btn, 
.disabled-click #issues-featured-top-section .input-group.input-group-with-overlay > .input-group-prepend .btn {
    border-color: #d4d4d4;
    color: #d4d4d4;
}

.disabled-click .btn svg .symbol {
    fill: #d4d4d4;
}

.disabled-click .switch-candy a,
.disabled-click .switch-light.switch-candy input:checked ~ span a {
    background-color: #d4d4d4 !important;
}

.disabled-click .switch-light.switch-candy input:checked ~ span span:first-child, 
.disabled-click .switch-light.switch-candy input:not(:checked) ~ span span:nth-child(2) {
    color: #d4d4d4;
}

.plandisabled{
    opacity: 0.35;
    pointer-events: none;
    cursor: auto;
    
}

.plandisabled a{
    pointer-events: none;
    cursor: auto;
    
}


.planenabled{
    /*opacity: 1.0;*/
}


.planeselected{
        transform: scale(1.1) !important;
        border: 1px solid var(--primary-color);
    /*box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.39);*/
-webkit-transform:scale(1.1) !important; 
-moz-transform:scale(1.1) !important; 
-o-transform:scale(1.1) !important; 
}

.modal-content button.close {
    background:#fff url('../img/popup_close.svg') no-repeat center center;
    background-size: 70%;
}
.modal-content button.close span{
    display: none;
}


.modal-header button.close {
    background:#fff url('../img/popup_close.svg') no-repeat center center;
    background-size: 70%;
}
.modal-header button.close span{
    display: none;
}


.modal-content ::-webkit-scrollbar {
    width: 10px;
}

.modal-content ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.4); 
    border-radius: 8px;
    -webkit-border-radius: 8px;
}

.modal-content ::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(200,200,200,0.8); 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}

a.export > svg {
    width: 25px;
    height: 25px;
}

.container-fluid .btn-upgrade:not(:disabled):not(.disabled):hover{
    font-weight: var(--font-weight-black) !important;
    font-size: 1.6rem;
    padding: 0.4rem 3rem;
}

#custom-form.store-payment-form .btn:hover{
    font-weight: var(--font-weight-black) !important;
    font-size: 1.25rem;
}


a.export{
    fill: #6a6a6a;
        float: right;
    margin-right: 2.5vw;
    margin-top: 0.5rem;
}

/* modal sidebar style */

.modal-sidebar {
    position: absolute;
    top: 102px;
    right: 0;
    bottom: auto;
    left: auto;
    width: 325px;
    height: auto;
    padding-right: 0 !important;
}

.modal-sidebar.left {
    right: auto;
    left: 0;
    bottom: 0;
}

.modal-sidebar.right {
    right: 12px;
    left: auto;
    bottom: 0;
}

.modal-sidebar > .modal-dialog {
    position: absolute;
    top: 0;
    right: -325px;
    margin: 0;
    width: 100%;
    max-height: 100%;
    transition: 1s;
    
    
    background-color: #353535;
    height: 100%;
    box-shadow: 1px 0 5px -3px #88888899;
}

.modal-sidebar.left > .modal-dialog {
    left: -325px;
    right: auto;
}

.modal-sidebar.right > .modal-dialog {
    left: auto;
    right: -325px;
}

.modal-sidebar.fade .modal-dialog {
    transition: left 0.3s ease-out, right 0.3s ease-out;
    right: -325px;
    transform: none;
}

.modal-sidebar.left.fade .modal-dialog {
    left: -325px;
    right: auto;
}

.modal-sidebar.right.fade .modal-dialog {
    left: auto;
    right: -325px;
}

.modal-sidebar.fade.show .modal-dialog {
    right: 0;
}

.modal-sidebar.left.fade.show .modal-dialog {
    left: 0;
    right: auto;
}

.modal-sidebar.right.fade.show .modal-dialog {
    left: auto;
    right: 0;
}

.modal-sidebar > .modal-dialog > .modal-content {
    box-shadow: none;
    border-radius: 0;
    border: 0;
    background-color: transparent;
}

.modal-sidebar > .modal-dialog > .modal-content > .modal-header {
    border-radius: 0;
    padding: 0;
}
.modal-sidebar > .modal-dialog >  .modal-header {
    border-radius: 0;
    padding: 0;
    
    pointer-events: auto;
}

.modal-sidebar > .modal-dialog > .modal-content > .modal-body {
    padding: 1rem;
    padding-top: 0px;
}

.modal-sidebar > .modal-dialog > .modal-content h5 {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0;
    margin: 15px 0 0 0;
    font-weight: var(--font-weight-regular);
    text-align: left;
    width: 240px;
}

.modal-sidebar > .modal-dialog > .modal-content > .modal-body .dropzone .upload-preview-item {
    width: 242px;
    border-radius: 0;
    /*border-color:*/
    background-color: #666;
}



.modal-sidebar > .modal-dialog button.close {
    position: absolute;
    top: 9px;
    left: 5px;
    background: transparent url('../img/svg-icon-hide.svg') no-repeat center center;
    background-size: 100%;
    border: 0;
    border-radius: 0;
    width: 3.5rem;
    height: 3.5rem;
    transform: rotate(90deg);
    
}

.modal-sidebar .colorpickle{
    background-color: transparent !important;
}
.modal-sidebar .colorpickle .hexValue{
    color: #fff !important;
    border-color: #fff;
    float: right;
}

.modal-sidebar .colorpickle .sliderWrapper.aWrapper label{
       color: #fff !important; 
}

.modal-sidebar .dropzone .upload-preview-item-dotted .help-text, .modal-body .dropzone .upload-preview-item .help-text{
    color: #fff;
}
.modal-sidebar .dropzone .upload-preview-item-dotted .or-drop-here, .modal-body .dropzone .upload-preview-item .or-drop-here{
      color: #666;
}

.modal-sidebar .btn:not(:disabled):not(.disabled).btn-outline-primary  {
    /*padding: 0.8rem 2rem;*/
/*    min-width:130px;
    color: var(--primary-color);
    font-weight: var(--font-weight-black);
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    border-radius: 3rem;*/
    background-color: #fff;
    border: 0px;
}


.modal-sidebar.left > .modal-dialog button.close {
    left: auto;
    right: 5px;
    transform: rotate(-90deg);
    z-index: 9999;
}

.modal-sidebar .modal-footer {
    margin: 0 0 .5rem 0;
}

.modal-sidebar .modal-body .form-control {
    max-width: 242px;
    border-radius: 0px;
    margin: 0 auto;
}

.modal-sidebar .modal-body .ql-editor p {
    font-size: 13px;
}

.custom-checkbox.dot {
    display: inline-block;
    padding: 0;
    width: 5.3%;
    height: 0;
    padding-bottom: 5.3%;
    min-height: 0 !important;
}

.custom-checkbox.dot .custom-control-label {
    cursor: pointer;
    margin: 0;
    width: 100%;
    height: 100%;
}
.custom-checkbox.dot .custom-control-input {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.custom-checkbox.dot .custom-control-label::before,
.custom-checkbox.dot .custom-control-label::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.custom-checkbox.dot .custom-control-label::before {
    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

.custom-checkbox.dot .custom-control-input:checked ~ .custom-control-label::after {
    background-image: none;
    width: 100%;
    height: 100%;
    padding: 20%;
    background: var(--primary-color);
    border-radius: 50%;
    background-clip: content-box;
}

#designer-bg-use-color-wrapper,
#designer-bg-use-image-wrapper {
    position: absolute;
    top: 50%;
    right: -7.3%;
    transform: translateY(-50%);
}

.hide-color::before {
    opacity: 0;
}

.hide-image {
    background-image: none !important;
}

#invoices-row {
    max-width: 990px;
    margin: 5rem auto 0 auto;
}

.dropzone.btn:not(:disabled):not(.disabled).btn-outline-primary.btn-alt {
    min-width: 181px;
    padding: 0.75rem 2.7rem;
    border-radius: 3rem;
    position: relative;
}

.dropzone.btn .upload-preview-item {
    border: 0;
    padding: 0;
    width: 100%;
    height: auto;
    display: block;
}

.dropzone.btn .upload-preview-item.dz-processing > span {
    display: none;
}

.dropzone.btn .upload-preview-item > .progress-wrapper {
    display: none;
    position: static;
    width: 100%;
    height: 5px;
    margin: 0.8rem 0;
}

.dropzone.btn .upload-preview-item > .progress-wrapper > .progress {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
}

.dropzone.btn .upload-preview-item.dz-processing {
    background: none;
}

.dropzone.btn .upload-preview-item.dz-processing > .progress-wrapper {
    display: block;
}

.wysiwyg {
    white-space: pre-wrap !important;
}

.mobile-designer .ql-editor{
    padding: 5px !important;
    max-height: 170px;
    min-height: 170px;
}

span.hexSpanName {
    float: left;
    font-size: 1.2rem;
    text-transform: uppercase;
    line-height: 22px;
    padding-top: 2px;
}

#issues-list .list-issue-highlighted {
    visibility: hidden;
}

#issues-list .prevent-hover .list-issue.active,
#issues-list .prevent-hover .list-issue:hover {
    background: none;
}

.accordion {
    background: #39434f;
    border-right: 1px solid #dfdfdf;
    color: #fff;
}

.accordion .card {
    background: #4f5e6d;
}

.accordion .card {
    border: 0;
    border-top: 1px solid #dfdfdf;
    
    cursor: pointer;
}





.accordion .card:first-of-type {
    border-top: 0;
}

.accordion .card:last-of-type {
    border-bottom: 1px solid #dfdfdf;
}

.accordion .card.hidden {
    display: none !important;
}


.accordion .card-header {
    border: none;
    background-color: #39434f;
    padding: 0;
    
}

@media (min-width: 901px) {
    .accordion .card-header {
        padding: 0;
    }
}
.accordion .card-header:hover {
    background-color: #4f5e6d;
}

.accordion .card-header.active {
    background: none;
}

.accordion .card-header h2 {
    display: block;
    font-size: 0;
}

.accordion .card-header h2 .btn {
    color: #fff;
    text-transform: uppercase;
    font-weight: var(--font-weight-bold);
    padding: 0;
    width: 100%;
    text-align: left;
    position: relative;
    font-size: 1.5vw;
    letter-spacing: 0.08vw;
    line-height: 1.5;
}

@media (min-width: 901px) {
    .accordion .card-header h2 .btn {
        font-size: 0.86vw;
        letter-spacing: 0.04vw;
        padding: 0.9vw 1.75vw;
        line-height: 21px;
    }
}

@media (max-width: 900px) {
    @media (orientation: landscape) {
        .accordion .card-header h2 .btn {
            padding: 1.6vw 3.5vw 1.6vw 35px;
            line-height: 1.77;
        }
    }
    @media (orientation: portrait) {
        .accordion .card-header h2 .btn {    
            padding: 1.74vw 3.5vw 1.74vw 1.6vw;
            line-height: 1.6;
        }
    }
}

.accordion .card-header h2 .btn:after {
    position: absolute;
    top: 50%;
    right: 1.75vw;
    content: '';
    font-size: 2.2vw;
    line-height: 1;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    
    background: url(../img/designer-arrow-down.svg) center no-repeat;
    background-size: contain;
    width: 20px;
    height: 38%;
    transform: translateY(-50%);
}

@media (min-width: 901px) {
    .accordion .card-header h2 .btn:after {
        height: 21px;
    }
}

@media (max-width: 900px) {
    .accordion .card-header h2 .btn:after {
        right: 3.5vw;
    }
}

.accordion .card-header.active h2 .btn:after {
    content: '';
    background: url(../img/designer-arrow-up.svg) center no-repeat;
    background-size: contain;
    width: 20px;
    height: 100%;
}

.accordion .card-header h2 .btn:not(:disabled):not(.disabled):hover,
.accordion .card-header h2 .btn:not(:disabled):not(.disabled):active,
.accordion .card-header h2 .btn:not(:disabled):not(.disabled):focus {
    background: transparent;
    text-decoration: none;
}

.accordion .card-header h2 .btn:not(:disabled):not(.disabled):hover {
    background: transparent;
    text-decoration: none;
/*    font-size: 0.95vw;*/
}

.accordion .card-body {
    position: relative;
    padding: 1.9vw 3.5vw;
    font-size: 1.56vw;
}

@media (min-width: 901px) {
    .accordion .card-body {
        padding: 0.95vw 1.75vw;
        font-size: 0.78vw;
    }
}

.accordion .card-body span.label {
    line-height: 1.5;
    height: 2.5vw;
    width: 50%;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 901px) {
    .accordion .card-body span.label {
        height: 1.25vw;
    }
}

.accordion .colorpicker {
    width: 100%;
    height: 23.1vw;
    margin: 1.04vw 0 6.25vw 0;
}

@media (min-width: 901px) {
    .accordion .colorpicker {
        height: 11.55vw;
        margin: 0.52vw 0 3.825vw 0;
    }
}

.accordion .colorpickle {
    background: transparent !important;
    min-width: auto;
}

.accordion .colorpickle .colorPickerIndicator {
    width: 2.08vw !important;
    height: 2.08vw !important;
}

@media (min-width: 901px) {
    .accordion .colorpickle .colorPickerIndicator {
        width: 1.04vw !important;
        height: 1.04vw !important;
    }
}

.accordion .colorpickle .colorPickerWrapper {
    top: 0;
    left: 0;
    right: 5.5%;
    bottom: 0;
    width: auto !important;
    height: auto !important;
}

.accordion .colorpickle .title {
    top: -2.6vw;
    left: 0;
    width: auto;
    right: auto;
}

@media (min-width: 901px) {
    .accordion .colorpickle .title {
        top: -1.6vw;
    }
}

.accordion .title {
    font-size: 1.25vw;
    text-transform: uppercase;
    line-height: 2.29vw;
    padding-top: 0.2vw;
}

@media (min-width: 901px) {
    .accordion .title {
        font-size: 0.8vw;
        line-height: 1.145vw;
        padding-top: 0.1vw;
    }
}

.accordion .colorpickle .swatchHex {
    top: -2.6vw;
    left: auto;
    width: auto;
    right: 0;
    font-size: 1.25vw;
}

@media (min-width: 901px) {
    .accordion .colorpickle .swatchHex {
        top: -1.6vw;
        font-size: 0.800vw;
    }
}

.accordion .colorpickle .swatchHex input {
    color: #fff !important;
    border-bottom-color: #fff !important;
    margin: 0 auto;
    float: none;
    width: 9.38vw !important;
    text-transform: uppercase;
    border-radius: 0 !important;
}

@media (min-width: 901px) {
    .accordion .colorpickle .swatchHex input {
        width: 4.69vw !important;
    }
}

.accordion .colorpickle .sliderWrapper.hWrapper {
    top: -10%;
    right: auto;
    left: 90.5%;
    bottom: auto;
    width: 93% !important;
    height: 10% !important;
    transform-origin: 0 100%;
}

@media (min-width: 901px) {
    .accordion .colorpickle .sliderWrapper.hWrapper {
    left: 94.5%;
    width: 64% !important;
    }
}

.accordion .colorpickle .hWrapper .sliderDiv .slider::-moz-range-thumb {
    width: 1px !important;
    height: 100% !important;
}

.accordion .colorpickle .hWrapper .sliderDiv .slider::-webkit-slider-runnable-track {
    height: 100%;
}

.accordion .colorpickle input[type=range]::-webkit-slider-runnable-track {
    height: 100%;
}

.accordion .colorpickle .hWrapper .sliderDiv .slider::-webkit-slider-thumb {
    width: 1px !important;
    height: 100% !important;
}

.accordion .colorpickle .sliderWrapper {
    height: 3.12vw;
}

@media (min-width: 901px) {
    .accordion .colorpickle .sliderWrapper {
        height: 1.76vw;
    }
}

.accordion .colorpickle .sliderWrapper.aWrapper {
    top: auto;
    bottom: -25%;
    width: 100%;
}

.accordion .colorpickle .sliderWrapper.aWrapper label {
    top: 0;
    left: 0;
    padding: 0;
    font-size: 1.25vw;
}

@media (min-width: 901px) {
    .accordion .colorpickle .sliderWrapper.aWrapper label {
        font-size: 0.8vw;
    }
}

.accordion .colorpickle .aWrapper .sliderDiv {
    top: 1.25vw;
    line-height: 1;
}

@media (min-width: 901px) {
    .accordion .colorpickle .aWrapper .sliderDiv {
        top: 0.825vw;
    }
}

.accordion .colorpickle .aWrapper .sliderDiv .slider {
    height: 0.52vw !important;
}

.accordion .colorpickle .aWrapper .sliderDiv .slider::-moz-range-track {
    height: 0.52vw !important;

}

.accordion .colorpickle .aWrapper .sliderDiv .slider::-moz-range-progress {
    height: 0.52vw !important;
}

@media (min-width: 901px) {
    .accordion .colorpickle .aWrapper .sliderDiv .slider {
        height: 0.26vw !important;
    }
    
    .accordion .colorpickle .aWrapper .sliderDiv .slider::-moz-range-track {
        height: 0.26vw !important;
    
    }
    
    .accordion .colorpickle .aWrapper .sliderDiv .slider::-moz-range-progress {
        height: 0.26vw !important;
    }
}

.accordion input[type="range"]::-moz-range-thumb {
    width: 1.78vw !important;
    height: 1.78vw !important;
}

.accordion input[type="range"]::-webkit-slider-thumb {
    width: 1.78vw !important;
    height: 1.78vw !important;
    margin-top: -0.89vw;
}

@media (min-width: 901px) {
    .accordion input[type="range"]::-moz-range-thumb {
        width: 0.89vw !important;
        height: 0.89vw !important;
    }
    
    .accordion input[type="range"]::-webkit-slider-thumb {
        width: 0.89vw !important;
        height: 0.89vw !important;
        margin-top: -0.445vw;
    }
}

.accordion .colorpickle .hWrapper .sliderBg {
    top: 0;
}

.accordion .colorpickle .hWrapper .sliderDiv,
.accordion .colorpickle .hWrapper .sliderDiv .slider {
    height: 100%;
}

.accordion .progress-wrapper-container {
    height: 3vw;
}

@media (min-width: 901px) {
    .accordion .progress-wrapper-container {
        height: 1.5vw;
    }
}

.accordion .progress-wrapper {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    padding: 0.94vw 0;
}

@media (min-width: 901px) {
    .accordion .progress-wrapper {
        padding: 0.47vw 0;
    }
}

.accordion .progress-wrapper > .progress {
    height: 1.04vw;
}

@media (min-width: 901px) {
    .accordion .progress-wrapper > .progress {
        height: 0.52vw;
    }
}

.accordion .progress-wrapper > .progress-proc {
    display: none;
}

.accordion .progress-wrapper > .progress-proc-name {
    position: absolute;
    top: -1.9vw;
    left: 50%;
    margin-top: 0;
    width: auto;
    color: #fff;
}

@media (min-width: 901px) {
    .accordion .progress-wrapper > .progress-proc-name {
        top: -0.95vw;
    }
}

.accordion .progress-wrapper > .progress-cancel {
    top: -2.5vw;
    left: auto;
    right: 0;
    transform: none;
    max-width: 2vw;
}

@media (min-width: 901px) {
    .accordion .progress-wrapper > .progress-cancel {
        top: -1.25vw;
        max-width: 1vw;
    }
}

.accordion .dropzone {
    width: 100%;
}

.accordion .dropzone .upload-preview-item {
    border: 1px dashed var(--primary-color);
    height: 24.06vw;
    width: 100%;
    border-radius: 0;
    background-color: #666;
}

@media (min-width: 901px) {
    .accordion .dropzone .upload-preview-item {
        height: 12.03vw;
    }
}

.accordion .dropzone.dz-started .upload-preview-item {
    border-color: transparent;
}

.accordion .dropzone .upload-preview-item img {
    padding: 0;
}

.accordion .dropzone .upload-preview-item .upload-file {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 1;
    background: var(--primary-color);
    padding: 0.34vw 2.6vw;
    border-radius: 3vw;
    white-space: nowrap;
    font-size: 1.26vw;
    letter-spacing: 0.1vw;
    text-transform: uppercase;
}

.accordion .dropzone .upload-preview-item .upload-file:hover{
    background: #fff;
    color: var(--primary-color);
}

@media (min-width: 901px) {
    .accordion .dropzone .upload-preview-item .upload-file {
        padding: 0.17vw 1.3vw;
        border-radius: 1.5vw;
        font-size: 0.63vw;
        letter-spacing: 0.05vw;
    }
}

.accordion .dropzone .upload-preview-item .help-text {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    white-space: nowrap;
    color: #fff;
    letter-spacing: 0.04vw;
    font-weight: var(--font-weight-light);
    font-size: 1.36vw;
}

@media (min-width: 901px) {
    .accordion .dropzone .upload-preview-item .help-text {
        letter-spacing: 0.02vw;
        font-size: 0.68vw;
    }
}

.accordion .dropzone .upload-preview-item .or-drop-here {
    position: absolute;
    top: 69%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    white-space: nowrap;
    color: #fff;
    letter-spacing: 0.04vw;
    font-weight: var(--font-weight-light);
    font-size: 1.36vw;
}

@media (min-width: 901px) {
    .accordion .dropzone .upload-preview-item .or-drop-here {
        letter-spacing: 0.02vw;
        font-size: 0.68vw;
    }
}

.accordion .dropzone.dz-started .upload-preview-item .help-text,
.accordion .dropzone.dz-started .upload-preview-item .upload-file,
.accordion .dropzone.dz-started .upload-preview-item .or-drop-here {
    display:none !important;
}

.accordion .dropzone .dz-complete.upload-preview-item > img {
    top: 0;
    left: 0;
    transform: none;
    border-radius: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: contain;
    position: static;
}

.accordion .btn:not(:disabled):not(.disabled).btn-outline-primary,
.accordion .btn-outline-primary:disabled {
    display: block;
    color: #f6f6f6;
    border-color: #bcbcbc;
    min-width: auto;
    font-size: 1.3vw;
    padding: 0.2vw 2.8vw;
    text-transform: none;
    letter-spacing: 0.04vw;
    font-weight: var(--font-weight-regular);
}
.accordion .btn:not(:disabled):not(.disabled).btn-outline-primary{
     color: #39434f;
     border-color: #ffffff;
    background-color: #ffffff;
}

@media (min-width: 901px) {
    .accordion .btn:not(:disabled):not(.disabled).btn-outline-primary,
    .accordion .btn-outline-primary:disabled {
        font-size: 0.80vw;
        padding: 0.1vw 1.4vw;
        letter-spacing: 0.02vw;
    }
}

.accordion .btn:not(:disabled):not(.disabled).btn-outline-primary:hover {
    background-color: transparent;
    color: #ffffff;
}

.accordion .form-control {
    color: var(--tertiary-color);
    border-color: #e4e4e4;
    font-size: 1.36vw;
    padding: 0.62vw;
    font-family: 'Lato', sans-serif;
    font-weight: var(--font-weight-regular);
    background: #f7f7f7;
    border-radius: 0px;
}

@media (min-width: 901px) {
    .accordion .form-control {
        font-size: 0.88vw;
        padding: 0.31vw;
    }
}

.accordion .form-control::placeholder {
    border-color: #e4e4e4;
    font-size: 1.56vw;
    font-weight: var(--font-weight-regular);
    text-align: center;
    color: #a6a6a6;
}

@media (min-width: 901px) {
    .accordion .form-control::placeholder {
        font-size: 0.88vw;
    }
}

.accordion .wysiwyg-tb {
    border-radius: 0px; 
    border-color: #e4e4e4; 
    padding: 2px;
}

.accordion .wysiwyg {
    border-radius: 0px;
    border-color: #e4e4e4;
    background-color: #fff;
    padding: 2px;
}

.accordion .ql-editor {
    padding: 0.47vw !important;
    max-height: 17.6vw;
    min-height: 17.6vw;
    font-size: 1.36vw;
}

@media (min-width: 901px) {
    .accordion .ql-editor {
        padding: 0.26vw !important;
        max-height: 8.8vw;
        min-height: 8.8vw;
        font-size: 0.8vw;
    }
}

.accordion .ql-snow.ql-toolbar button{
    border: 0.1vw solid #9E9E9E;
    border-radius: 0.42vw;
    padding: 0.32vw 0.42vw;
    height: 2.4vw;
    width: 2.5vw;
}

@media (min-width: 901px) {
    .accordion .ql-snow.ql-toolbar button{
        border: 0.05vw solid #9E9E9E;
        border-radius: 0.21vw;
        padding: 0.16vw 0.21vw;
        height: 1.2vw;
        width: 1.25vw;
    }
}





.web-designer .switch-light.switch-candy input:checked ~ span,
.mobile-designer .switch-light.switch-candy input:checked ~ span {
    background: var(--primary-color);
}

/*.mobile-designer .switch-candy a {
    background: #fff !important;
    width: 50%;
    right: calc(34% - 1px);
}

.mobile-designer .switch-light.switch-candy > span {
    background: transparent;
    border: 1px solid #b0d0f9;
    border: 1px solid var(--disabled-color);
}


.mobile-designer .switch-light input[disabled="disabled"] ~ span {
    cursor: not-allowed;
}

.mobile-designer .switch-light input[disabled="disabled"] ~ span a {
    background: #afafaf !important;
}

.switch-light.switch-candy.switch-decision input[disabled="disabled"]:checked ~ span span:first-child, 
.switch-light.switch-candy.switch-decision input[disabled="disabled"]:not(:checked) ~ span span:nth-child(2) {
    color: #afafaf !important;
}

.mobile-designer .switch-light.switch-candy > span {
    width: 3.02vw;
    background: none;
    border: 0.1vw solid #fff;
    height: 2.06vw;
    min-height: auto;
}


@media (min-width: 901px) {
    .mobile-designer .switch-light.switch-candy > span {
        width: 2.01vw;
        border: 0.05vw solid #fff;
        height: 1.23vw;
        
        width: 35px;
        border: 1px solid #fff;
        height: 20px;
    
    }
}*/




.switch-light.switch-candy.switch-simple {
    margin: 0;
}

.switch-light.switch-candy.switch-simple > span {
    width: 3.02vw;
    background: none;
    border: 0.1vw solid #fff;
    height: 2.06vw;
    min-height: auto;
}

@media (min-width: 901px) {
    .switch-light.switch-candy.switch-simple > span {
/*        width: 2.01vw;
        border: 0.05vw solid #fff;
        height: 1.23vw;*/
        
        width: 35px;
        border: 1px solid #fff;
        height: 20px;
    
    }
}

.switch-light.switch-candy.switch-simple a {
    height: calc(100% - 0.42vw);
    right: calc(50% - 0.42vw);
    margin: 0.2vw;
}

@media (min-width: 901px) {
    .switch-light.switch-candy.switch-simple a {
/*        height: calc(100% - 0.15vw);
        right: calc(50% - 0.15vw);
        margin: 0.05vw;*/
        height: calc(100% - 2px);
    right: calc(50% - 2px);
    margin: 1px;
    }
}

.switch-light.switch-candy.switch-simple a,
.switch-light.switch-candy.switch-simple input:checked ~ span a {
    background: #fff !important;
}

.designer-container-wrapper {
    margin-left: -15px;
    margin-right: -15px;
    min-height: calc(100vh - 102px);
}

#accordionMenu {
    width: 33%;
}

#designerContent {
    width: 67%;
}

@media (min-width: 901px) {
    #accordionMenu {
        width: 21.8%;
        height: calc(100vh - 102px);
    overflow-y: scroll;
    }
    
    #designerContent {
        width: 78.2%;
    }
}

#designer-notification {
    display: none !important;
    padding: 5%;
    text-align: center;
}

@media (max-width: 900px) {
    #designer-preview {
        display: none !important;
    }

    #designer-notification {
        display: block !important;
    }
}

#designer-notification h2 {
    font-size: 4.44vw;
}


#designer-notification p {
    font-size: 2.22vw;
}

#designer-notification img {
    width:100%;
    height: auto;
}

@media (max-width: 1000px) {
    #designer-notification h2 {
        font-size: 2.7vw;
    }
#designer-notification p {
    font-size: 2.0vw;
}

#designer-notification img {
    width:50%;
    height: auto;
    margin-top: 15px;
}
}



#collapseCovers .card-body {
    padding-bottom: 0;
}

.mobile-designer .top-bar .btn-outline-action,
.web-designer .top-bar .btn-outline-action {
    font-size: 0.7vw;
    width: 9.25vw;
    padding: 0;
    line-height: 2.1vw;
    height: 2.1vw;
    letter-spacing: 0.09vw;
    margin-top: 0;
}

.mobile-designer .top-bar .btn-outline-action.thick:not(:disabled):not(.disabled):hover,
.web-designer .top-bar .btn-outline-action.thick:not(:disabled):not(.disabled):hover {
      font-weight: 700;
      font-size: 0.7vw;
      padding: 0;
}

.navbar-toggler[aria-expanded="true"] > .navbar-toggler-icon {
    background: url('../img/popup_close_menu.svg') no-repeat center center;
    background-size: 85%;
}

@media (max-width: 991px) {
    
    @media (orientation: landscape) {
        body.page-settings > .container-fluid{
            padding-left: 30px;
            padding-right: 30px;
        }
        

    }
}

#issues-list .set-password-button {
    position: absolute;
    top: 0.5vw;
    right: 0.5vw;
}

#issues-list .body .set-password-button svg {
    width: 10px;
    height: 10px;
    margin: 0;
        cursor: pointer;
    
}

@media (min-width: 500px) and (max-width: 1000px) {
    #issues-list .body .set-password-button svg {
        width: 16px;
        height: 16px;
        margin: 0;
    }
}

@media (min-width: 1000px) {
    #issues-list .body .set-password-button svg {
        width: 24px;
        height: 24px;
        margin: 0;
    }
}

.switch-decision {
    margin: 7px 33.7% 0 16%;
}

.switch-light.switch-candy.switch-decision input:checked ~ span span:first-child, 
.switch-light.switch-candy.switch-decision input:not(:checked) ~ span span:nth-child(2) {
    color: var(--primary-color);
}

.switch-light.switch-candy.switch-decision input:checked ~ span span:first-child {
    color: var(--disabled-color) !important;
}
.switch-light.switch-candy.switch-decision input:not(:checked) ~ span span:nth-child(2) {
    color: var(--disabled-color) !important;
}


.switch-light.switch-candy.switch-decision span span {
    text-shadow: none !important;
    font-size: 0.9rem;
    text-transform: uppercase;
    width:50%;
    font-weight: var(--font-weight-regular);
}



.switch-light.switch-decision label, .switch-light.switch-decision > span {
    line-height: 1.5em;
    min-height: 1.5em;
    background: transparent;
    border: 1px solid var(--disabled-color);
}



/*.switch-light.switch-candy.disabled input:checked ~ span a,
.switch-candy.disabled a {
    background: #c50000 !important;
    background: #c5c5c5 !important;
}



.switch-light.switch-candy input:checked ~ span span:first-child,
.switch-light.switch-candy input:not(:checked) ~ span span:nth-child(2) {
    color: var(--disabled-color);
        var(--primary-color);
    font-weight: var(--font-weight-regular);
}*/


body.landing1{
    background: url("https://publuu.com/wp-content/themes/setupo-new/public/images/products_menu.png") top center no-repeat;
    
    background-color: #f5f5f5;
}

body.landing1 label:not(.custom-control-label) {
    font-size: 1.4rem;
    letter-spacing: 0.075rem;
    margin: 0.5rem 0.2rem 1rem 0.2rem;
    color: var(--tertiary-color-login);
    /*text-transform: uppercase*/
}

body.landing1 .btn {
    padding: 1rem;
    min-width: auto;
    font-size: 1.5rem;
    width: 100%;
    text-transform: unset;
    letter-spacing: 0.1rem;
    border-radius: 0.5rem !important;
    margin-top: 10px !important;
    
}

table.min-table {
    width: 100%;
    border-collapse: separate;
    color: #4b4b4b;
}

table.min-table th {
    font-size: 1.2rem;
    text-transform: uppercase;
    border-bottom: 1px solid #eaeaea;
    line-height: 1;
    padding: 7px 15px;
}

table.min-table td {
    border-bottom: 1px solid #eaeaea;
    line-height: 1;
    padding: 17px 15px;
}

table.min-table th:not(:first-child), table.min-table td:not(:first-child) {
    margin-left: 1px;
}

table.min-table a {
    font-weight: bold;
    color: var(--primary-color);
}

.flatpickr-time input.flatpickr-hour{
    text-align: right !important;
    font-weight: 400;
}

.numInputWrapper span.arrowUp{
    display: none;
}
.numInputWrapper span.arrowDown{
    display: none;
}


.flatpickr-time input.flatpickr-minute, .flatpickr-time input.flatpickr-second{
    text-align: left !important;
}

.flatpickr-time input:hover, .flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
    background: #ffffff;
}

.flatpickr-time input.numInput {
    line-height: 1;
}

table.min-table tr.sortableTR th{
    cursor: pointer;
}

table.min-table tr.sortableTR th.sorted{
    background-color: #96c6ff;
    /*background-color: #e5f0ff;*/
}

table.min-table td.sorted{
    background-color: #f3f3f3;
}




table.min-table tr.sortableTR th.sorted.desc .arrow {
    margin-left: 5px;
     border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
table.min-table tr.sortableTR th.sorted.asc .arrow {
    margin-left: 5px;
     border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

#modal-link .datepicker {
    display: inline;
    width: auto;
}

.links-table {
    width: 92%;
    margin: 1.56vw auto;
    color: #7e7e7e;
    background: whitesmoke;
    border-radius: 2px;
    box-shadow: 0px 0px 5px #928f8f42;
}

.links-table .row {
    margin-left: 0;
    margin-right: 0;
}

.links-table .row.header {
    font-size: 1.2vw;
    text-transform: uppercase;
    line-height: 1;
    padding: .9vw 0;
    font-weight: var(--font-weight-bold);
    text-align: center;
    color: #333;
}



@media (min-width: 1024px) {
    .links-table .row.header {
        font-size: 1.1rem;
        padding: 1.2rem 0;
    }
}

.links-table .row.header > .col {
    /*justify-content: center;*/
    letter-spacing: .15rem;
}

.links-table .row.line {
    border-top: 1px solid #dfdfdf;
    line-height: 1;
    font-size: 1.5vw;
    padding: .8vw 0;
}


@media (min-width: 1000px) {
    .links-table .row.line {
        font-size: 1.5rem;
        padding: .8rem 0;
    }
}

.links-table .row.line:hover {
    background: #f5f5f5;
    color: #393939;
}

.links-table .col:not(.links-time-chart) {
    display: flex;
    align-items: center;
}

.link-tooltip .tooltip-inner {
    max-width: none;
    background: rgba(87, 87, 87, 0.8);
    padding: 5px 15px;
    
}

.link-tooltip .arrow::before {
    border-top-color: rgba(87, 87, 87, 0.8);
}

.link-expired-tooltip .tooltip-inner {
    max-width: none;
    background: rgba(87, 87, 87, 0.8);
    text-transform: uppercase;
    padding: 5px 15px;
}

.link-expired-tooltip .arrow::before {
    border-top-color: rgba(87, 87, 87, 0.80);
}

#issues-list .price-switch, #issues-list .publish-switch {
    margin: 0;
}

.chart-tooltip-preview {
    background: rgba(87, 87, 87, 0.80);
    border-radius: 8px;
    color: #4b4b4b;
    font-weight: var(--font-weight-regular);
    
}

.chart-tooltip-preview img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 1px #d8d8d8;
    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.chart-tooltip-preview .thumbnail-container {
    width: 9.7vw;
    max-height: 13.7vw;
    margin: 2.2vw 4.3vw 2.2vw 4.3vw;
}

.chart-tooltip-preview .text-container {
    text-align: center;
    margin-bottom: .7vw;
}

.chart-tooltip-preview .text-container .header {
    font-size: 1vw;
    text-transform: uppercase;
    color: #e4e4e4;
    letter-spacing: .01vw;
}

.chart-tooltip-preview .text-container .values {
    font-size: 1vw;
    letter-spacing: .01vw;
}



@media (min-width: 1000px) {
    .chart-tooltip-preview .thumbnail-container {
        width: 160px;
        height: 160px;
        margin: 1.2rem;
        margin-bottom: 0px;
        position: relative;
        display: inline-block;
        overflow: hidden;
    }
    
    body.issue-statistics .chart-tooltip-preview .thumbnail-container {
        width: 96px;
        height: 132px;
        margin: 1.4rem 2.9rem .3rem 2.9rem;
    }
    
    .chart-tooltip-preview .text-container {
        text-align: center;
        margin-bottom: .7rem;
    }
    
    .chart-tooltip-preview .text-container .header {
        font-size: 1rem;
        text-transform: uppercase;
        color: #ffffff;
        letter-spacing: .025rem;
    }

    .chart-tooltip-preview .text-container .values {
        font-size: 1rem;
        letter-spacing: .025rem;
    }
}

.chart-tooltip-preview .text-container .row > .col:first-child {
/*    flex: 0 0 26%;
    max-width: 26%;
    margin-right: 24%;*/
    flex: 0 0 50%;
    max-width: 50%;
    margin-right: 0%;
    
}

.chart-tooltip-preview .text-container .row > .col:last-child {
/*    flex: 0 0 41%;
    max-width: 41%;
    margin-left: 9%;*/
    flex: 0 0 50%;
    max-width: 50%;
    margin-left: 0%;
}

.chart-tooltip-preview .values {
    color: #fff;
}

.chart-tooltip-preview .col {
    line-height: 1.25;
}

.chart-tooltip-preview .tooltip-content {
    line-height: 1.25;
    font-weight: var(--font-weight-bold);
    text-align: center;
    padding: 0 0 1.4rem 0;
    font-size: 1.3rem;
    letter-spacing: .075rem;
}

#chartjs-tooltip.below:after {
    position: absolute;
    content: '';
    bottom: -8px;
    left: calc(50% - 6px);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid rgba(87, 87, 87, 0.80);
    pointer-events: none;
}

.switch-light.switch-candy.switch-knob {
    margin: 0;
    display: flex;
}

.switch-light.switch-candy.switch-knob > span {
    background: #ababab;
    min-height: 16px;
    width: 27px;
}

.switch-light.switch-candy.switch-knob input:checked ~ span {
    background: var(--primary-color);
}

#issues-list .switch-light.switch-candy.switch-knob a,
.switch-light.switch-candy.switch-knob a
{
    width: 45.00%;
    right: 42.35%;
    margin: 2px;
    height: calc(100% - 4px);
}

#issues-list .switch-light.switch-candy.switch-knob input:checked ~ span a,
.switch-light.switch-candy.switch-knob input:checked ~ span a {
    right: 0;
}

.switch-light.switch-candy.switch-knob a,
.switch-light.switch-candy.switch-knob input:checked ~ span a,
.list-issue.active .switch-light.switch-candy.switch-knob input:checked ~ span a,
.list-issue:hover .switch-light.switch-candy.switch-knob input:checked ~ span a {
    background: #fff !important;
}

.switch-knob + span {
    margin-left: 1.6rem;
    letter-spacing: .075rem;
}

.links-table .dropdown-item > span {
    margin-left: 1.2rem;
}

#issues-list .links-table .actions .dropdown-item > svg {
    margin:0 8px;
}

.links-table .chart-title {
    font-weight: var(--font-weight-bold);
    margin: 3.6vw 0 1vw 0;
    font-size: 1.3vw;
    letter-spacing: .1vw;
    color: #7b7b7b;
}

.links-table .chart-title:first-child {
    margin: 5.5vw 0 4.5vw 0;
}

@media (min-width: 500px) and (max-width: 1000px) {
    .links-table .chart-title {
        margin: 3.6rem 0 .7rem 0;
        font-size: 1.0rem;
        letter-spacing: 0rem;
    }
    
    .links-table .chart-title:first-child {
        margin: 5.2rem 0 4.2rem 0;
    }
}

@media (min-width: 1000px) {
    .links-table .chart-title {
        margin: 3.9rem 0 1.0rem 0;
        font-size: 1.3rem;
        letter-spacing: .1rem;
    }

    .links-table .chart-title:first-child {
        margin: 5.5rem 0 4.5rem 0;
    }
}

.links-table .chart-subtitle {
    color: #9f9e9e;
    font-size: 1.2vw;
    margin-top: .4vw;
    padding-left: .78vw;
    margin-left: 6%;
}

@media (min-width: 500px) and (max-width: 1000px) {
    .links-table .chart-subtitle {
        font-size: .9rem;
        margin-top: .1rem;
        padding-left: 12px;
    }
}

@media (min-width: 1000px) {
    .links-table .chart-subtitle {
        font-size: 1.2rem;
        margin-top: .4rem;
        padding-left: 15px;
    }
}

.links-table .row.line .border-on-hover {
    border: 1px solid transparent;
    border-radius: 15px;
    font-size: 1.2vw;
    padding: .2vw 1vw;
}

@media (min-width: 500px) and (max-width: 1000px) {
    .links-table .row.line .border-on-hover {
        font-size: .9rem;
        padding: .1rem .7rem;
    }
}

@media (min-width: 1000px) {
    .links-table .row.line .border-on-hover {
        font-size: 1.2rem;
        padding: .2rem 1rem;
    }
}

.links-table .row.line:hover .border-on-hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.min-table .link a {
    color: #0058da;
    font-weight: var(--font-weight-regular);
}

.min-table .page {
    color: #333333;
    font-weight: var(--font-weight-light);
    font-size: 1.2vw;
    text-align: right;
}

@media (min-width: 500px) and (max-width: 1000px) {
    .min-table .page {
        font-size: .9rem;
    }
}

@media (min-width: 1000px) {
    .min-table .page {
        font-size: 1.2rem;
    }
}

.dropdown-item-container > .left,
.dropdown-item > .left {
    width: 3.6vw;
    display: flex;
    justify-content: center;
    margin-right: 1.2vw;
}

.dropdown-item > .right {
    width: 12vw;
    letter-spacing: .075vw;
}

@media (min-width: 100px) and (max-width: 1000px) {
    .dropdown-item-container > .left,
    .dropdown-item > .left {
        width: 24px;
        margin-right: .9rem;
    }
    
    .dropdown-item > .right {
        width: 70px;
        letter-spacing: .05rem;
    }
}

@media (min-width: 1000px) {
    .dropdown-item-container > .left,
    .dropdown-item > .left {
        width: 36px;
        margin-right: 1.2rem;
    }
    
    .dropdown-item > .right {
        width: 120px;
        letter-spacing: .075rem;
    }
}

#issues-list .links-table .actions svg {
    margin: 0;
}

.dropdown-menu-caret[x-placement="bottom"] {
    margin-top: 8px;
}

.dropdown-menu-caret[x-placement="bottom"]::before {
    position: absolute;
    content: '';
    top: -8px;
    left: calc(50% - 6px);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #cfcfcf;
    pointer-events: none;
}

.dropdown-menu-caret[x-placement="bottom"]::after {
    position: absolute;
    content: '';
    top: -6px;
    left: calc(50% - 5px);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 6px solid #f3f3f3;
    pointer-events: none;
}

.dropdown-menu-caret[x-placement="top"] {
    margin-bottom: 8px;
}

.dropdown-menu-caret[x-placement="top"]::before {
    position: absolute;
    content: '';
    bottom: -8px;
    left: calc(50% - 6px);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #cfcfcf;
    pointer-events: none;
}

.dropdown-menu-caret[x-placement="top"]::after {
    position: absolute;
    content: '';
    bottom: -6px;
    left: calc(50% - 5px);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #f3f3f3;
    pointer-events: none;
}

.irs--flat {
    margin: 10px 3px 0 24px;
    height: 12px;
}

@media (min-width: 500px) and (max-width: 1000px) {
    .irs--flat {
        margin: 5px 3px 0 41px;
        height: 12px;
    }
}

@media (min-width: 1000px) {
    .irs--flat {
        margin: 5px 3px 0 46px;
        height: 12px;
    }
}

.irs--flat .irs-line {
    top: 4px;
    height: 4px;
}

.irs--flat .irs-bar {
    background-color: #87bbf6;
    top: 4px;
    height: 4px;
}

.irs--flat .irs-bar:hover {
    cursor: grab !important;
}

.irs--flat .irs-bar.active {
    cursor: grabbing !important;
}

.irs--flat .irs-handle {
    background-color: #87bbf6;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    top: 0;
    cursor: ew-resize;
}

.irs--flat .irs-handle > i:first-child {
    background-color: #87bbf6;
}

.irs--flat .irs-handle.state_hover > i:first-child, 
.irs--flat .irs-handle:hover > i:first-child {
    background-color: #87bbf6;
}

.links-time-chart > .statistics-data {
    padding: 0 6%;
}

.links-table .chart {
    height: 12.66vw;
}

.links-table .chart > canvas {
    height: 24.3vw;
}

@media (min-width: 500px) and (max-width: 1000px) {
    .links-table .chart {
        height: 200px;
    }
}

@media (min-width: 1000px) {
    .links-table .chart {
        height: 243px;
    }
}

.links-table .row > .col {
    flex: 0 0 auto;
    flex-wrap: wrap;
    padding-left: .78vw;
    padding-right: .78vw;
}

@media (min-width: 1000px) {
    .links-table .row > .col {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.links-table .col.open-col {
    width: 6%;
}

.links-table .col.name-col {
    width: 25.5%;
    letter-spacing: .15vw;
}

@media (max-width: 1000px) {
    .links-table .col.name-col {
        letter-spacing: .1rem;
    }
}

@media (min-width: 1000px) {
    .links-table .col.name-col {
        letter-spacing: .05rem;
    }
}

.links-table .col.notification-col {
    width: 20%;
    justify-content: center;
}

.links-table .col.views-col {
    width: 10%;
    justify-content: center;
}

.links-table .col.time-col {
    width: 15%;
    justify-content: center;
}

.links-table .col.activity-col {
    width: 14%;
    justify-content: center;
}

.links-table .col.options-col {
    width: 9.5%;
    justify-content: center;
}

#issues-list .links-table .btn-outline-action {
    padding: 0 1.2vw;
    font-size: 1.4vw;
    line-height: 3vw;
    letter-spacing: 0.1vw;
}

.add-link{
    background-color: var(--primary-color);
    color: #fff !important;
}

.add-link:hover{
    color: var(--primary-color) !important;
    background-color: #fff !important;
}


@media (min-width: 1000px) {
     #issues-list .links-table .btn-outline-action {
        padding: 0 1.2rem;
        font-size: 14px;
        line-height: 30px;
        letter-spacing: 0.1rem;
    }
    
    #issues-list .links-table .btn-outline-action.add-link {
        padding: 0px;
        width: 32px;
        font-size: 1.4rem;
        line-height: 30px;
        height: 32px;
        font-weight: 900;
    }
    
   
   
}

.new-views {
    background: #fff;
    color: #00785a;
    border-radius: 50%;
    padding: .5vw;
    margin-left: .25vw;
}

@media (min-width: 500px) and (max-width: 1000px) {
    .new-views {
        padding: .2rem;
        margin-left: .1rem;
    }
}

@media (min-width: 1000px) {
    .new-views {
        padding: .5rem;
        margin-left: .25rem;
    }
}

.badge-off,
.badge-on {
    color: #fff;
    border-radius: 15px;
    padding: .7vw;
    font-size: 1.2vw;
    letter-spacing: .075vw;
}

button.badge-off,
button.badge-on {
    cursor: pointer;
    border: none;
    min-width: 32px;
}

.badge-add {
    text-align: center;
    color: #fff;
    border-radius: 13px;
    background: var(--primary-color);
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    padding: 0px;
    font-weight: 700;
    margin: 0px;
}

@media (min-width: 1000px) {
    .badge-off,
    .badge-on {
        padding: .7rem;
        font-size: .8rem;
        letter-spacing: .075rem;
    }
}

.badge-off {
    background: #c0c0c0;
}

.badge-off > .on-text {
    display: none;
}

.badge-off:hover {
    background: var(--primary-color);
}

.badge-off:hover > .on-text {
    display: inline;
}

.badge-off:hover > .off-text {
    display: none;
}

.badge-on {
    background: var(--primary-color);
}

.badge-on > .off-text {
    display: none;
}

.badge-on:hover {
    background: #c0c0c0;
}

.badge-on:hover > .on-text {
    display: none;
}

.badge-on:hover > .off-text {
    display: inline;
}

#stats-nav-Content .min-table,
.links-table .min-table {
    border-collapse: collapse;
    font-size: 1.2vw;
    letter-spacing: .075vw;
    margin-bottom: 4.3vw;
}

.links-table table.min-table th:not(:first-child),
.links-table table.min-table td:not(:first-child) {
    margin: 0;
}

.links-table .min-table td {
    border-color: #dfdfdf;
    padding: 1.1vw 1.5vw;
}

@media (min-width: 1000px) {
    #stats-nav-Content .min-table,
    .links-table .min-table {
        font-size: 1.2rem;
        letter-spacing: .075rem;
        margin-bottom: 4.3rem;
    }
    
    #stats-nav-Content .min-table td,
    .links-table .min-table td {
        padding: 11px 15px;
    }
}

.input-group .flatpickr-wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
}

.input-group .flatpickr-wrapper > .form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group-append > .btn > svg {
    width: 24px;
    height: 24px;
}

.input-group-append > .btn > svg > *,
.input-group-append > .btn > svg > g > * {
    fill: #c0c0c0;
}

.btn-input-action {
    background: #f7f7f7;
    border: 1px solid #e4e4e4;
}

.btn.btn-input-action:not(:disabled):not(.disabled):hover,
.btn.btn-input-action:not(:disabled):not(.disabled):active {
    background: #f7f7f7;
    border: 1px solid #e4e4e4;
}

.modal-content .modal-footer-alt {
    margin: 2.6rem 0 1.9rem 0;
}

.modal-content .modal-footer-alt .btn-outline-primary:disabled,
.modal-content .modal-footer-alt .btn:not(:disabled):not(.disabled) {
    padding: 0.2rem 0.5rem;
    min-width: 82px;
    font-size: 1.3rem;
    letter-spacing: 0.15rem;
    border-radius: 3rem;
    font-weight: var(--font-weight-regular);
    text-transform: none;
}

.modal-content .modal-footer-alt .btn.btn-outline-primary:not(:disabled):not(.disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.modal-content .modal-footer-alt .btn.btn-outline-primary:not(:disabled):not(.disabled):hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

.modal-content .modal-footer-alt .btn-outline-secondary:not(:disabled):not(.disabled) {
    border-color: #c9c9c9;
    color: #6e6e6e;
}

.modal-content .modal-footer-alt .btn.btn-outline-secondary:not(:disabled):not(.disabled):hover {
    border-color: #c9c9c9;
    background: #c9c9c9;
    color: #fff;
}

.modal-content .modal-footer-alt  > :not(:first-child) {
    margin-left: .75rem;
}

.modal-content .modal-footer-alt  > :not(:last-child) {
    margin-right: .75rem;
}

#issues-list > .body > div > .list-issue-expandable-row {
    margin-top: .9rem;
}



.modal-alt {
    max-width: 490px;
}

.modal-alt .modal-content {
    border: 0;
    border-radius: 20px;
}

.modal-alt h6 {
    font-weight: var(--font-weight-bold);
    letter-spacing: .075rem;
    font-size: 1.5rem;
    margin: 5.6rem 0 0 .3rem;
}

.modal-alt h5 {
    /*margin-left: 3.6rem;*/
    width: 100%;
    text-align: center;
    font-size: 2rem;
    margin-top: 1.1rem;
    letter-spacing: .05rem;
}

.modal-alt .modal-body {
    padding: 2.5rem 5rem 1rem 4.6rem;
}



.modal-alt .modal-body .form-group {
    margin-bottom: 0;
}

.modal-alt .modal-body .form-group.row {
    margin-bottom: 2.7rem;
}

.modal-alt .modal-body .form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
 }

.modal-alt .modal-body .form-control {
    font-size: 1.3rem;
    padding: .4rem .6rem;
}

.modal-alt .modal-body .form-control::placeholder {
    font-size: 1.3rem;
}

.modal-alt .modal-body .col-form-label {
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    letter-spacing: .075rem;
}

.modal-alt .text-danger {
    font-size: 1.4rem;
}






span > span.sub {
    font-size: 1.2rem;
    letter-spacing: .025rem;
}

.input-group-dtpicker-errors, 
.input-group-dtpicker {
    width: 130px;
}

span + .input-group-dtpicker {
    margin-left: auto;
}

.mt-switch-option {
            margin-top: 1.3rem;
        }

@media (max-width: 901px) {
    @media (orientation: landscape) {
       .modal-alt .modal-body {
            padding: 1.5rem 2.5rem 1rem 2.5rem;
        }
        
        .modal-alt .modal-body .form-group.row {
            margin-bottom: 1.7rem;
        }
        
        .modal-alt h6 {
            font-weight: var(--font-weight-bold);
            letter-spacing: .075rem;
            font-size: 1.5rem;
            margin: 2.6rem 0 0 .3rem;
        }

        
        .switch-knob + span {
            margin-left: 1.6rem;
            letter-spacing: .075rem;
            font-size: 1.4rem;
        }


        .modal-alt h5 {
            margin-left: 0rem;
            width: 100%;
            font-size: 2rem;
            margin-top: 0.6rem;
            letter-spacing: .05rem;
            text-align: center;
        }

        
        .modal-content .modal-footer-alt {
            margin: 1.4rem 0 1.4rem 0;
        }
        
        .mt-switch-option {
            margin-top: 1.3rem;
        }


    }
    
    @media (orientation: portrait) {
       .modal-alt .modal-body {
            padding: 0.5rem 2rem 1rem 2rem;
        }
        
         .switch-knob + span {
            margin-left: 0.6rem;
            letter-spacing: .025rem;
            font-size: 1.3rem;
        }
    }
}


.modal-alt .form-control {
    border-radius: 7px;
}

.modal-alt .input-group-append .btn {
    padding: .2rem .5rem;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}

#issues-list .body .link-expired {
    margin: 0 0 0 1vw;
}

#issues-list .body .link-expired > svg {
    margin: 0;
    width: 3vw;
    height: 3vw;
}

@media (min-width: 500px) and (max-width: 1000px) {
    #issues-list .body .link-expired {
        margin: 0 0 0 7px;
    }
    
    #issues-list .body .link-expired > svg {
        width: 21px;
        height: 21px;
    }
}

@media (min-width: 1000px) {
    #issues-list .body .link-expired {
        margin: 0 0 0 10px;
    }
    
    #issues-list .body .link-expired > svg {
        margin: 0;
        width: 30px;
        height: 30px;
    }
}

#issues-list .body .link-expired > svg > * {
    fill: #7e7e7e;
}

.links-table.empty {
    display: none;
}

.links-table + .links-table-empty-placeholder {
    display: none;
}

.links-table.empty + .links-table-empty-placeholder {
    display: flex;
    margin-top: 2.2rem;
}

.links-table-empty-placeholder .client-link-first {
    font-size: 1.56vw;
    padding: 0.79vw 1.04vw;
    letter-spacing: 0.1vw;
    min-width: auto;
}

@media (min-width: 500px) and (max-width: 1000px) {
    .links-table-empty-placeholder .client-link-first {
        font-size: 1.2rem;
        padding: .8rem 1.2rem;
        letter-spacing: 0.12rem;
    }
}

@media (min-width:1000px) {
    .links-table-empty-placeholder .client-link-first {
        font-size: 1.3rem;
        padding: .5rem 1.4rem;
        letter-spacing: 0.075rem;
    }
}

.links-table-empty-placeholder .text-wrapper {
    font-size: 1.5vw;
    /*margin-left: calc(5% + 1px + 8vw + 15px);*/
    margin: auto;
    width: 88%;
    border: 0px solid #ddd;
    background: transparent;
    padding: 1.75% 5.5%;
    color: #4d4d4d;
}

@media (min-width: 500px) and (max-width: 1000px) {
    .links-table-empty-placeholder .text-wrapper {
        font-size: 1.4rem;
        /*margin-left: calc(5% + 1px + 120px + 25px);*/
        width: 90%;
        margin: auto;
    }
}

@media (min-width: 1000px) {
    .links-table-empty-placeholder .text-wrapper {
        font-size: 1.6rem;
        letter-spacing: 0.075rem;
        
        /*margin-left: calc(5% + 1px + 120px + 25px);*/
        margin: auto;
        width: 84%;
    }
}


.links-table-empty-placeholder .text-wrapper .main {
    font-weight: var(--font-weight-bold);
    font-size: 2vw;
    letter-spacing: 0.175rem;
    margin-bottom: 1vw;
}

@media (max-width: 1000px) {
    .links-table-empty-placeholder .text-wrapper .main {
        font-size: 1.6rem;
        letter-spacing: 0.05rem;
        margin-bottom: 1.6rem;
    }
    
    .links-table-empty-placeholder .btn-upgrade {
        font-size: 1.2rem;
        padding: 0.8rem 1.2rem;
        letter-spacing: 0.12rem;
        font-weight: var(--font-weight-bold);
        line-height: 1.5rem;
    }
    
}
@media (max-width: 500px) {
    .links-table-empty-placeholder .text-wrapper .main {
        font-size: 2vw;
        letter-spacing: 0.05rem;
        margin-bottom: 1.6rem;
    }
    .links-table-empty-placeholder .btn-upgrade {
        font-size: 0.55rem;
        padding: 0.25rem 0.6rem;
        letter-spacing: 0.05rem;
        line-height: 1.0rem;
        font-weight: var(--font-weight-bold);
        width: auto;
        min-width: auto;
    }
}

@media (min-width: 1000px) {
    .links-table-empty-placeholder .text-wrapper .main {
        font-size: 1.8rem;
        letter-spacing: 0.075rem;
    }
}

#gallery-preview .gallery-item {
    width: 150px;
    height: 150px;
    border:1px solid #ebebeb;
    border-radius: 10px;
    padding: 10px;
}

#gallery-preview .gallery-item img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.prevent-drag {
    cursor: default;
}

.interactivity-preview {
    cursor: pointer;
}

#issues-list .body .interactivity-preview > svg {
    margin: 0;
}

#issues-list .body .interactivity-preview > svg.svg-photo > path,
#issues-list .body .interactivity-preview > svg.svg-sound > path,
#issues-list .body .interactivity-preview > svg.svg-link > path,
#issues-list .list-issue.active a.interactivity-preview:hover svg.svg-link path {
    fill: #87bbf6;
}

#issues-list .body .interactivity-preview > svg.svg-video > path {
    stroke: #87bbf6;
}

.interactivity-preview {
    margin: 0 0 0 1rem;
    border: 1px solid #87bbf6;
    border-radius: 100%;
    padding: 5px;
}

#link-url-modal .modal-footer {
    margin: 0 0 6.1rem 0;
}

#link-url-modal .modal-body {
    padding: 2.0rem 2.0rem 2rem 2rem;
}

#link-url-modal .modal-body p {
    padding: 0 1.4rem;
    font-size: 1.7rem;
    letter-spacing: .035rem;
    
    text-align: center;
}

#link-url-modal.modal-dialog {
    max-width: 518px;
}

#link-url-modal.modal-dialog h5 {
    letter-spacing: 0.07rem;
    margin: -1.3rem 0 .5rem 0;
}

#link-url-modal .form {
    margin-top: 3.3rem;
    margin-bottom: 0.8rem;
}

div.inputlike {
    color: var(--tertiary-color);
    border: 1px solid #e4e4e4;
    font-size: 1.3rem;
    padding: .4rem 1.9rem;
    font-family: 'Lato', sans-serif;
    font-weight: var(--font-weight-regular);
    background: #f7f7f7;
    border-radius: .5rem;
    line-height: 1.5;
    letter-spacing: .03rem;
    width: 75.8%;
}

.btn.btn-full {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: #fff;
    border-radius: 10rem;
    font-size: 1.4rem;
    font-weight: var(--font-weight-regular);
    letter-spacing: 0.125rem;
    padding: 0.2rem 1.1rem;
}

.btn.btn-full:not(:disabled):not(.disabled):hover {
    background: transparent;
    color: var(--primary-color);
}

#video-preview .preview-item,
#audio-preview .preview-item {
    margin: 0 auto 6px auto;
}

#audio-preview .preview-item > img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    padding: 3rem;
}

#gallery-preview #link-preview-page img {
    top: 0;
    left: 0;
}

.statistics-data table.min-table td {
    line-height: 2.35;
}

.statistics-data table.min-table td.link-col > *,
#links table.min-table td.link-col > * {
    display:inline-block;
    vertical-align:middle;
}

@media (max-height: 696px) {
    #interactivity-preview .modal-md {
        width: 85.75vh;
        max-width: none;
        height: 100%;
        margin: 0 auto;
    }

    #interactivity-preview .modal-content {
        height: auto;
    }

    #video-preview video, 
    #audio-preview audio, 
    .upload-preview-item video, 
    .upload-preview-item audio {
        width: auto;
        height: 41vh;
    }

    #video-preview .preview-item,
    #audio-preview .preview-item {
        width: 86.5%;
        height: 49.5vh;
    }

    #interactivity-preview .media-controls {
        width: 86.5%;
        height: 9.5vh;
    }

    #interactivity-preview .modal-content h5 {
        font-size: 2.6vh;
        margin-top: -3.6vh;
    }

    #interactivity-preview .modal-header {
        padding: 1.45vh;
    }

    #interactivity-preview .modal-header button.close {
        width: 3.45vh;
        height: 3.45vh;
    }

    #interactivity-preview .modal-body {
        padding: 0 3.15vh 1.55vh 3.15vh;
    }

    #interactivity-preview .modal-body p.link-info {
        font-size: 2.04vh;
        margin: 3vh 0 3.9vh 0;
    }

    #interactivity-preview .modal-footer {
        margin-bottom: 3.5vh;
        padding: 1vh;
    }

    #interactivity-preview .modal-content .btn:not(:disabled):not(.disabled) {
        font-size: 1.75vh;
        min-width: 18.65vh;
        padding: 1.15vh 2.9vh;
    }

    #interactivity-preview .text-danger {
        font-size: 2.35vh;
    }

    .media-controls button > svg.icon-shape-inverted {
        width: 46px;
    }
    
    #interactivity-preview .media-controls button > svg.svg-sound{
        width: 4.02vh;
    }

    #interactivity-preview #play_button {
        width: 4.3vh !important;
    }

    #interactivity-preview #link-preview-page {
        width: 33.4vh;
        height: 38.7vh;
    }

    #interactivity-preview #link-preview-page img {
        padding: 1.87vh 2.43vh;
    }

    #interactivity-preview #link-preview-page-prev,
    #interactivity-preview #link-preview-page-next {
        font-size: 7vh;
    }

    #interactivity-preview .media-controls input[type="range"] {
        height: 1vh;
    }

    #interactivity-preview input[type="range"]::-moz-range-thumb {
        width: 2.44vh !important;
        height: 2.44vh !important;
    }

    #interactivity-preview input[type="range"]::-webkit-slider-thumb {
        width: 2.44vh !important;
        height: 2.44vh !important;
        transform:translateY(calc(2.44vh / 2));
    }
}


.svg_fill_blue{
    fill:#5CA9FF;
}

.svg_stroke_blue{
    stroke:#5CA9FF;
    stroke-width:12px;
    stroke-miterlimit:10;
}

#issues-list .list-issue.uploading .preview-link {
    pointer-events: none;
}

#trial-counter {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 7vw;
    background: #478fde;
    background: var(--nav-primary-color) !important;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    cursor: pointer;
}

@media (min-width: 500px) {
    #trial-counter {
        height: 45px;
    }
}

#trial-counter > a{
    margin-right: -3vw;
    background: white;
    margin-left: 2vw;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 10rem;
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.075rem;
    padding: 0.7rem 0;
    width: 16.5rem;
}



#trial-counter > a:hover{
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
}


#trial-counter .message {
    display: inline;
    position: relative;
    font-size: 1.41vw;
    line-height: 1;
}

#trial-counter .message {
    display: inline;
    position: relative;
    font-size: 1.41vw;
    line-height: 1;
}

@media (min-width: 600px) {
    #trial-counter .message {
        font-size: 1.7rem;
    }
}

#trial-counter .counter {
    position: absolute;
    top: -8vw;
    left: -14vw;
}

#trial-counter .counter > svg {
    width: 10vw;
    height: 10vw;
}

@media (min-width: 500px) {

    #trial-counter .counter {
        top: -47px;
        left: -110px;
    }

    #trial-counter .counter > svg {
        width: 70px;
        height: 70px;
    }
}

.input-group-daterange {
    max-width: 250px;
}

.daterangepicker {
    text-align: center;
    font-size: 1.4rem;
    color: #545252;
    padding: .7rem 1rem;
    border-top-left-radius: .7rem;
    border-bottom-left-radius: .7rem;
    border-right: 0;
    background: none;
}

#stats-nav .nav-item {
    position: relative;
    font-weight: var(--font-weight-bold);
    letter-spacing: .125rem;
}

#stats-nav .nav-link + .nav-tab-counter {
    display: none;
}

#stats-nav .nav-link.active + .nav-tab-counter {
    display: block;
}

#stats-nav .nav-tab-counter {
    position: absolute;
    top: 4.7rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    width: 100%;
}

@media (max-width: 991px) {

    #stats-nav .nav-tab-counter {
        top: 3.5rem;
        font-size: 2rem;
    }
}

@media (max-width: 650px) {

    #stats-nav .nav-tab-counter {
        top: 6vw;
        font-size: 3vw;
    }
}

.form-control.daterangepicker.input {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    background-color: transparent;
    border-color: #e4e4e4;
    color: #545252;
    border-right: none;
}

.input-group.input-group-with-overlay.input-group-daterange > .input-group-append .input-group-with-svg {
    background-color: transparent;
    border-color: #e4e4e4;
    color: #545252;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group.input-group-with-overlay.input-group-daterange > .input-group-append .input-group-with-svg > svg path,
.input-group.input-group-with-overlay.input-group-daterange > .input-group-append .input-group-with-svg > svg polygon {
    fill: #cbcbcb;
    stroke: #cbcbcb;
}

.nav-item.disabled {
    opacity: 0.5;
    pointer-events: none;
}

body.prices{
/*    background: #5a89f8 !important;*/
}



h1.plan-heading {
    color: #2f2f2f;
    margin: 4.9rem 0 2.8rem 0;;
    font-weight: bold;
    font-size: 3.0rem;
    letter-spacing: .225rem;
}

h2.plan-heading {
    color: #2f2f2f;
    font-size: 1.7rem;
    letter-spacing: 0.05rem;
    line-height: 3.0rem;
}

h2.plan-heading a {
    color: #2f2f2f;
    text-decoration: underline;
    
}

h3.plan-heading {
    color: #2f2f2f;
    text-transform: none;
    
    font-size: 1.7rem;
    margin: 1.7rem 0 0.3rem 0;
    /*font-style: italic;*/
    font-weight: var(--font-weight-regular);
    letter-spacing: 0.05rem;
}

.statistics-header {
    color: #5c7da0;
    font-size: 2.4rem;
    letter-spacing: .075rem;
    font-weight: var(--font-weight-bold);
}

@media (max-width: 991px) {

    .statistics-header {
        font-size: 2rem;
        letter-spacing: .06rem;
    }
}

@media (max-width: 650px) {

    .statistics-header {
        font-size: 3.1vw;
        letter-spacing: .1vw;
    }
}

.btn-outline-action-small {
    padding: 0 3.3rem 0 1.1rem;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.1rem;
    display: inline-flex;
    flex-direction: row;
    width: auto;
    min-width: 0;
    align-items: center;
    text-transform: none;
}

.btn-outline-action-small > svg {
    width: 13px;
    height: 13px;
    transform: rotate(90deg);
    margin-right: 1rem;
}

.btn-outline-action-small > svg > * {
    fill: var(--primary-color);
}

.btn-outline-action-small:hover > svg > * {
    fill: #fff;
}

.hotspots.min-table svg {
    width: 1.49vw;
    height: 1.49vw;
    margin: 0;
}

@media (min-width: 1000px) {
    .hotspots.min-table svg {
        width: 16px;
        height: 16px;
    }
}

.hotspots.min-table .interactivity-preview > svg.svg-photo > path,
.hotspots.min-table .interactivity-preview > svg.svg-sound > path,
.hotspots.min-table .interactivity-preview > svg.svg-link > path,
.hotspots.min-table .interactivity-preview:hover > svg.svg-link path {
    fill: var(--primary-color);
}

.hotspots.min-table .interactivity-preview > svg.svg-video > path {
    stroke: var(--primary-color);
}

.datepicker-confirmation {
    cursor: pointer;
    background: var(--primary-color);
    color: #fff;
    border-radius: 3rem;
    font-weight: var(--font-weight-black);
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.1rem;
    padding: 0 1.5rem;
    margin: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.datepicker-confirmation:hover {
    background: #fff;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.flatpickr-time.with-confirmation.time24hr .numInputWrapper {
    flex: 28 1 0;
}

.flatpickr-time.with-confirmation.time24hr .flatpickr-time-separator {
    flex: 1 1 0;
}

.flatpickr-time.with-confirmation.time24hr .flatpickr-time-separator + .numInputWrapper {
    flex: 15 1 0;
}

.flatpickr-time.with-confirmation.time24hr .datepicker-confirmation {
    flex: 5 1 0;
}

.flatpickr-calendar.hasTime.noCalendar {
    max-width: 139px;
}

#statistics-clicks-chart {
    font-weight: var(--font-weight-bold);
    font-size: 1.3vw;
    letter-spacing: .1vw;
    color: #7b7b7b;
}

@media (min-width: 500px) and (max-width: 1000px) {
    #statistics-clicks-chart {
        font-size: 1.0rem;
        letter-spacing: 0rem;
    }
}

@media (min-width: 1000px) {
    #statistics-clicks-chart {
        font-size: 1.3rem;
        letter-spacing: .1rem;
    }
}
