@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 !important;
    --font-family-monospace: 'Lato', sans-serif !important;
    --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;

    --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 = 107px */
    height: calc(100% - 65px);
}

body.interactivities > .container-fluid {
    height: auto;
}

body > .container-fluid.has-header {
    /* main navigation height = 107px */
    /* page-header height = 96px */
    height: calc(100% - 203px);
}

@media (max-width: 767px) {
    body > .container-fluid.has-header.disallow-mobile {
        /* main navigation height = 110px */
        height: calc(100% - 110px);
    }
}

.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.7rem;    
    background: url(../img/tlologin2.jpg) no-repeat;
}

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 {
    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  !important;
    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;
}

.public-page {
    
    background: 
        
        linear-gradient(
          rgba(0, 0, 0, 0.3), 
          rgba(0, 0, 0, 0.3)
        ),url('../img/tlologin2.jpg') no-repeat;
        background-size: cover;
    /*background: linear-gradient(to bottom, #919ba8, #cfd0d4);*/
    
}

.public-page-login{
background: 
        
        linear-gradient(
          rgba(0, 0, 0, 0.0), 
          rgba(0, 0, 0, 0.0)
        ),url('../img/tlologin2.jpg') no-repeat;
        background-size: cover;
}

.public-page #logo {
    margin: 4.0rem 0;
    height: 10rem;
}

.public-page .panel {
    margin-top: 0.0rem;
    max-width: 500px;
    width: 100%;
    padding: 0 1.5rem;
    /*background: #dcdcdc;*/
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0px 10px 20px 0 rgba(0, 0, 0, 0.5);
    border-radius: 2px;
    /*border: 1px solid #666;*/
    /*background: linear-gradient(to bottom, #919ba8, #cfd0d4) url('https://res.cloudinary.com/jll-emea-crm/image/upload/w_1500,h_1000,c_limit/…jll_property/786cdf36-d919-e911-a82a-000d3ab0d976/n9ivmznzicokkexxq2wr.jpg') center;*/
    /*background: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) ),url(images/tlologin2.jpg) no-repeat;*/
    background-size: cover;
}



.public-page .panel-register-alt {
    margin-top: 0.0rem;
    max-width: 500px;
    width: 100%;
    padding: 0 1.5rem;
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0px 10px 20px 0 rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid #666;
}

.public-page .panel-register {
    margin-top: 0.0rem;
    max-width: 800px;
    width: 100%;
    padding: 0 1.5rem;
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0px 10px 20px 0 rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid #666;
        
}


.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: 2px !important;
    background: rgba(255,255,255,0.95) !important;
    
}

body.public-page .form-control {
    font-family: 'Lato', sans-serif  !important;
    padding: 0.8rem;
    font-size: 1.4rem;
    line-height: 2rem;
    min-height: 3.2rem;
    font-weight: var(--font-weight-normal);
    border-radius: 2px;
    border: 0px;
}

.text-danger{
        font-weight: 300;
    font-size: 1.5rem;
}


body.public-page .links-row {
    color: var(--tertiary-color);
    font-size: 1.3rem;
    letter-spacing: 0.05rem;
}


.public-page .links-row a:hover{
    font-weight: 500;
}

.public-page .links-row a {
    color: #ffffff;
}
.public-page .links-row a#registerLink {
    color: #ffffff;
}

body.public-page h1 {
    font-weight: var(--font-weight-light);
    color: var(--tertiary-color-login);
    font-size: 3.0rem;
}

body.public-page h2 {
    font-size: 1.5rem;
}

body.public-page label:not(.custom-control-label) {
    font-size: 1.4rem;
    letter-spacing: 0.075rem;
    margin: 2rem 0.2rem 1rem 0.2rem;
    color: #fefefe;
    /*text-transform: uppercase*/
}

body.public-page label:not(.custom-control-label)[for=password-confirmation]{
    margin-top: 0px;
}



body.public-page h3 {
    font-size: 2rem;
}

body.public-page .btn,
body.public-page input {
    border-radius: 0;
}

body.public-page input:focus {
    border-color: #bdbdbd;
}

body.public-page input::placeholder {
    color: #bdbdbd;
    text-align: left;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
}

body.public-page input::-ms-input-placeholder {
    color: #bdbdbd;
    text-align: left;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
}

/* main navigation */
#main-navigation.navbar-light {
    padding: 0vw !important;
}

#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: 34vw;
    }
}

#main-navigation.navbar-light .nav-items hr {
    height: 1px;
    border: 0;
    border-top: 1px dotted #fff;
    width: 3.25vw;
    margin: auto 0.65vw;
    background: transparent;
}


.nav-items{
    margin: 0px auto;
}

.nav-items .link {
    width: 190px;
    height: 40px;
    line-height: 40px;
    margin: 0px 0px;
    background-color: rgba(255,255,255,0.0);
    border: 0px solid #fff;
    border-radius: 0%;
    color: #fff;
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: .1rem;
    white-space: nowrap;
    outline:0;
    text-decoration: none;
    position:relative;
    flex-shrink:0;
    font-weight: var(--font-weight-regular);
}


.nav-items .link:hover{
    background-color: rgba(255,255,255,0.3);
}
.nav-items .link.active{
    background-color: rgba(255,255,255,0.3);
}

#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{
    background: var(--nav-secondary-color);
    color: var(--nav-primary-color);
}

#main-navigation.navbar-light .nav-items .link:hover {
   
    background: rgba(255,255,255,0.85);
    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%);

}

.nav-link {
    border: 0px solid #fff;
    color: #fff;
    margin: 0 3px;
    text-align: center;
    font-size: 1.235rem;
    line-height: 40px;
    letter-spacing: 0.05rem;
    white-space: nowrap;
    width: 100px;
}

#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: 50px;
}

@media (max-width: 991px) {
    #main-navigation .navbar-brand > img {
        height: 15px;
        margin-left: 8px;
    }
}

#main-navigation.navbar-light .navbar-toggler {
    border: none;
    font-size: 1.75rem;
    margin-right: 8px;
    margin-left: 1.45rem;
}

#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;
}

@media (max-width: 991px) {
    #main-navigation .nav-icon-wrapper {
        margin: 16px;
    }
}

#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;
}

#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);
}

#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: 40px;
        height: 40px;
    }
}

#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 {
        min-height: calc(100vh - 111px);
    }
}

#main-navigation .navbar-collapse > div {
    margin: 0 5px;
}

#main-navigation.navbar-light .navbar-nav .nav-link.large {
    font-size: 0.83vw;
}

@media (max-width: 991px) {
    #main-navigation.navbar-light .navbar-nav .nav-link.large {
        font-size: 18px;
        margin-top: 40px;
        margin-bottom: 60px;
    }
}

#main-navigation  h4 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: var(--font-weight-bold);
}

#main-navigation.navbar {
    background: linear-gradient(to right,#3d93dc,#75c0ff) !important;
    height: 60px;
}

#main-navigation.navbar.navbar-disabled a:not(.nav-link) {
    pointer-events: none;
}

#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;
}
#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;
}


#main-navigation .spacer {
    width: 25px;
}

/* 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%;
}

.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;
}

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;
}

.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: #666;
    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: 1.3vh 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: #c9c9c9;
    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: #c9c9c9;
}

.btn.btn-outline-secondary.interactivity-option:hover > svg .symbol {
    fill: #fff;
}

.btn.btn-outline-secondary.interactivity-option > svg.svg-video-1 .symbol {
    stroke: #c9c9c9;
    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: 6rem;
}

.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: -1.3rem;
    right: -1.3rem;
    width: 2.4rem;
    height: 2.4rem;
    background: #ff0000;
    color: #ffffff;
    font-size: 1.8rem;
    line-height:100%;
    border-radius: 2.4rem;
    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 video,
.upload-preview-item audio {
    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%;
}

@media (min-width: 768px) {
    .btn-designer-wrapper {
        width: 50%;
    }
}

.btn-designer-wrapper.hidden {
    display: none !important;
}

.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 {
    margin-top: 60px;
    position: relative;
}

.designer-active {
    outline: 2px solid var(--designer-outline-color) !important;
    z-index: 90;
}

.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 {
    outline-offset: -2px;
}

#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: 107px;
    left: 0;
    right: auto;
    bottom: auto;
    width: 325px;
    height: 100%;
    padding: 0;
    z-index: 1005;
    background: #353535;
    transition: left 0.3s ease-out, right 0.3s ease-out;
}

@media(orientation: portrait) {
    #mycolorpicker {
        display: none;
    }
}

#mycolorpicker.right {
    left: auto;
    right: 0;
}

#mycolorpicker.left {
    left: 0;
    right: auto;
}

#mycolorpicker.hidden {
    left: -325px;
    right: auto;
}

#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: 125px;
    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;
}

.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: 90px;
    left: 0;
    width: 100%;
    
    /*left: 62pxsx;*/
    /*width: 222px;*/
}

#mycolorpicker .colorpickle .swatchHex {
  
    left: 62px;
    width: 222px;
}

.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: 2px 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: 1px 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: 135px;
    width: 222px !important;
    height: 405px !important;
    border: 1px solid #e5e5e5 !important;
    border-right: none !important;
}

.left .colorpickle .colorPickerWrapper {
    left: 62px;
    border: 1px 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: 270px;
}

#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: 1px 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-preview.for-pc {
    margin: 0 7.5vw;
}

@media (max-width: 767px) {
    #designer-preview.for-pc {
        margin: 0 12.5vw;
    }
}

#designer-pc {
    font-family: 'Lato', sans-serif !important;
    position: relative;
    max-width: 42vw;
    width: 100vw;
    max-height: 23.45vw;
    height: 100vh;
    margin: 4.75% 0 9% 0;
}

@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.105vw;
    height: 1.105vw;
}

@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: 166px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

#designer-pc .cover-line > div:not(#featured-name) {
    font-size: 0.5vw;
    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:1.95vw;
    position: absolute;
    bottom: var(--featured-share-bottom);
    right: 0;
    width: 1.15vw;
    max-width: 1.15vw;
    height: 1.15vw;
    max-height: 1.15vw;
}

@media (max-width: 767px) {
    #designer-pc #featured .icon#featured-share {
        --featured-share-bottom:3vw;
    }
}

#designer-pc #featured .icon#featured-info {
    --featured-info-bottom:1.95vw;
    position: absolute;
    bottom: var(--featured-info-bottom);
    left: 0;
    width: 1.15vw;
    max-width: 1.15vw;
    height: 1.15vw;
    max-height: 1.15vw;
}

@media (max-width: 767px) {
    #designer-pc #featured .icon#featured-info {
        --featured-info-bottom:3vw;
    }
}

#designer-pc #featured-name, .featured-spacer  {
    font-size: 0.75vw;
    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: 6.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.05vw;
    max-width: 1.05vw;
    height: 1.05vw;
    max-height: 1.05vw;
}


@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: 1.6vw;
    max-width: 1.6vw;
    height: 1.6vw;
    max-height: 1.6vw;
}

@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.6vw;
    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.6vw;
    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.10vw 0.73vw;
    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%;
    max-width: 166px;
    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: 0.55vw;
}

#designer-pc .filler {
    padding-bottom: 3vw;
}

/* MOBILE DESIGNER ICONS */

.designer-navigation-icon-menu {
    height: 1.25vw;
    width: auto;
}

.designer-navigation-icon-bookmarks {
    height: 0.83vw;
}

/* TABLET DESIGNER */

#designer-preview.for-tablet .top-bar {
    width: 115%;
}

#designer-preview.for-tablet,
#designer-preview.for-tablet.designer-tablet-h {
    margin: 0 10.65%;
}

#designer-preview.for-tablet {
    /*width: 37vw;*/
}

/* 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.3vw;
}

#designer-tablet-h .current-issue-title > span
{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    margin-bottom: 0.0vw;
}

#designer-tablet-h .current-issue-description
{
    font-family: 'Lato';
    font-weight: 300;
    font-size: 0.590vw;
    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.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 {
    height: 2.2vw;
    margin-top: 0.4vw;
    margin-bottom: 0.4vw;
}

.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;
}

.issue-cover {
    width: 100%;
    max-width: 180px;
    padding: 5px;
    border: 1px solid #ebebeb;
    cursor: pointer;
    display: inline-block;
    padding: 0;
    position: relative;
    will-change: unset !important;
    border-radius: 1rem;
    background: #f3f3f3;
    margin: 0 12px 30px 12px;
}

@media (min-width: 768px) { 
    .issue-cover {
        margin: 30px 12px 0 0;
    }
}

@media (min-width: 1200px) { 
    .issue-cover {
        margin-right: 4.5%;
    }
}

.issue-cover.active {
    border-color: var(--primary-color);
}

.issue-cover > img {
    box-shadow: 0px 0px .4rem .1rem rgba(0, 0, 0, 0.2);
    /*filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.3));*/
    width: auto;
    max-width: 88%;
    height:auto;
    max-height: 79%;
    display: block;
    position: absolute;
    left: 50%;
    top: 44%;
    transform: translate(-50%, -50%);
}

.issue-cover > img[src$="loader.svg"] {
    box-shadow: none;
    filter: none;
}

.issue-cover > img[src=""] {
    box-shadow: none;
    filter: none;
}

.issue-cover > div:not(.progress-wrapper):not(.upgradeable) {
    max-width: 184px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding:138% 0.5rem 5% 0.5rem;
    font-size: 1.2rem;
    color: var(--tertiary-color);
    letter-spacing: 0.05rem;
}

.issue-cover > [data-name]:after {
    content: '\200b';
}

.issue-cover.placeholder {
    cursor: auto;
}

@media (min-width: 768px) {
    .issue-cover:nth-of-type(1),
    .issue-cover:nth-of-type(1)[style*='display: none'] + .issue-cover + .issue-cover + .issue-cover,
    .issue-cover:nth-of-type(2),
    .issue-cover:nth-of-type(3) {
        margin-top: 0;
    }
}

.issue-cover.placeholder .symbol {
    display: none;
}

.issue-cover.placeholder.next {
    cursor: pointer;
}

.issue-cover.placeholder.next.disabled {
    cursor: default !important;
    pointer-events: none !important;
}

@media (max-width: 767px) {
    .issue-cover.placeholder {
        display: none !important;
    }
}

.issue-cover.placeholder.next .symbol {
    display: block;
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #d2d2d2;
    font-size: 5vw;
    line-height:1;
    font-weight: var(--font-weight-regular);
    z-index: 1;
}

.issue-cover.placeholder.next .symbol.upgradeable > span {
    height: 3vw;
    display: block;
    line-height: 0.5;
    overflow: hidden;
}

.issue-cover.placeholder.next.disabled > .symbol {
    opacity: 0;
}

.issue-cover.placeholder .btn-primary {
    
    position:absolute;
    top: 68%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.issue-cover.placeholder.next.disabled > .btn-primary {
    opacity: 0;
}

.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;
}

.issue-cover.placeholder .btn-primary.has-tooltip.selected-tooltip {
    color: var(--primary-color);
    background: #fff;
    border-color: #fff;
}

.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;
}

/* xl breakpoint */
@media (min-width: 1200px) {  
    .issue-cover {
        width: 28%;
        max-width: none;;
    }
}

#issues-row, #issues-empty {
    overflow: hidden;
    padding-top: 20px;
}

#issues-empty p {
    padding: 2rem 0 5rem 0;
}

#issues-row > div:first-child {
    background:#f1f1f1;
    border-radius:1rem;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

@media (min-width: 1200px) {
    #issues-row > .offset-xl-1:first-child {
        margin-left: 3%;
    }

    #issues-row > .col-xl-5:first-child {
        -ms-flex: 0 0 47%;
        flex: 0 0 47%;
        max-width: 47%;
    }
}

 #add-issue-wrapper {
    margin-top: 4%;
    margin-bottom: 4%;
}

@media (min-width: 1200px) {
     #add-issue-wrapper {
        margin-top: 0;
        margin-bottom: 8.75%;
    }
}

#issues-list > .scrollable-column {
    height: 86%
}

@media (max-width: 767px) {
    #issues-list .simplebar-mask, 
    #issues-list .simplebar-wrapper, 
    #issues-list .simplebar-content {
        overflow: visible !important;
    }

    #issues-list .simplebar-track.simplebar-vertical {
        display: none;
    }
}

#selected-issue-cover-wrapper {
    width: 100%;
    position:relative;
}

#selected-issue-cover-wrapper > .icons {
    padding-top:150%;
}

#selected-issue-cover-wrapper .btn-outline-secondary {
    padding:1.3rem 1.75rem;
    font-size: 1.4rem;
}

#selected-issue-cover-wrapper #selected-issue-delete svg path {
    fill: #919191;
}

#selected-issue-cover-wrapper #selected-issue-delete.highlighted {
    z-index: 1010;
    pointer-events: none;
}

#selected-issue-cover-wrapper #selected-issue-delete.highlighted > svg path {
    fill: var(--primary-color);
}

#selected-issue-cover-wrapper #selected-issue-override-url svg > * {
    stroke: #919191;
    fill: none;
}

#selected-issue-cover-wrapper #selected-issue-override-url.highlighted {
    z-index: 1010;
    pointer-events: none;
}

#selected-issue-cover-wrapper #selected-issue-override-url.highlighted > svg > * {
    stroke: var(--primary-color);
}

#selected-issue-cover-wrapper .svg-link > svg {
    width: 32px;
    max-width: 32px;
}

#selected-issue-cover-wrapper #selected-issue-download-url svg > * {
    stroke: none;
    fill: #919191;
}

#selected-issue-cover-wrapper #selected-issue-download-url.highlighted {
    z-index: 1010;
    pointer-events: none;
}

#selected-issue-cover-wrapper #selected-issue-download-url.highlighted > svg > * {
    fill: var(--primary-color);
}

#selected-issue-cover-img-wrapper {
    display: flex;
    top:4%;
    left:0;
    width:100%;
    height:85%;
    position: absolute;
    justify-content: center;
    align-items: center;
}

#selected-issue-cover-img-wrapper::before {
    content: '';
    position: absolute;
    top: -2%;
    left: -2%;
    right: -2%;
    bottom: -2%;
    background: #e3e5e5;
    border-radius: 1rem;
}

#selected-issue-cover {
    position: relative;
    height: 100%;
    width:100%;
}

#selected-issue-cover .overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top:-2%;
    right:-2%;
    bottom:-2%;
    left:-2%;
    border-radius: 1rem;
    transition: opacity .25s ease-in-out;
    opacity:0;
}

#selected-issue-cover .overlay:hover {
    opacity:1;
}

#selected-issue-cover-img {
    height: 100%;
    width:100%;
    object-fit: contain;
}

.progress-wrapper {
    position: absolute;
    display: block;
    top: 40%;
    left: 8%;
    width: 84%;
    z-index: 99;
}

.scrollable-column .progress-wrapper {
    top: 36%;
    left: 10%;
    width: 80%;
}

/* 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;
}

.progress-wrapper > .progress-cancel.disabled {
    pointer-events: none;
    opacity: 0.5;
}

div#selected-issue-cover .progress-cancel {
    max-width: 2.00vw;
} 


#create-issue .progress-wrapper > .progress-cancel {
    top: -30%;
    max-width: 60px;
    width: 60px;
}

.progress-wrapper > .progress-cancel > svg.svg-icon-cancel {
    width: 100%;
    height: 100%;
}


#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: 30%;
    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);
}


div#selected-issue-cover .progress-proc-name {
    font-size: 2.4rem;
    height: 6rem;
    line-height: 6rem;
}


.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);
}

.issue-form-wrapper {
    max-width: 30rem;
    margin-top: 6rem;
    display: block;
    position: absolute;
    top: 2%;
    bottom: 10%;
    min-width: 80%;
    margin: 0 5% !important;
}

#issues-featured-middle-section ~ #issues-featured-buttons {
    margin-top: 15%;
}

#issues-featured-buttons {
    height: 32.15%;
}

#issues-featured-top-section {
    height: 18%;
    margin-top: 5.8%;
    padding: 0 2rem;
}

@media (min-width: 768px) {
    #issues-featured-top-section {
        padding: 0 3.2rem;
    }
}

#issues-featured-top-section .input-group.input-group-with-overlay > .form-control:not(:last-child) {
    border:0;
    border-radius:3rem;
    margin-right: -4.9rem;
    padding-right: 7.2rem;
    padding-left: 1rem;
}

@media (min-width: 768px) {
    #issues-featured-top-section .input-group.input-group-with-overlay > .form-control:not(:last-child) {
        padding-left: 2.5rem;
    }
}

#issues-featured-top-section .input-group.input-group-with-overlay > .input-group-append .btn, 
#issues-featured-top-section .input-group.input-group-with-overlay > .input-group-prepend .btn {
    border-radius: 3rem;
    border-color: var(--primary-color);
}

@media (max-width: 767px) {
    #issues-featured-top-section ~ #issues-featured-middle-section {
        margin-top: 15%;
    }
}

#issues-featured-top-section #selected-issue-name {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    pointer-events: none;
}

#issues-featured-middle-section {
    position: relative;
    padding: 0 2rem;
    height: 43%;
}

@media (min-width: 768px) {
    #issues-featured-middle-section {
        padding: 0 3.2rem;
    }
}

#issues-featured-middle-section .switch-candy {
    width:100%;
    margin-bottom: 10%;
}

@media (min-width: 768px) {
    #issues-featured-middle-section .switch-candy {
        margin-bottom: 20%;
    }
}

#issue-featured-middle-section .switch-light.switch-candy span {
    padding: 0;
}

#issue-featured-middle-section .switch-light.switch-candy span span {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .issue-form-wrapper {
        position: relative;
        margin: 0 10% !important;
    }
    
    .offset-xl-1 {
        margin-left: 0;
    }  
}

@media (min-width: 768px) {
    #issues-row > .col-xl-5:first-child {
        min-width: 750px;
    }
}

@media (min-width: 1200px) and (max-width: 1300px) {

    .offset-xl-1 {
        margin-left: 1%;
    }  

    .issue-cover > div{
        font-size: 1.0rem;
    }
}

@media (min-width: 1300px) and (max-width: 1400px) {
    .offset-xl-1 {
        margin-left: 2%;
    }  

    .issue-cover > div {
        font-size: 1.1rem;
    }

}

@media (min-width: 1400px) and (max-width: 1500px) {
    .offset-xl-1 {
        margin-left: 7%;
    }  
}

@media (min-width: 1500px) and (max-width: 1600px) {
    .offset-xl-1 {
        margin-left: 8%;
    }  
}


@media (min-width: 1600px){
    #issues-row > .col-xl-5:first-child {
        min-width: 810px;
    }

    .offset-xl-1 {
        margin-left: 6.6%;;
    }

    .col-xl-4 {
        flex: 0 0 35.066666%;
        max-width: 35.066666%;
    }
}


.selected-issue-price {
    min-width:99px;
}

/* 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: 1.2vh;
    font-weight: var(--font-weight-bold);
    margin: 0.1vh 0 1.8vh 0;
}

.highlightable {
    font-weight: var(--font-weight-black);
    text-transform: uppercase;
    font-size: 1.2vh;
    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-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.5rem;
    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 #9E9E9E;
    border-radius: 0rem;
    background: transparent;
    width: 263px;
    height: 231px;
}

.dropzone .dz-complete.upload-preview-item-dotted,
.modal-body .dropzone .dz-complete.upload-preview-item {
    border: 1px solid #e4e4e4;
}

.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: #666;
    z-index: 1;
    background: #fff;
    padding: .4rem 2.5rem;
    border-radius: 3rem;
    border: 1px solid var(--primary-color);
    white-space: nowrap;
    font-size: 1.1rem;
    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-regular);
    font-size: 1.4rem;
}

.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: 6rem;
}

#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: 4rem;
}

#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: 3.5rem;
    padding-right: 3.5rem;
}

@media (min-width: 768px) {
    #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;
}

#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);
}

#configure-interactivity-audio .modal-body .dropzone .upload-preview-item {
    width: 480px;
    height: 344px;
}

#configure-interactivity-video .modal-body .dropzone .upload-preview-item {
    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;
}

.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: 206px;
    height: 240px;
    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;
}

#configure-interactivity-link .modal-body {
    height: 49rem;
}

.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;
    right: 0;
}

.switch-light.switch-candy.disabled input:checked ~ span a,
.switch-candy.disabled a {
    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(--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%;
}

.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;
}

.pricing-card {
    border-color: #eaeaea;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.09);
    color: #666;
    font-size: 1.3rem;
}


.pricing-card.card {
    display: inline-flex;
    width: 325px;
    margin: 0 3.6rem 0.5rem 3.6rem;
    border-radius: .75rem;
}


.pricing-card .card-header h1 {
    color: #333;
    font-size: 3.3rem;
    letter-spacing: 3px;
    margin-bottom: 2.4rem;
}

.pricing-card .badge-img{
    margin-right: 1.2rem;
}

.pricing-card h1.card-title {
    color: #41a9ff;
    font-size: 2.5rem;
    font-weight: var(--font-weight-normal);
    margin-top: 0.2rem;
}

.pricing-card .card-title > span {
    color: #333;
    font-size: 1.7rem;
    font-weight: var(--font-weight-light);
}

.pricing-card .card-header {
    position: relative;
    padding-top: 3.8rem;
}

.pricing-card .most-popular {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    background: #88cdff;
    height: 7px;
    border-radius: calc(.75rem - 1px) calc(.75rem - 1px) 0 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.pricing-card .most-popular .stripe-wrapper {
    position:absolute;
    top:0;
    left:0;
    width:250px;
    height:180px;
    overflow: hidden;
}

.pricing-card .most-popular .stripe {
    position: absolute;
    top: 21px;
    left: -92px;
    width: 100%;
    padding: 4px 0;
    font-size: 1rem;
    text-transform: uppercase;
    background: #64beff;
    color: #fff;
    transform: rotate(-45deg);
}

.pricing-card .card-body {
    padding: 0;
}

.pricing-card .separator {
    height:1px;
    background: linear-gradient(to right, #4048b7, #41a9ff);
    width: 70%;
    padding:0;
    border:0;
}

.pricing-card .section-separator {
    height:5px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #eaeaea;
    border-radius: 0.25rem;
    width: 100%;
    padding:0;
    position: relative;
}

.pricing-card .section-separator.last {
    margin: 2.2rem 0;
}
.pricing-card .section-separator.first {
    margin: 2.2rem 0;
}


.pricing-card[plan="Web Kiosk"]  .section-separator.last {
    margin: 2.2rem 0;
    margin-top: 4.5rem;
}
.pricing-card[plan="Plus"]  .section-separator.first {
     margin: 2.2rem 0;
    margin-top: 8.5rem;
}
.pricing-card[plan="Plus"]  .section-separator.last {
    margin: 2.2rem 0;
    margin-top: 21.0rem;
}


.pricing-card .section-separator.with-pointer {
    margin-bottom: calc(5px + 9px);
}
.pricing-card .section-separator.with-pointer::before,
.pricing-card .section-separator.with-pointer::after {
    top:100%;
    left:50%;
    border: 1px solid transparent;
    content: ' ';
    position: absolute;
    width:0;
    height:0;
}

.pricing-card .section-separator.with-pointer::before {
    border-color: transparent;
    border-top-color: #eaeaea;
    border-width: 10px;
    margin-left: -10px;
}

.pricing-card .section-separator.with-pointer::after {
    border-color: transparent;
    border-top-color: #fff;
    border-width: 9px;
    margin-left: -9px;
}

pricing-card .btn:not(:disabled):not(.disabled).btn-outline-primary {
    border-radius: 22px;
    padding: 1rem 0 1.1rem 0;
    min-width: 153px;
    font-weight: var(--font-weight-bold);
    font-size: 1.3rem;
    color: #41a9ff;
    border-color: #cee2ff;
    letter-spacing: .1rem;
}


.pricing-card .btn:not(:disabled):not(.disabled).btn-outline-primary:hover {
    color: #fff;
    background-color: #41a9ff;
    border-color: #41a9ff;
}

.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: 750px;
    height: 99%;
    /*max-height: 790px;*/
    min-height: 490px;
    margin-top: 0px;
    border: 0px solid #aaa;
    background-color: rgba(255,255,255,0.6);
    box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1);
}

#create-issue .rowform{
        width: 470px;
    height: 10%;
    min-height: 50px;
    margin: 1% auto;
    color: #555;
}

#create-issue .upload-preview-item > svg {
    width: 150px;
    height: 150px;
}

#create-issue svg > * {
    fill: var(--primary-color);
    position: static;
}

#create-issue .progress-cancel svg > * {
    transform: none;
}

#create-issue-wrapper .upload-preview-item {
   
    height: 100%;

min-height: 150px;
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.dz-started .upload-preview-item-dotted > svg {
    display: none;
}

#create-issue-wrapper .dropzone .upload-preview-item-dotted .or-drop-here {
    top: 65%;
}

#create-issue-wrapper .dropzone .upload-preview-item-dotted .upload-file {
    padding: 0.5rem 2.6rem;
    top: 45%;
    font-size: 1.6rem;
    border-radius: 10px;
    
    font-weight: 700;
}

#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;
}

.link-switcher {
    margin: 1.5rem 0 4.5rem 0;
}

.modal-content .link-switcher .btn:not(:disabled):not(.disabled).btn-outline-primary {
    margin: 0 5rem;
    min-width: auto;
    max-width: 183px;
    width: 100%;
    padding: 1.3rem 0;
}

.modal-body p.link-info {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    letter-spacing: 0.085rem;
}

.modal-body #link-url p.link-info {
    font-size: 1.7rem;
}

.modal-body #link-url {
    margin-top:15.5rem;
}

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-reports-row {
    margin-top: 5.2rem;
}

#notifications-form-row.row > .col {
    max-width: 620px;
}

#notifications-reports-row.row > .col {
    max-width: 990px;
}

#notifications-reports-row .table-custom > .body .bordered:not(.highlighted) {
    border: 1px solid #d2d2d2;
}
#notifications-reports-row .table-custom > .body .bordered:not(.highlighted) {
    background: #fff;
}

#notifications-reports-row .table-custom > .header > div {
    color: var(--tertiary-color);
}

#notifications-reports-row .table-custom > .body .bordered {
    color: var(--tertiary-color);
    font-size: 1rem;
}

@media (min-width: 768px) {
    #notifications-reports-row .table-custom > .body .bordered {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    #notifications-reports-row .table-custom > .body .bordered.highlighted {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

#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 {
    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;
}

.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;
}

.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;
}

.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"] {
    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;
}

.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%;
}

.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;
}

.charts .tab-pane {
    height: 25.9vw;
    position: relative;
}

.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;
}

.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: 768px) {
    .settings-row {
        margin-top: 8.1rem;
    }
}

@media (min-width: 768px) {
    .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: 10rem;
}

@media (min-width: 768px) {
    .navigation-sidebar .btn {
        font-size: 1.4rem;
        width: 16.5rem;
        margin: 0 0 2.2rem 0;
    }
}

body.page-settings h2.page-line {
    margin: 0 0 6.1rem 0;
    text-align: center;
}

@media (max-width: 767px) {
    body.page-settings h2.page-line.md-smaller {
        font-size: 1.6rem;
        margin: 6.1rem 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 (min-width: 768px) {
    body.page-settings.payment .logo {
        padding: 0 0 4.4rem 0;
        margin-top: -2rem;
    }
}

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;
}

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: 1;
    column-gap: 112px;
    padding: 39px;
    list-style: none;
    color: #565656;
}

@media (min-width: 768px) {
    body.page-settings.plan .wrapper ul {
        columns: 2;
    }
}

.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;
}

body.page-settings.plan h2.page-line {
    margin: 0 0 3.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;
}

.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;
}

@media (min-width:768px) {
    .mw-50 {
        min-width: 50%;
        margin-left: 60px;
    }
}

#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 {
    position: relative;
    min-width: 160px;
    padding: 0.75rem 1rem;
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
}

#add-issue.btn.highlighted {
    pointer-events: none;
    z-index: 1010;
}

/* 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: 50vw;
}
.web-designer #designer-pc{
    max-width: 50vw;
    max-height: 27.85vw;
}
.web-designer #designer-pc #designer-pc-image {
    position: absolute;
    top: -6.2vw;
    left: -8.25vw;
    width: 132.9%;
    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{
    width: 41vw;
}
.mobile-designer #designer-preview.for-tablet.designer-tablet-v{
    width: 30vw;
}


.mobile-designer #designer-tablet-h{
    max-width: 42.75vw;
    max-height: 32.2vw;
}

.mobile-designer #designer-tablet-h #designer-tablet-h-image {
    position: absolute;
        top: -2.5vw;
    left: -4.75vw;
    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);
}

.mobile-designer .top-bar-height{
    height: 4vh;
}

#designer-phone-v{
    max-width: 16vw;
    max-height: 28.1vw;
        margin: 36% 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;
}
/*.mobile-designer .mobile-portrait #designer-tablet-h{
    max-width: 21vw;
    max-height: 30.8vw;
}*/

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,
.disabled-click #selected-issue-cover-wrapper #selected-issue-delete svg path {
    fill: #d4d4d4;
}

.disabled-click #selected-issue-cover-wrapper #selected-issue-override-url svg > *,
.disabled-click #selected-issue-cover-wrapper #selected-issue-delete-url svg > * {
    stroke: #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: 107px;
    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;
    z-index: 9999;
    pointer-events: auto;
}

.modal-sidebar > .modal-dialog > .modal-content > .modal-body {
    padding: 1rem;
}

.modal-sidebar > .modal-dialog > .modal-content h5 {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: 0;
    margin: 15px 0 0 0;
    font-weight: var(--font-weight-regular);
}

.modal-sidebar > .modal-dialog > .modal-content > .modal-body .dropzone .upload-preview-item {
    width: 242px;
    border-radius: 0;
    /*border-color:*/
    background-color: transparent;
}

.modal-sidebar > .modal-dialog button.close {
    position: absolute;
    top: 14px;
    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: 20px;
    height: 20px;
}

.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: 20px;
    height: 20px;
}

.custom-checkbox.dot .custom-control-label::before,
.custom-checkbox.dot .custom-control-label::after {
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
}
.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: 12px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    border-radius: 50%;
}

#designer-bg-use-color-wrapper,
#designer-bg-use-image-wrapper {
    position: absolute;
    top: 0;
    right: 13px;
}

#designer-bg-use-color-wrapper {
    top: 135px;
}

#designer-bg-use-image-wrapper {
    top: 450px;
}

.hide-color::before {
    opacity: 0;
}

.hide-image {
    background-image: none !important;
}

#invoices-row {
    max-width: 990px;
    margin: 5rem auto 0 auto;
}

#invoices-row .table-custom > .body .bordered {
    line-height: 2;
}

.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;
}


div#archiwum_wrapper{
    width: 100%;
    /* max-width: 1100px; */
    /* max-height: 790px; */
    /* min-height: 490px; */
    /* margin-top: 0px; */
    border: 0px solid #ccc;
    background-color: rgba(255,255,255,0.85);
    /* box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.2); */
    /*margin: 5px auto;*/
    /*padding: 5px;*/
}

.ui-dialog .ui-dialog-titlebar{
    display: none;
}

.dataTables_scroll{
    border-bottom: 1px solid #ccc !important;
}

.dataTables_info{
    text-align: left !important;
}

.input-container{    
    width: 180px;
    text-align: left;
    padding: 5px;
    color: #333;
    position: relative;
    float:left;
    line-height: 30px; 
    font-size: 1.5rem;
}


 .input-container i { 
        position: absolute; 
        right: 15px;
        top: 15px;
        } 
          
        .input-icons { 
            width: 100%; 
            margin-bottom: 10px; 
        } 
          
        .icon { 
              position: absolute;
   
        } 
          
        .input-field { 
            
    box-shadow: inset 0 0 5px #eaeaea;
           padding: 10px; 
            text-align: left; 
            width: 170px;
    line-height: 18px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 1.5rem;
            
    font-weight: 300;
        } 
        
        
        .input-field-form {            
            box-shadow: inset 0 0 5px #eaeaea;
            padding: 10px; 
            text-align: left; 
            width: 100%;
            line-height: 18px;
            border: 1px solid #ddd;
            border-radius: 2px;
            font-size: 1.3rem;
            
        } 
        
        #controlPanel .btn-group{
            padding: 5px !important;
        }
        
        button.btn
        {
            /*width: 50px !important;*/
            
            margin: 0px 3px !important;
            padding-left: 10px !important;
            padding-right: 10px !important;
            line-height: 28px !important;
            font-size: 1.5rem !important;
            border-radius: 2px !important;
            background: linear-gradient(to bottom,#ffffff,#eeeeee) !important;
    color: #333;
    border: 1px solid #aaa;

        }
        button.btn:hover{
            color: #000 !important;
            border: 1px solid var(--primary-color);
             /*background: linear-gradient(to bottom,#ffffff,#eeeeee) !important;*/
        }
        
        
        button.btn-form{
            color: white;
            background-color: var(--primary-color);
            border: 1px solid var(--primary-color);
            border-radius: 10px;
            padding: 5px 20px;
           cursor: pointer; 
   
        }
        
        button.btn-form:hover{
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            background-color: white;
        }
        
        div.form-walidacja-row{
            width: 570px;min-height: 65px;margin:0px auto;color:#555;font-size: 1.65rem;
        }
        
        div.form-walidacja-row .input-container{
            width: 30px; min-height: 65px; line-height: 65px;float:left; margin: 0px;padding: 0px; text-align: center;
        }
        
         div.form-walidacja-row .input-container input[type=radio]{
            position: absolute;
    top: 45%;
         }
    
    
        div.form-walidacja-row .block1
        {
            width: 460px;height: 100px;margin:0px auto;
        }
        
        
        label.custom-control-label {
            
            font-weight: 300;
            padding-left: 10px;
            z-index: 9999;
            color: #fff;
            font-size: 15px;
        }
        
        table.dataTable{
            font-size: 1.5rem !important;
        }
        
        .btn-primary:hover{
            color: #62b1f3 !important;
            background-color: white !important;
            border: 1px solid #62b1f3 !important;
            
        }
        
        .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{
            width: 100% !important;
        }
        .dialog-button-raport{
            background-color: #62b1f3 !important;
            color: #ffffff !important;
            border-radius: 7px !important;
            border: 0px !important;
            float: right !important;
            padding: 5px 10px !important;
            width: 150px !important;
            margin: .5rem !important;
            font-size: 1.3rem !important;
        }
        .dialog-button-zamknij{
            background-color: #fff !important;
            border-radius: 7px !important;
            float: left !important;
            padding: 5px 10px !important;
            width: 150px !important;
            border: 1px solid #666 !important;
            margin: .5rem !important;
            color: #666 !important;
            font-size: 1.3rem !important;
        }
        
        .ui-dialog .ui-dialog-buttonpane{
            margin-top: 0px !important;

            margin: 0px !important;
            padding: 5px !important;
        }
        
        .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
            font-family: Lato,sans-serif;
            font-size: 0.9em;
        }
