/* general */
@import url('https://fonts.googleapis.com/css?family=Lato:100,300,300i,400,400i,600,700,900&subset=latin-ext');

@font-face {
  font-family: 'Lato';
  src:
      url(../fonts/lato-semibold.ttf) format('truetype ')
      , url(../fonts/lato-semibold2.woff2) format('woff2')
      , url(../fonts/lato-semibold.eot) format('eot')
      ;
  font-style: normal;
  font-weight: 600;

}

:root {
    --primary-color: #3461c9;
    --mobile-container-height: 100vh;
    --transition-duration: 0.1s;
    --indentation: 0;
    --menu-width: 300px;
    --card-width: 270px;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Lato', sans-serif;
    background: #f6f9fe;
}

body.editor-page{
    overflow: hidden;
}

svg {
    display: block;
}

body.editor-page #container {
    display: flex;
    flex-direction: row;
    height: 100vh;
    overflow: hidden;
}

body.preview-page #container {
    /* navigation menu height */
    height: calc(var(--mobile-container-height) - 90px);
}

.btn:focus {
    box-shadow: none;
}

/* left menu styles */
#menu {
    width: var(--menu-width);
    height: auto;
    min-height: 100%;
    flex-shrink: 0;
    flex-grow: 0;
    background: #1A1F26;
    display: flex;
    flex-direction: column;
}

#menu .menu-row {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#menu .menu-row.with-top-margin {
    margin-top: 30px;
}

#menu .menu-row.with-top-margin-md {
    margin-top: 15px;
}

#menu .menu-50 {
    flex: 0 1 50%;
    display: flex;
    align-items: center;
}

.auth-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    position: relative;
}

.auth-btns > span {
    height: 15px;
    width: 1px;
    background-color: #808F9D;
    margin-right: 7px;
}

.auth-btns > button.btn.btn-link {
    transition: .1s color ease-in-out !important;
}

#menu .menu-header {
    background: #1A1F26;
    color: #fff;
    padding: 0rem 0 2rem 0;
    border-bottom: 1px solid rgba(100, 115, 129, 0.5);
    position: sticky;
    top: 0;
    z-index: 202;
    padding: 0 30px 20px;
}

#menu .menu__header__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#menu .menu__header__controls .btn {
    flex: 1;
}

#menu .menu__header__controls .btn .icon {
    display: none;
    pointer-events: none;
}

#menu .menu-header .btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
}

#menu .menu-header .btn:focus {
    box-shadow: none;
}

#menu .menu-header .btn .icon svg {
    max-width: 100%;
    max-height: 100%;
}

#menu .menu-header .btn.btn-link {
    color: #808f9d;
    text-decoration: none;
    line-height: 1;
    padding: 8px 7px;
    margin-left: -7px;
    transition: none;
}
#menu .menu-header .btn.btn-link:hover {
    color: #fff;
}

.btn.btn-gotoleads {
    /*//color: #808f9d;*/
   color: #fff;
    float: right;
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 12px;
}




#menu .menu-header .btn.btn-link .icon {
    width: 33px;
    height: 24px;
    margin: 1px -3px 0 -12px;
}

#menu .menu-header .btn.btn-link .icon svg path {
    fill: #808f9d;


}
#menu .menu-header .btn.btn-link:hover .icon svg path {
    fill: #fff;
}

#menu .menu-header .btn.btn-success {
    padding: 9px 16px 8px 16px;
    border-radius: 30px;
    background: #5dc569;
    border: 2px solid transparent;
    letter-spacing: .075rem;
    /* min-width: 186px; */
    justify-content: center;
    align-self: center;
    font-size: 1.4rem;
    height: 33px;
    position: relative;
}

#menu .menu-header .btn.btn-success .loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
}

.loader svg {
    width: 100%;
    height: 100%;
}

.loader svg circle {
    stroke: currentColor;
    animation: spin 1s linear infinite;
    transform-origin: 50% 50%;
}

#menu .menu-header .btn.btn-success.loading {
  opacity: 1 !important;
  background: #fff !important;
  color: #5dc569 !important;
}

#menu .menu-header .btn.btn-success.loading > :not(.loader) {
    display: none;
}

#menu .menu-header .btn.btn-success.loading .loader {
    display: flex;
}

#menu .menu-header .btn.btn-success:not(:disabled, .disabled):hover {
    border-color: #fff;
    color: #5dc569;
    background: #fff;
}



/* #menu .menu-header .btn.btn-success.sm-save {
    min-width: 97px;
} */

#menu .menu-header .btn.btn-success.sm-share {
    background: #3461c9;
    /* min-width: 123px; */
}

#menu .menu-header .btn.btn-success.sm-share:not(:disabled):hover {
    background: #fff;
    border-color: #FFFFFF;
    color: #3461c9;
}

#menu .menu-header .btn.btn-success:not(.loading):is(:disabled, .disabled) {
    pointer-events: none;
    cursor: default;
    opacity: 0.5;
}

#menu .menu-header .btn.btn-success .icon {
    width: 21px;
    height: 21px;
    margin-right: 11px;
}

#menu .menu-header .btn.btn-success .icon svg path {
    fill: #808F9D;
}

#menu .btn.btn-info{
    width: 100%;
    background: #3461c9;
    border-color: #3461c9;
    color: #fff;
    border-radius: 5px;
    letter-spacing: .8px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 30px;
    padding: 7.5px;
}

#menu .btn.btn-info:hover {
    background: #fff;
    border-color: #fff;
    color: #3461c9;
}

#menu .btn.btn-info:focus {
    box-shadow: none;
}

#menu .menu-header .btn.btn-light {
    padding: 9px 14px;
    border-radius: 30px;
    background: #fff;
    border: 2px solid transparent;
    letter-spacing: .05rem;
    min-width: 186px;
    justify-content: center;
    align-self: center;
    font-size: 1.2rem;
    color: #28323f;
    min-width: auto;
    font-weight: 900;
    margin-top: 1px;
}

#menu .menu-header .btn.btn-light:hover {
    border-color: #fff;
    background: transparent;
    color: #fff;
}

#menu .menu-header .btn.btn-light a {
    color: #28323f;
}

#menu .menu-header .btn.btn-light:hover a {
    color: #fff;
}

#menu .menu-header h1 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2.2rem;
    margin: 1.5rem 0;
    letter-spacing: .115rem;
}

#menu .menu-header h1.alt {
    text-align: left;
    margin-bottom: 0;
}

#menu .menu-body,
#menu .menu-footer {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

/* #menu .menu-footer {
  padding-bottom: 20px;
} */

/* menu options/dropdowns */
#menu .card {
    border-radius: 10px;
    border: 1px solid transparent;
    background: none;
    color: #fff;
    padding: 0;
    width: calc(var(--menu-width) - 24px);
}

#menu .menu-footer .card {
    border: none;
}

#menu:not(.collapsed) .menu-footer .card:hover {
    background-color: #28323F !important;
}

#menu .card:not(.hard-cover-color-card).active,
#menu .card:not(.hard-cover-color-card):not(.disabled):hover,
#menu .card:not(.hard-cover-color-card).force-hover {
    background: #212731;
    border-color: #384452;
}

/* #menu .menu-body .card:first-child {
    margin-top: 27px;
} */

/* #menu .menu-footer .card:first-child {
    margin-top: 30px;
} */

#menu .card-header {
    background: none;
    border: none;
    padding: 0;
}

#menu .card-header.disabled{
    opacity: 0.4;
    user-select: none;
    pointer-events: none;

}

#menu .card-header.disabled .btn-contents>.icon:not(.loader) {
  display: none;
}

#menu .card-header .btn-contents>.icon.loader {
  display: none;
  width: 26px;
  height: 26px;
}

#menu .card-header .btn-contents>.icon.loader svg {
  width: 100%;
  height: 100%;
}

#menu .card .card-header .btn-contents>.icon.loader svg circle {
  fill: none !important;
  stroke: #5dc569 !important;
}

#menu .card-header.disabled .btn-contents>.icon.loader {
  display: block;
}

#menu .card-header h5 {
    margin-bottom: 0;
    position: relative;
}

#menu .card-header h5 .btn {
    position: relative;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 0;
    width: 100%;
    text-align: left;
    text-decoration: none;
    letter-spacing: .2px;
    padding: 15px 15px 15px 20px;
    border: none;
}

#menu .card-header h5 .btn:focus {
    box-shadow: none;
}

#menu .card-header h5 .btn > .btn-contents {
    position: relative;
    line-height: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

#menu .card-header h5 .btn > .btn-contents > .title {
    display: block;
    padding-top: 2px;
    height: 20px;
    overflow: hidden;
    flex: 1;
}

#menu .card-header h5 .icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


#menu .card-header#heading-lead-capture h5 .icon {
    top: 3px;
}


#menu .card-header:not(#heading-settings-loader-effect) h5 .icon svg ellipse,
#menu .card-header:not(#heading-settings-loader-effect) h5 .icon svg circle,
#menu .card-header:not(#heading-settings-loader-effect) h5 .icon svg path,
#menu .card-header:not(#heading-settings-loader-effect) h5 .icon svg line {
    fill: #808F9D;
    stroke: none !important;
    /* stroke: #808F9D; */
}

#menu .card-header#heading-settings-effect h5 .icon svg path {
    stroke: none !important;
}

#menu .card-header#heading-settings-privacy h5 .icon svg path
{
    stroke: none;
}


#menu .card-header h5 .icon svg line {
    stroke-width: 50px;
}

#menu .card-header h5 .icon.secured svg path,
#menu .card-header h5 .icon.red svg path
{
    fill: #f3a3a3;
}


#menu .card:hover .card-header h5 .icon svg path,
#menu .card.active .card-header h5 .icon svg path,
#menu .card.force-hover .card-header h5 .icon svg path,
#menu .card:hover .card-header h5 .icon svg circle,
#menu .card.active .card-header h5 .icon svg circle,
#menu .card.force-hover .card-header h5 .icon svg circle,
#menu .card:hover .card-header h5 .icon svg ellipse,
#menu .card.active .card-header h5 .icon svg ellipse,
#menu .card.force-hover .card-header h5 .icon svg ellipse,
#menu .card:hover .card-header h5 .icon svg line,
#menu .card.active .card-header h5 .icon svg line,
#menu .card.force-hover .card-header h5 .icon svg line {
    fill: #fff !important;
    /* stroke: #fff !important; */
}

#menu .card-body {
    padding: .7rem 1.4rem 2.5rem 1.4rem;
}

#menu .card-body-texture {
    padding-bottom: 1.5rem;
}

#menu .card-body-filters {
    padding-bottom: 0;
    padding-top: 1rem;
}

#menu .card-body-filters .info-row {
    justify-content: space-between;
    gap: 0 5px;
}

#menu .card-body-filters .filters__label {
    color: #6c7985;
    text-transform: capitalize;
}

#menu .card-body .btn.btn-link {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #3461c9;
    margin-top: .2rem;
    padding: 0;
    line-height: 1;
}

#menu .card-body .btn.btn-link:hover {
    text-decoration: none;
    color: #3461c9;
}

#menu .card-body .btn.btn-link:focus {
    text-decoration: none;
    box-shadow: none;
}

#menu .card-body .btn.btn-link > .icon {
    width: 2.5rem;
    height: 1.8rem;
    margin-left: -.4rem;
}

#menu .card-body .btn.btn-link > .icon > svg path {
    fill: #3461c9;
}

#menu #settings-name {
    margin-top: -10px;
    z-index: 200;
}

#menu .card:not(.active) #settings-name.collapsing {
    margin-bottom: 10px;
}

#menu #settings-name .card-body {
    padding-top: 0;
}

/* #menu #settings-menu .card-body {
    margin-left: 25px;
} */

#menu #settings-colors .card-body {
    padding-top: 3px;
}

#menu #settings-logo .card-body {
    padding: 7px 16px 18px 16px;
}

#menu textarea.form-control,
#menu input[type=text].form-control,
#menu input[type=number].form-control,
#menu input[type=password].form-control {
    width: 100%;
    margin-bottom: 4px;
    border-radius: 5px;
    border: none;
    padding: 13px 17px;
    height: auto;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    background: #f6f9fe;
    line-height: 18px;
    letter-spacing: .75px;
}

#menu input[type=text].form-control:disabled,
#menu input[type=number].form-control:disabled,
#menu input[type=password].form-control:disabled {
    color: #778593;
    background: #acb8c3;
}

#menu input[type=number].form-control {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  margin-bottom: 0;
}

#menu input[type=number].form-control.form-control--small {
  width: 36px;
  padding: 4.5px 2px;
  text-align: center;
}

#menu input[type=number].form-control::-webkit-inner-spin-button {
  display: none;
}

#menu .card-body .form-control::placeholder {
    color: #acb8c3;
    font-weight: 700;
}

#menu .card-body .hide-if-auto-flip-disabled {
    margin-top: 7px;
    padding-bottom: 7px;
    flex-direction: column;
}

#menu .card-body .hide-if-auto-flip-disabled .form-group.no-margin {
  margin-bottom: 0;
}

#menu .has-error {
  border: 2px solid red;
  border-radius: 7px;
}

#menu input[type=text].form-control:disabled::placeholder,
#menu input[type=number].form-control:disabled::placeholder,
#menu input[type=password].form-control:disabled::placeholder  {
    color: #778593;
}

#menu input[type=text].form-control.micro {
    width: 36px;
    padding: 2px;
    font-size: 10px;
    text-align: center;
    margin: 0 0 0 8px;
}

#menu select.micro {
    width: 36px;
    padding: 4.5px 2px;
    font-size: 10px;
    margin: 0 0 0 8px;
    border-radius: 5px;
    background-color: #fff;
    border: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    text-align-last: center;
    outline: none;
    font-weight: 700;
}

#menu select.mini {
    width: 50px;
    padding: 3px 2px;
    font-size: 11px;
    margin: 0 0 0 8px;
    border-radius: 2px;
    background-color: #fff;
    border: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    text-align-last: center;
    outline: none;
    font-weight: 700;
}

#menu select:is(.micro, .mini)::-ms-expand {
    display: none;
}

#menu .input-group input[type=text].form-control,
#menu .input-group input[type=password].form-control {
    width: 1%;
    border-radius: 5px 0 0 5px;
}

#menu #menu-form-domains .input-group input.form-control {
  width: 100%;
  border-radius: 5px;
}

#menu .input-group .input-group-append {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

#menu .input-group input[type=text].form-control,
#menu .input-group input[type=password].form-control {
    margin-bottom: 0px;
    padding-right: 0;
}

#menu .input-group .input-group-append svg {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

#menu .input-group .input-group-append .on svg {
    width: 35px;
    height: 35px;
}

#menu .input-group .input-group-append svg path {
    fill: #778593;
}

#menu .card-body .form-control:focus {
    border: none;
    box-shadow: none;
}

#menu .input-group input[type=text].form-control + .input-group-append,
#menu .input-group input[type=password].form-control + .input-group-append {
    color: #acb8c3;
    background: #f6f9fe;
    border-radius: 0 5px 5px 0;
}

#menu .input-group input[type=text].form-control:disabled + .input-group-append,
#menu .input-group input[type=password].form-control:disabled + .input-group-append {
    color: #778593;
    background: #acb8c3;
    border-radius: 0 5px 5px 0;
}

#menu .input-group-append.password-toggler {
    padding-left: 19px;
}

#menu .input-group-append.password-toggler > .on {
    padding-right: 14px;
}

#menu .input-group-append.password-toggler > .off {
    padding-right: 19px;
}

#menu .form-control.is-required {

}

#menu .card-body textarea {
    resize: none;
    height: 140px;
}

#menu .card-body textarea::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 8px 8px #D1DBE9;
    cursor: default;
}

#menu .card-body textarea::-webkit-scrollbar-thumb:hover {
    box-shadow: inset 0 0 8px 8px #B3C0D3;
}

#menu .menu-footer .card-header h5 .icon svg line {
    stroke: #5dc569;
}

#menu .menu-footer .card-header h5 .icon svg path {
    fill: #5dc569;
}

#menu .menu-footer .card:hover .card-header h5 .icon svg line,
#menu .menu-footer .card.active .card-header h5 .icon svg line {
    stroke: #fff;
}

#menu .menu-footer .card:hover .card-header h5 .icon svg path,
#menu .menu-footer .card.active .card-header h5 .icon svg path {
    fill: #fff;
}

#menu .card-header h5 .icon-end {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 1;
    visibility: visible;
    /* transition: .1s opacity ease-in-out, .1s visibility ease-in-out; */
    pointer-events: none;
}

#menu .card .card-header h5 .icon-end svg path {
    transition: none;
}

#menu .card:is(:hover, .active) .card-header h5 .icon-end svg path {
    /* opacity: 1;
    visibility: visible; */
    fill: #fff;
}

#menu .card.active .card-header h5 .icon-end {
    transform: rotate(180deg);
}

#menu .card.active .card-header h5 .icon-end svg path {
    fill: #fff;
}

/* #menu .card.active .card-header h5 .icon-end {
    transform: rotate(-90deg);
} */

#menu .card-header h5 .icon-end svg path {
    fill: #808f9d;
    transition: .1s fill ease-in-out;
}

#menu .card-header span.explanation, #menu #settings-security .hide-if-domains-disabled span.explanation {
    color: #808f9d;
    font-weight: 600;
    font-size: 12px;
    display: block;
    letter-spacing: .3px;
    margin: 6px 0 0 1px;
    display: none !important;
}

#menu #settings-security .hide-if-domains-disabled span.explanation {
  margin-left: 5px;
  margin-bottom: 10px;
}

#menu .card .collapse {
    background: #212731;
    border-radius: 10px;
}

#menu .info-row {
    display: flex;
    align-items: center;
    height: 19px;
    font-size: 12px;
    letter-spacing: .4px;
    font-weight: 600;
}

#menu .logolink-row {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}

#menu .logolink-row > .info-row {
  margin-bottom: 3px;
}

#menu .info-row > .icon,
#menu .info-row .icon.icon-accent {
    margin: 0 8px 0 5px;
}

#menu #settings-logo .info-row > .icon {
    margin: 0 8px 0 3px;
}

#menu .info-row > .icon > svg {
    width: 15px;
    height: 15px;
}

#menu .info-row > .icon > svg path,
#menu .info-row > .icon > svg ellipse {
    fill: #808f9d;
}

#menu .info-row .icon.icon-accent > svg path,
#menu .info-row .icon.icon-accent > svg ellipse {
    fill: #5dc569;
}

.icon--crown {
  margin-left: 5px;
  display: inline-flex;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.icon--crown svg {
  width: 100%;
  height: 100%;
}

.icon--crown svg path {
  transition: .15s fill ease;
  fill: #F7A301;
}

.toc-headings {
    flex: 1 1 auto;
    margin-top: 1rem;
}

#toc-tree-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.toc-tree-item {
    height: 39px;
    position: relative;
    user-select: none;
}

.toc-tree-item:has(.selected) {
    height: 68px;
}

.toc-tree-item.indentation .toc-item {
    background: #38424f;
}

.toc-item {
    width: -moz-available;
    width: -webkit-fill-available;
    height: 34px;
    position: absolute;
    border-radius: 3px;
    background-color: #28323F;
    transition: background var(--transition-duration);
    margin: 3px 0 3px var(--indentation);
}

.toc-item:hover:not(.selected) {
    background-color: #4b5666;
}

#toc-tree-list .toc-item.selected .toc-inputs-wrapper {
    height: auto;
}

.toc-tree-item .toc-item.selected {
    height: 58px;
    border: 2px solid #515F6C;
    margin: 5px 0 5px var(--indentation);
}

.toc-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.toc-actions button {
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    color: #808F9D;
    transition: var(--transition-duration) background-color ease-in-out, var(--transition-duration) border-color ease-in-out, var(--transition-duration) color ease-in-out;
    border: 1px solid #384452;
    background-color: transparent;
    outline: none;
}

.toc-actions button span {
    transition: var(--transition-duration) color ease-in-out;
}

.toc-actions button svg path {
    transition: var(--transition-duration) fill ease-in-out;
}

#toc-container button {
    padding-right: 0;
    padding-left: 0;
}

.toc-actions>div>button,
.toc-actions>div>span {
    padding: 0.2rem 0.4rem;
}

.toc-actions .page-column-description {
    float: right;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.2;
    color: #647381;
    padding-right: 9px;
}

#toc-container .subheadings-button {
    position: absolute;
    width: 14px;
    height: 34px;
    top: -7px;
    left: -17px;
    padding: 0;
    z-index: 10;
}

#toc-container .selected .subheadings-button {
    top: -3px;
    left: -19px;
    height: 58px;
}

#toc-container .toc-tree-item:not(.sortable-chosen):hover .toc-item .subheadings-button {
    background: #4b5666ad;
}

#toc-container .subheadings-button .icon {
    width: 12px;
    height: 7px;
    position: relative;
    background-color: #808f9d;
    transform: rotate(-90deg);
    transition: transform var(--transition-duration);
    mask: url(../img/svg/list/chevron-down-2.svg) center center / 260% 260% no-repeat;
}

#toc-container .toc-tree-item:hover .subheadings-button .icon {
    background-color: #fefefe;
}

#toc-container .expanded .subheadings-button .icon {
    width: 11px;
    height: 6px;
    transform: rotate(0);
}

.sortable-chosen .toc-item:not(:has(input)) {
    background: #4b5666;
}

#toc-container .sortable-chosen .subheadings-button .icon {
    display: none;
}

#menu #settings-toc .card-body {
    padding-right: .6rem;
    padding-left: 2rem;
}

#settings-toc .toc-headings + .toc-actions {
    margin-top: 11px;
    display: flex;
    justify-content: space-between;
}

#settings-toc .toc-headings + .toc-actions .add-heading-button,
#settings-toc .toc-actions .delete-heading-button {
    display: none;
}

#settings-toc:has(.toc-tree-item:not(.sortable-drag):nth-child(2)) .toc-actions .delete-heading-button {
    display: flex;
}

#settings-toc:has(.toc-tree-item:not(.sortable-drag):nth-child(10)) .toc-headings + .toc-actions .add-heading-button {
    display: flex;
}

.sortable-fallback {
    display: none;
}

#settings-toc .add-heading-button,
#settings-toc .delete-heading-button {
    padding: 6px 10px 6px 6px;
    margin-left: -8px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

#settings-toc .delete-heading-button {
    margin-left: auto;
}

#settings-toc .add-heading-button .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

#settings-toc .add-heading-button span {
    color: #5dc569;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.2;
}

.add-heading-button:not(:disabled):not(.disabled):hover,
.delete-heading-button:not(:disabled):not(.disabled):hover {
    background-color: #28323F;
}

.delete-heading-button:not(:disabled):not(.disabled):hover {
    border-color: #CB2539;
    background: rgba(203, 37, 57, 0.15);
}

.delete-heading-button:not(:disabled):not(.disabled):hover span {
    color: #CB2539;
}

.delete-heading-button:not(:disabled):not(.disabled):hover svg path {
    fill: #CB2539;
}

#settings-toc .dropdown-menu {
    width: 190px;
    padding: 10px 13px 10px 13px;
    background: #ffffff;
    box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 2px solid #dbe0e6;
}

#settings-toc .dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    border-radius: 50px;
    line-height: 1;
    margin: 2px 0 4px 0;
    padding: 8px 6px;
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
}

#settings-toc .dropdown-menu .dropdown-item:hover {
    background-color: #e6eaf3;
}

#settings-toc .dropdown-menu .dropdown-item .icon {
    position: relative;
    height: 17px;
    margin: 0 10px 0 2px;
}

#settings-toc .dropdown-menu .dropdown-item .icon img {
    width: 16px;
    height: 16px;
}

#settings-toc .dropdown-menu.item-actions .dropdown-item .icon img {
    filter: brightness(0);
}

#toc-tree-list {
    padding-left: 0;
    list-style: none;
}

#toc-tree-list .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #28323f;
}

#toc-tree-list .toc-inputs-wrapper {
    display: flex;
    height: 100%;
    position: relative;
    font-size: 1.3rem;
    align-items: center;
    justify-content: space-between;
}

#toc-tree-list .toc-inputs-wrapper .move-icon {
    width: 20px;
    height: 20px;
    margin-right: 18px;
    margin-left: -2px;
    cursor: pointer;
    opacity: .9;
    filter: invert(1);
}

#toc-tree-list .toc-inputs-wrapper .name-wrapper {
    position: relative;
}

#toc-tree-list .toc-inputs-wrapper .name-wrapper:has(.name-input) {
    flex: 1;
}

#toc-tree-list .toc-inputs-wrapper .page-number-wrapper {
    flex-basis: 35px;
    text-align: right;
    position: relative;
}

#toc-tree-list .toc-inputs-wrapper .page-number-wrapper .page-number {
    display: block;
    height: 100%;
    text-align: right;
    line-height: 20px;
    overflow: hidden;
    margin-right: 4px;
    padding-right: 6px;
    padding-left: 20px;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
}

#toc-tree-list .selected .toc-inputs-wrapper .page-number-wrapper .page-number {
    margin-top: 4px;
}

#toc-tree-list .toc-inputs-wrapper .page-number-wrapper .page-number-input {
    width: 50px;
    flex-basis: 50px;
    position: relative;
    margin-top: 5px;
    margin-right: 7px;
    padding-right: 6px;
    padding-left: 20px;
    text-align: right;
    line-height: 18px;
}

#toc-tree-list .toc-inputs-wrapper .name-wrapper .name {
    height: 21px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    padding: 0 23px 0 5px;
    margin-right: 3px;
    margin-left: 4px;
    border-radius: 2px;
    border: 1px solid transparent;
    word-break: break-word;
    line-height: 20px;
    cursor: pointer;
}

#toc-tree-list .selected .toc-inputs-wrapper .name-wrapper .name {
    margin-top: 4px;
}

#toc-tree-list .toc-inputs-wrapper .name-wrapper .name:hover::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 8px;
    width: 13px;
    height: 13px;
    background: url(../img/pencil_edit.png) no-repeat;
}

#toc-tree-list .selected .toc-inputs-wrapper .name-wrapper .name:hover::after {
    top: 8px;
}

#toc-tree-list .toc-inputs-wrapper .page-number-wrapper .page-number:hover::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 3px;
    width: 13px;
    height: 13px;
    background: url(../img/pencil_edit.png) no-repeat;
/*    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);*/
}

#toc-tree-list .selected .toc-inputs-wrapper .page-number-wrapper .page-number:hover::after {
    top: 8px;
}

#toc-tree-list .selected .toc-inputs-wrapper .page-number-wrapper .buttons-wrapper {
    position: absolute;
    top: 0;
    left: 0;
}

#toc-tree-list .selected .toc-inputs-wrapper .page-number-wrapper .increase-button {
    position: absolute;
    top: 5px;
    left: 2px;
    width: 15px;
    height: 10px;
    transform: rotate(180deg);
    background-color: #acb8c3;
    mask: url(../img/svg/icon-chevron-down-2.svg) center center / 160% 160% no-repeat;
    z-index: 1;
}

#toc-tree-list .selected .toc-inputs-wrapper .page-number-wrapper .decrease-button {
    position: absolute;
    top: 15px;
    left: 2px;
    width: 15px;
    height: 10px;
    background-color: #acb8c3;
    mask: url(../img/svg/icon-chevron-down-2.svg) center center / 160% 200% no-repeat;
    z-index: 1;
}

#toc-tree-list .selected .toc-inputs-wrapper .page-number-wrapper .increase-button:hover {
    background-color: #335ec4;
}

#toc-tree-list .selected .toc-inputs-wrapper .page-number-wrapper .decrease-button:hover {
    background-color: #335ec4;
}

#toc-tree-list .toc-inputs-wrapper .name-wrapper .name-input {
    position: relative;
    width: calc(100% - 22px);
    margin-left: 6px;
    margin-top: 6px;
    padding-left: 6px;
    line-height: 18px;
}

#toc-tree-list .toc-inputs-wrapper .name-wrapper .buttons-wrapper {
    position: absolute;
    top: 2px;
    right: 0;
}

#toc-tree-list .toc-inputs-wrapper .name-wrapper .buttons-wrapper .confirm-button {
    width: 20px;
    height: 20px;
    background-color: #808f9d;
    mask: url(../img/svg/checked_circle.svg) center center / 130% 20px no-repeat;
    cursor: pointer;
}

#toc-tree-list .toc-inputs-wrapper .name-wrapper .buttons-wrapper .confirm-button:hover {
    background-color: #59ba65;
}

#toc-tree-list .toc-inputs-wrapper .name-wrapper .buttons-wrapper .cancel-button {
    width: 20px;
    height: 20px;
    background-color: #808f9d;
    mask: url(../img/svg/navbar/close.svg) center center / 100% 16px no-repeat;
    cursor: pointer;
}

#toc-tree-list .toc-inputs-wrapper .name-wrapper .buttons-wrapper .cancel-button:hover {
    background-color: #cb253d;
}

/* Disable default number buttons */
#toc-tree-list .toc-inputs-wrapper .page-number-wrapper .page-number-input {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

#toc-tree-list .toc-inputs-wrapper .page-number-wrapper .page-number-input::-webkit-inner-spin-button,
#toc-tree-list .toc-inputs-wrapper .page-number-wrapper .page-number-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
/* End disbale */

#toc-tree-list .toc-inputs-wrapper .name-wrapper .name-input,
#toc-tree-list .toc-inputs-wrapper .page-number-wrapper .page-number-input {
    border-radius: 2px;
}

#toc-tree-list .toc-inputs-wrapper .name-wrapper .name-input:focus-visible,
#toc-tree-list .toc-inputs-wrapper .page-number-wrapper .page-number-input:focus-visible {
    border: none;
    outline: #3360c9 solid 2px;
}

#toc-tree-list .toc-inputs-wrapper .actions-button-wrapper {
    pointer-events: none;
    position: absolute;
    right: 1rem;
}

#toc-tree-list .toc-inputs-wrapper .item-actions-button img {
    width: 16px;
    height: 16px;
    opacity: 0.1;
}

#toc-tree-list .toc-inputs-wrapper .item-actions-button:hover img,
#toc-tree-list .toc-item.selected .toc-inputs-wrapper .item-actions-button img {
    opacity: .5;
}

#toc-tree-list .toc-item .toc-inputs-wrapper .item-actions-button:hover img {
    opacity: 1;
}

#toc-tree-list .buttons-wrapper {
    display: none;
    justify-content: space-between;
    padding: .4rem 1rem;
}

#toc-tree-list .buttons-wrapper button.btn {
    min-width: fit-content;
    padding: 0;
    color: #808f9d;
    font-size: 1.2rem;
    line-height: normal;
}

#toc-tree-list .buttons-wrapper .add-subheading-button:not(:disabled):hover {
    color: #59ba65;
}

#toc-tree-list .buttons-wrapper .delete-button:hover {
    color: #cb253d;
}

#toc-tree-list .toc-item.selected .buttons-wrapper {
    display: flex;
}

#toc-tree-list .buttons-wrapper .delete-button {
    padding: 0;
    display: flex;
    align-items: center;
}

#toc-tree-list .buttons-wrapper .delete-button .icon {
    width: 13px;
    height: 13px;
    background-color: white;
    mask: url(../img/svg/list/menu/trash.svg) center center / 100% 20px no-repeat;
    -webkit-mask: url(../img/svg/list/menu/trash.svg) center center / 100% 20px no-repeat;
}

#toc-tree-list .button  s-wrapper button img {
    width: auto;
    height: 13px;
}

#empty-toc-message {
    margin-top: 2rem;
    font-size: 1.4rem;
    text-align: center;
}

#modal-window #modal-paid .card-header {
  width: 100%;
  background: #3461c9;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border: 0;
  border-radius: 1rem 1rem 0 0;
  padding: 1.2rem 0.5rem 0.8rem 0.5rem;
  margin-bottom: 0;
}

#modal-window #modal-paid .card-header h2 {
  letter-spacing: .125rem;
  margin: 0;
  font-weight: 600;
}

#modal-window #modal-paid .card-body {
  width: 100%;
  background: #f6f9fe;
  border: 0;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 2.5rem 2rem 1.4rem 2rem;
}

#modal-window #modal-paid .card-body ul {
  padding-inline-start: 0;
  column-count: 1;
  list-style: none;
  line-height: 32px;
  font-weight: var(--font-weight-bold);
  font-size: 1.4rem;
  letter-spacing: .035rem;
  margin-left: 0.7rem;
}

#modal-window #modal-paid .card-body ul > li {
  padding-left: 2.9rem;
  text-transform: none;
  background-image: url(../img/svg-icon-plus-5dc569.svg);
  background-position: 0.1rem 0.9rem;
  background-size: 1.5rem;
  background-repeat: no-repeat;
  margin-left: 0;
}

/* .icon-end + .icon--crown {
  margin-left: 0;
} */

#menu .card-body .icon-end {
    margin: 0 -1px 0 auto;
}

#menu .icon-info {
    margin-top: -4px;
    margin-left: 7px;
}

#menu .icon-info:hover,
#menu .card-body .icon-end:hover {
    cursor: pointer;
}

#menu .card-body .icon-end svg path {
  transition: .1s fill ease-in-out;
}

#menu .card-body .icon-end:hover svg path {
    fill: #fff;
}

#menu .icon-info > svg {
    width: 27px;
    height: 27px;
}

#menu .card-body :is(.icon-end, .icon-next) > svg {
    width: 28px;
    height: 28px;
}

#menu .icon-info > svg path,
#menu .icon-info > svg rect,
#menu .icon-info > svg circle,
#menu .icon-info > svg ellipse,
#menu .card-body :is(.icon-end, .icon-next) > svg path,
#menu .card-body :is(.icon-end, .icon-next) > svg rect,
#menu .card-body :is(.icon-end, .icon-next) > svg circle,
#menu .card-body :is(.icon-end, .icon-next) > svg ellipse {
    fill: #3461c9;
}

#menu .red.icon > svg path {
    fill: #CB253D;
}

#menu .info-row > .info-end {
    margin-left: auto;
    color:#808f9d;
}

#menu #settings-lead-capture .info-row {
    margin: 20px 0 8px 0;
}

#menu .error-row {
    position: relative;
    display: none;
    font-size: 1.25rem;
    letter-spacing: .04rem;
    font-weight: 600;
    color: #db959f;
    padding-left: 5px;
    line-height: 1.25;
    margin: 1.2rem 0 0 .2rem;
}

#menu .error-row > .icon {
    position: absolute;
    top: -.1rem;
    left: -.3rem;
    height: 1.4rem;
    width: 1.4rem;
}

#menu .error-row > .icon > svg {
    position: absolute;
    top: -1.9rem;
    left: -1.9rem;
    width: 5.2rem;
    height: 5.2rem;
}

#menu .error-row > .icon > svg .background {
    fill: #cb253d;;
}

#menu .error-row > .icon > svg .symbol {
    fill: #1a1f26;
}

#menu .error-row > span {
  margin-left: 1rem;
}

#menu .internal-label {
    display: inline-block;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .8px;
    margin: 0 0 0 6px;
    line-height: 24px;
}

#menu button .internal-label {
    cursor: pointer;
}


#menu .internal-label.no-margin {
    margin: 0;
}

#menu .label-icon {
    width: 16px;
    height: 16px;
}

#menu .label-icon svg {
    max-width: 100%;
    max-height: 100%;
}

#menu .label-icon svg path {
    fill: #647381;
}

#menu .change-order-handle {
    width: 19px;
    height: 44px;
    display: flex;
    justify-content: center;
}

#menu .change-order-handle svg {
    max-width: 100%;
    max-height: 100%;
}

#menu .change-order-handle svg circle {
    fill: #647381;
}

#menu .change-order-handle svg:hover {
    cursor: pointer;
}

#menu .delete-form-field,
#menu .delete-form-domain,
#menu #add-form-field, #menu #add-form-domain {
    display: flex;
    align-items: center;
    border: 0;
    margin: 0;
    padding: 0;
    background: none;
    color: #fff;
    outline: 0;
    box-shadow: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
}

#menu .delete-form-field:hover,
#menu .delete-form-domain:hover,
#menu #add-form-field:hover,
#menu #add-form-domain:hover {
    cursor: pointer;
}

#menu .delete-form-field:hover{
    color: #cb253d;
}
#menu .delete-form-field:hover svg path{
    fill: #cb253d;
}
#menu .delete-form-field:focus,
#menu .delete-form-domain:focus,
#menu #add-form-field:focus,
#menu #add-form-domain:focus {
    border: 0;
    outline: 0;
    box-shadow: none;
}

#menu #add-form-field:disabled, #menu #add-form-domain:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#menu .extra-top-space {
    margin-top: 36px;
}

/* menu switch */
/* - icons */
.custom-switch .custom-control-label > .icon {
    width: 15px;
    height: 15px;
    margin-right: 9px;
    margin-left: 5px;
    margin-top: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#switch-toc + .custom-control-label > .icon {
    margin-top: -5px;
}

.custom-switch .custom-control-label > .icon > svg circle,
.custom-switch .custom-control-label > .icon > svg polyline,
.custom-switch .custom-control-label > .icon > svg rect,
.custom-switch .custom-control-label > .icon > svg line {
    fill: none;
    stroke: #808f9d;
}

.custom-switch .custom-control-label > .icon > svg path {
    fill: #808f9d;
    stroke: none;
}

/* - turn off defaults */
.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: none;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    background: none;
}

/* - change colors */
.custom-switch .custom-control-label::before,
.custom-switch .custom-control-label::after {
    cursor: pointer;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border: 2px solid #647381;
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: transparent;
    border: 2px solid #3461c9;
}

.custom-switch .custom-control-label::before {
    border: 2px solid #647381;
    background: none;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    border-color: #647381;
}

.custom-control-input:not(:disabled):active:checked ~ .custom-control-label::before {
    border-color: #3461c9;
}

.custom-control-input:focus:checked ~ .custom-control-label::before {
    border: 2px solid #3461c9;
}

.custom-switch .custom-control-label::after {
    background-color: #647381;
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    background-color: #3461c9;
}

.custom-control-input--disabled {
  cursor: default;
  opacity: .25;
  display: none;
}

.custom-control.page-effect-select {
    padding-left: 7px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    user-select: none;
    z-index: 2;
}

.page-effect-select .icon {
    position: relative;
    top: -1px;
    left: 2px;
    width: 20px;
}

.custom-selector {
    position: relative;
    min-width: 90px;
    height: 26px;
}

.selected-option {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background-color: #28323F;
    color: #B3C0D3;
    padding-left: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    line-height: 27px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-selector[disabled] {
    pointer-events: none;
}

.custom-selector[disabled] .selected-option {
    color: #6c757d;
    background-color: #343434;
    cursor: default;
}

.selected-option:hover,
.custom-selector.open .selected-option {
    background-color: #647381;
    color: #fff;
}

.custom-selector.open .selected-option {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.selected-option .arrow {
    max-width: 16px;
    width: 16px;
    max-height: 100%;
    height: 100%;
    background-color: #B3C0D3;
    mask: url(../img/svg/list/chevron-right-2.svg) center center / 100% 100% no-repeat;
    filter: none;
    rotate: 90deg;
    margin-right: 5px;
}

.selected-option:hover .arrow,
.custom-selector.open .selected-option .arrow {
    background-color: #fff;
}

.options {
    width: 100%;
    position: absolute;
    background-color: #fff;
    border: 0;
    border-radius: 0 0 5px 5px;
    list-style: none;
    padding: 0;
    opacity: 0;
    transform: scaleY(0);
    pointer-events: none;
    transform-origin: top;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.options .option {
    width: 100%;
    height: 26px;
    padding: 0 10px;
    color: #000;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 27px;
    position: relative;
}

.options .option:hover {
    background-color: #E1E8F0;
}

.options .option:last-of-type {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.options .option.selected div {
    width: 10px;
    height: 10px;
    position: absolute;
    top: 8px;
    right: 10px;
    background-color: #5DC569;
    mask: url(../assets/icons/check--green.svg) center center / 100% 100% no-repeat;
}

.custom-selector.open .options {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
}

.custom-control-input:disabled~.custom-control-label, .custom-control-input[disabled]~.custom-control-label {
    color: #fff;
    cursor: default;
}

/* - change fonts, positioning and display */
.custom-switch {
    padding-left: 40px;
    margin-top: 7px;
    min-height: 24px;
    position: static;
    user-select: none;
}

.custom-switch:first-of-type {
    margin-top: 0px;
}

.custom-switch .custom-control-label {
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
    align-items: center;
    letter-spacing: .75px;
    line-height: 19px;
    padding-top: 1px;
    cursor: pointer;
}

.custom-control .custom-select-label {
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
    align-items: center;
    letter-spacing: .75px;
    line-height: 19px;
    padding-top: 1px;
    max-width: 135px;
}

#menu #settings-security .custom-switch .custom-control-label {
    letter-spacing: .8px;
}

/* - change dimensions */
.custom-switch .custom-control-label::before {
    border-radius: 8px;
    width: 24px;
    top: 1px;
    left: -35px;
    height: 16px;
}

.custom-control-input:disabled~.custom-control-label::before, .custom-control-input[disabled]~.custom-control-label::before {
    background-color: transparent !important;
    border-color: #647381 !important;
    cursor: default;
}

.custom-control-input:disabled~.custom-control-label::after, .custom-control-input[disabled]~.custom-control-label::after {
    background-color: #647381 !important;
}

.custom-switch .custom-control-label::after {
    width: 8px;
    height: 8px;
    top: 5px;
    left: -31px;
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    transform: translateX(8px);
}

.custom-switch .custom-control-input:disabled ~ .custom-control-label::after {
    cursor: default;
}

.custom-switch:is(.custom-control--reverted) {
  padding: 0;
}

.custom-switch:is(.custom-control--reverted) .custom-control-label {
  width: 100%;
}

.custom-switch:is(.custom-control--reverted) .custom-control-label .icon {
  margin: 0;
}

.custom-switch:is(.custom-control--reverted) .custom-control-label::before {
  left: unset;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.custom-switch:is(.custom-control--reverted) .custom-control-label::after {
  left: unset;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.custom-switch:is(.custom-control--reverted) .custom-control-input:checked ~ .custom-control-label::after {
  transform: translateY(-50%) translateX(8px);
}

/* - changes for security tab */
#menu #settings-security .hide-if-password-disabled {
    margin-bottom: 15px;
}

#menu #settings-security .hide-if-password-disabled:not(.input-group) {
  flex-direction: column;
}

#menu #settings-security .custom-switch {
  padding-left: 40px;
  margin-bottom: 8px;
  min-height: 0;
}

/* #menu #settings-security .custom-switch .custom-control-label::before {
    left: -29px;
}

#menu #settings-security .custom-switch .custom-control-label::after {
    left: -25px;
} */

#menu #settings-lead-capture .custom-switch {
    display: flex;
    align-items: center;
}

/* color picker */
#menu .colorpicker,
#menu .colorpickle,
#menu .colorpickle .colorPickerWrapper {
    width: 100% !important;
    height: 139px !important;
}

#menu .colorpicker {
    margin: 5px 0 0 1px;
    max-width: 86.9%;
}

#menu .colorpickle {
    background: none !important;
    min-width: auto;
    border: none;
    padding: 0;
}

#menu .colorpickle .colorPickerIndicator {
    width: 13px !important;
    height: 13px !important;
    border-color: #fff;
}

#menu .colorpickle .colorPickerIndicator::before {
    border: 1px solid #fff;
}

#menu .colorpickle .colorPickerIndicator::after {
    border: 1px solid #000;
}

#menu .colorpickle .sliderWrapper:not(.hWrapper):not(.aWrapper) {
    display: none !important;
}

#menu .colorpickle .sliderWrapper.hWrapper {
    position: absolute !important;
    top: 117px;
    right: auto;
    left: calc(100% + 31px);
    bottom: auto;
    width: 139px !important;
    height: 22px !important;
    transform-origin: 0 100%;
    transform: rotate(270deg);
}

#menu .colorpickle .sliderWrapper.hWrapper label,
#menu .colorpickle .sliderWrapper.hWrapper .hInput {
    display: none;
}

#menu .colorpickle .sliderWrapper.hWrapper .sliderBg {
    border: 0;
    border-radius: 5px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: auto;
}

#menu .colorpickle .sliderWrapper.hWrapper .sliderDiv {
    top: 0;
    left: -1px;
    bottom: 0;
    right: -1px;
}

#menu .colorpickle .colorPickerWrapper {
    position: absolute !important;
    top: 0;
    left: 0;
    margin-top: 0px !important;
    overflow: hidden;
    border: 0 !important;
}

#menu .colorpickle .colorPickerBg,
#menu .colorpickle .colorPicker .gradientTp2White {
    border-radius: 5px;
}

#menu .colorpickle .colorPicker .gradientTp2Black {
    border-radius: 4px;
}

#menu .colorpickle .clear,
#menu .colorpickle .buttonWrapper {
    display: none;
}

/* colorpicker thumb styles Mozilla+WebKit+Ms */
#menu .colorpickle  input[type="range"] {
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: ns-resize;
}

#menu .colorpickle .hWrapper .sliderDiv .slider::-moz-range-thumb {
    width: 2px !important;
    height: 25px !important;
    border: none !important;
    background: #000 !important;
    border-radius: 0 !important;
    margin: 0;
    transform: none;
    box-sizing: border-box;
}

#menu .colorpickle .hWrapper .sliderDiv .slider::-webkit-slider-thumb {
    width: 2px !important;
    height: 22px !important;
    border: none !important;
    background: #000 !important;
    border-radius: 0 !important;
    margin: 0;
    transform: none;
    margin-top: -6px;
}

#menu .colorpickle .hWrapper .sliderDiv .slider::-ms-thumb {
    width: 2px !important;
    height: 25px !important;
    border: none !important;
    background: #000 !important;
    border-radius: 0 !important;
    margin: 0;
    transform: none;
}

/* colorpicker swatch (hex) */
#menu .colorpickle .swatchHex {
    position: absolute !important;
    margin-top: 0 !important;
    top: -22px;
    right: -30px;
    text-align: right;
}

#menu .colorpickle .swatch {
    display:none;
}

#menu .colorpickle .hexValue {
    display: block;
    width: 65px !important;
    margin: 0 auto;
    border: 0 !important;
    background: transparent !important;
    color: #808f9d !important;
    text-align: right;
    float: right;
    text-transform: uppercase;
    padding: 0;
    font-weight: 600;
    letter-spacing: .4px;
    font-size: 12px;
    outline: none;
}

#menu .required-toggle-input-group {
    margin-bottom: 4px;
}

#menu .required-toggle-input-group.has-error, #menu .hide-if-password-disabled.has-error {
  border: 2px solid red;
  border-radius: 7px;
}

#menu .required-toggle-container {
    width: 42px;
}

#menu .required-toggle-container .required-toggle {
    height: 24px;
    font-size: 24px;
    font-weight: 700;
    color: #2c343f;
}

/* tooltips common */

.tooltip {
    top: 0;
}

.tooltip.show {
    opacity: 1 !important;
}

/* error tooltips */

.tooltip-inner {
    background: #dc3545;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
}

.bs-tooltip-auto[x-placement^="top"] .arrow::before,
.bs-tooltip-top .arrow::before {
    border-top-color: #dc3545;
}

.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,
.bs-tooltip-bottom .arrow::before {
    border-bottom-color: #dc3545;
}

/* info tooltips */

.tooltip.info .tooltip-inner {
    background: #3461c9;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    padding: 11px 13px;
    max-width: none;
    box-shadow: 0px 4px 4px 0 rgba(15, 24, 40, 0.8);
    letter-spacing: .4px;
    line-height: 1.3;
}

.tooltip.info .tooltip-inner:empty {
    display: none;
}

.tooltip.info.bs-tooltip-auto[x-placement^="top"] .arrow::before,
.tooltip.info.bs-tooltip-top .arrow::before {
    border-top-color: #3461c9;
}

.tooltip.info.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,
.tooltip.info.bs-tooltip-bottom .arrow::before {
    border-bottom-color: #3461c9;
}

.tooltip.upgrade .tooltip-inner {
  background: #F7A301;
  color: #1a1f26;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  padding: 11px 13px;
  max-width: none;
  box-shadow: 0px 4px 4px 0 rgba(15, 24, 40, 0.8);
  letter-spacing: .4px;
  line-height: 1.3;
}

.tooltip.upgrade.bs-tooltip-auto[x-placement^="top"] .arrow::before,
.tooltip.upgrade.bs-tooltip-top .arrow::before {
    border-top-color: #F7A301;
}

.tooltip.upgrade.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,
.tooltip.upgrade.bs-tooltip-bottom .arrow::before {
    border-bottom-color: #F7A301;
}

/* editor */
#editor {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100%;
    background: #f6f9fe;
    overflow: hidden;
}

#editor .editor__loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

#editor .window-wrapper {
    margin-top: 65px;
    position: relative;
    width: 100%;
    height: calc(100% - 65px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#editor .window {
    position: relative;
    border: 2px solid #e9eff7;
    border-radius: 4px 4px 0 0;
    box-shadow: 0px 6px 17px 2px rgba(53,79,138,0.15);
}

#editor .browser {
    position: relative;
}

body.editor-page #editor .browser {
    /* side menu width is 300px */
    width: calc(81.35vw - 299px);
    height: calc((81.35vw - 300px) / 1.775);
}

#editor .browser-bar {
    display: flex;
    align-items: center;
    height: 1.77vw;
    background: #e9eff7;
    padding: 0 .78vw 0 .63vw;
    border-radius: 4px 4px 0 0;
}

#editor .browser-bar .dot {
    background: #fff;
    border-radius: 100%;
    width: .5vw;
    height: .5vw;
    margin: 0 .25vw;
}

#editor .browser-bar .filler {
    background: #fff;
    border-radius: 10px;
    width: 2.13vw;
    height: .5vw;
}

#editor .browser iframe {
    position: relative;
    z-index: 110;
}

/* dropzone */
.dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    border: .1rem dashed #fff;
    border-radius: .3rem;
    height: 13.9rem;
    margin-top: .5rem;
}

.dropzone:is(.dropzone--background, .dropzone--video-background) {
    border: none;
    background-color: #384452;
    border-radius: 5px;
    height: auto;
    transition: .1s background-color ease-in-out, .1s border-color ease-in-out;
    cursor: pointer;
    border: 1px solid #384452;
    outline: 1px solid transparent;
    min-height: 50px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.dropzone:is(.dropzone--background, .dropzone--video-background):not(.selected):has([data-dz-thumbnail]):hover {
    /* background-color: #647381; */
    border-color: #3461c9;
    outline-color: #3461c9;
}

.dropzone:is(.dropzone--background, .dropzone--video-background):not(.selected):not(:has([data-dz-thumbnail])):hover {
    background-color: #647381;
    border-color: #647381;
}

.dropzone:is(.dropzone--background, .dropzone--video-background).selected {
    border-color: #3461c9;
    outline-color: #3461c9;
    cursor: default;
}

.dropzone:is(.dropzone--background, .dropzone--video-background).selected [data-dz-thumbnail] {
    pointer-events: none;
}

.dropzone:is(.dropzone--background, .dropzone--video-background):hover .dz-message__icon path {
    fill: #fff;
}

/* .dropzone[data-max-size] {
    padding-top: 2.7rem;
} */

.dropzone.dz-started[data-max-size] {
    padding-top: 0;
}

.dropzone button.dz-message {
    cursor: pointer;
    color: #fff;
    display: flex;
    text-align: center;
    vertical-align: middle;
    border: 0;
    background: #3461c9;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 22px;
    border-radius: .4rem;
    padding: 1.2rem 3rem 1rem 3rem;
    outline: none;
}

.dropzone:is(.dropzone--background, .dropzone--video-background) .dz-message {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
}

.dropzone:is(.dropzone--background, .dropzone--video-background) .dz-message > * {
    pointer-events: none;
}

.dropzone:is(.dropzone--background, .dropzone--video-background) .dz-message:hover {
    color: unset;
    background-color: unset;
}

.dropzone:is(.dropzone--background, .dropzone--video-background) .dz-message__icon {
    width: 27px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropzone:is(.dropzone--background, .dropzone--video-background) .dz-message .icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropzone:is(.dropzone--background, .dropzone--video-background) .dz-message__icon path {
    transition: .1s fill ease-in-out;
}

.dropzone:is(.dropzone--background, .dropzone--video-background) .dz-message__text {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: normal;
    text-align: center;
    color: #fff;
}

.dz-clickable:hover {
    color: #3461c9;
    background: #fff;
}

.dropzone.dz-started .dz-message {
    display: none;
}

.dropzone .sub-message {
    color: #808f9d;
    font-size: 1.2rem;
    letter-spacing: .04rem;
    font-weight: 600;
    margin-top: .9rem;
}

.dropzone.dz-started .sub-message {
    display: none;
}

.dropzone:is(.dropzone--background, .dropzone--video-background) .dz-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 135px;
    transition: opacity 0.2s ease;
}

.dropzone:is(.dropzone--background, .dropzone--video-background) .dz-preview + .dz-preview {
    display: none !important;
}

.dropzone:is(.dropzone--background, .dropzone--video-background) .dz-preview .dz-details {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dz-preview.removing {
    opacity: 0;
}

.dropzone:is(.dropzone--background, .dropzone--video-background) .dz-preview .dz-details-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.dropzone:is(.dropzone--background, .dropzone--video-background) .dz-preview .dz-details-image img,
.dropzone .dz-details > img {
    /* max-width: 230px; */
    max-width: 100%;
    max-height: 135px;
    pointer-events: none;
}

.dropzone:is(.dropzone--background, .dropzone--video-background) .dz-preview .dz-details-image img {
    max-height: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.dropzone:is(.dropzone--background, .dropzone--video-background):has(.dz-processing):not(:has(.dz-processing.dz-complete)) {
    pointer-events: none;
    cursor: default;
}

.dropzone:is(.dropzone--background, .dropzone--video-background):has(.dz-processing):not(:has(.dz-processing.dz-complete)):hover {
    border-color: #384452
}

.dropzone:is(.dropzone--background, .dropzone--video-background):has(.dz-processing):not(:has(.dz-processing.dz-complete)) .dz-details__controls {
    pointer-events: all;
}

.dropzone .dz-remove {
    display: none;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 22px;
    height: 22px;
    color: #ffffff;
    font-size: 12px;
    line-height: 100%;
    border-radius: 100%;
    border: 0;
    padding: 0;
}

.dropzone img[src] + .dz-remove {
    display: block;
}

.dropzone .dz-progress {
    display: none;
    height: 5px;
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    background: #28323f;
    border-radius: 5px;
}

#favicon-dropzone .dz-progress:has(.loader) {
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#favicon-dropzone .dz-preview.dz-complete .dz-progress {
    display: none !important;
}

#favicon-dropzone .dz-progress .loader {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#favicon-dropzone .dz-progress .loader svg {
    width: 100%;
    height: 100%;
}

#favicon-dropzone .dz-progress .loader svg circle {
    animation: spin 1s linear infinite;
    transform-origin: 50% 50%;
}

@keyframes spin {
  to {
    transform: rotate(1turn)
  }
}

.dropzone .dz-processing .dz-progress {
    display: block;
}

.dropzone .dz-processing.dz-complete .dz-progress {
    display: none;
}

.dropzone .dz-upload {
    display: block;
    height: 100%;
    background: #3461c9;
    border-radius: 5px;
}

.dz-details__selected-icon {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    display: none;
}

.dropzone:is(.dropzone--background, .dropzone--video-background).selected .dz-details__selected-icon {
    display: flex;
}

.dz-details__controls {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.dz-control {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border: 1px solid #384452;
    background-color: #1A1F26;
    border-radius: 5px;
    cursor: pointer;
    transition: .1s background-color ease-in-out, .1s border-color ease-in-out;
    outline: none;
    padding: 0;
}

.dz-control * {
    pointer-events: none;
}

.dz-control path {
    transition: .1s fill ease-in-out;
}

.dz-control:is(:active, :focus) {
    outline: none;
}

.dz-control:not(:disabled):hover {
    background-color: #212731;
    border-color: #515F6C;
}

.dz-control.dz-control--remove:not(:disabled):hover {
    background-color: color-mix(in srgb, #CB2539 15%, #212731);
    border-color: #CB2539;
}

.dz-control:not(:disabled):hover path {
    fill: #fff;
}

.dz-control.dz-control--remove:not(:disabled):hover path {
    fill: #CB2539;
}

.icon.danger svg ellipse,
.icon.danger svg circle,
.icon.danger svg polygon,
.icon.danger svg rect,
.icon.danger svg path {
    fill: #cb2539;
}

/* modals */

.modal-backdrop.show {
    background-color: #28323f;
    opacity: .7;
}

.modal .modal-dialog {
    max-width: 655px;
    margin-top: 251px;
}

.modal .modal-content {
    border: none;
    border-radius: 8px;
}

.modal h5 {
    color: #273e5d;
    font-weight: 700;
    letter-spacing: .32px;
}

.modal h5 .icon {
    width: 27px;
    height: 27px;
    margin-right: 5px;
}

.modal h5 .icon svg {
  width: 100%;
  height: 100%;
}

.modal .modal-header {
    position: relative;
    border: none;
    padding: 44px 12px 10px 12px;
    justify-content: center;
}

.modal .modal-header button.close > span {
    display: none;
}

.modal .modal-header button.close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    border: 0;
    margin: 0;
    padding: 0;
    opacity: 1;
}

.modal .modal-header button.close svg {
    width: 100%;
    height: 100%;
    fill: #98A1AE;
}

.modal .modal-header button.close svg path {
    transition: .04s all ease;
}

.modal .modal-header button.close:hover svg path {
    fill: #3461c9;
}

.modal .modal-header button.close:not(:disabled):not(.disabled):hover {
    outline: none;
    opacity: 1;
}

.modal .modal-header button.close:not(:disabled):not(.disabled):focus {
    outline: none;
    opacity: 1;
}

.modal .modal-body {
    padding: 13px 30px 16px 30px;
    color: #273e5d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.modal .modal-footer {
    border: none;
    padding: 14px 30px 52px 30px;
    color: #273e5d;
    font-size: 14px;
    justify-content: center;
}

.modal span[data-form-error] {
    width: 100%;
    height: 21px;
    display: block;
    font-size: 13px;
    text-align: center;
}

.modal .modal-footer > * {
    margin: 0;
    letter-spacing: .32px;
    font-weight: 700;
}


.modal .modal-footer > .btn {
    margin: 0 9px;
}

.modal .modal-footer > .step {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.modal .modal-body .icon,
.modal .modal-footer .icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.modal .modal-body .icon svg path,
.modal .modal-footer .icon svg path {
    fill: #3461c9;
}

.modal .btn {
    padding: 13.5px 25px;
    border-radius: 30px;
    background: transparent;
    line-height: 1;
    letter-spacing: .1px;
    text-transform: uppercase;
    min-width: 105px;
    font-size: 15px;
    font-weight: 700;
}

.modal .btn.btn-success {
    height: 44px;
    color: #5dc569;
    position: relative;
    border: 1px solid #5dc569;
}

.modal .btn.btn-success.loading svg {
    top: 7px;
    left: calc(50% - 15px);
}

.modal .btn.btn-success:hover {
    color: #fff;
    background: #5dc569;
}

.modal .btn.btn-success.disabled,
.modal .btn.btn-success:disabled {
    opacity: .6;
    background: #ced5dc;
    color: #fff;
    border: 1px solid #ced5dc;
}

.modal .btn-success:not(:disabled):not(.disabled).active,
.modal .btn-success:not(:disabled):not(.disabled):active,
.modal .show > .btn-success.dropdown-toggle {
    background-color: #5dc569;
    border-color: #5dc569;
}

.modal .link-container .btn.btn-success {
    color: #fff;
    padding-top: 11px;
    padding-bottom: 10px;
}

.modal .btn.btn-secondary {
    color: #3461c9;
    border: 1px solid #3461c9;
}

.modal .btn.btn-secondary:hover {
    color: #fff;
    background: #3461c9;
}

.modal .btn-secondary:not(:disabled):not(.disabled).active,
.modal .btn-secondary:not(:disabled):not(.disabled):active,
.modal .show > .btn-secondary.dropdown-toggle {
    background-color: #3461c9;
    border-color: #3461c9;
}

.modal .btn-success:not(:disabled):not(.disabled).active:focus,
.modal .btn-success:not(:disabled):not(.disabled):active:focus,
.modal .btn-secondary:not(:disabled):not(.disabled).active:focus,
.modal .btn-secondary:not(:disabled):not(.disabled):active:focus,
.modal .show > .btn-success.dropdown-toggle:focus,
.modal .show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: none;
}

/* copy link button */
.link-container{
    position: absolute;
    display: flex;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
}

.link-container .btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
}

.link-container .btn:focus {
    box-shadow: none;
}

.link-container .btn.btn-secondary {
    height: 44px;
    border: 2px solid #3461C9;
    padding: 14px 30px;
}

.link-container .btn.btn-info {
    padding: 0;
    border-radius: .5rem;
    background: none;
    border: 2px solid #3461c9;
    letter-spacing: .5px;
    width: 70px;
    height: 70px;
    justify-content: center;
    min-width: auto;
}

.link-container .btn.btn-info:hover {
    background: #3461c9;
}

.link-container .btn > svg {
    max-width: 28px;
    max-height: 28px;
}

.link-container .btn > svg path {
    fill:#3461c9;
}

.link-container .btn:hover > svg path {
    fill: #fff;
}

div.inputlike {
    width: 288px;
    text-align: center;
    background: #fff;
    border: 2px solid #e9eff7;;
    border-radius: 32px;
    margin-right: 14px;
    line-height: 1;
    padding: 10px 12px 8px 12px;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0;
    color: #273e5d;
    margin-left: auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.upgrade-text {
    color: #fff;
    font-size: 1.2rem;
    margin-left: 2.8rem;
    font-weight: 600;
    letter-spacing: .036rem;
    line-height: 1.25;
    margin-bottom: 2.2rem;
}

.btn.btn-upgrade {
    padding: 1.3rem 1.5rem .9rem 1.5rem;
    color: #fff;
    background: #F7A301;
    border: 2px solid #F7A301;
    border-radius: 32px;
    font-weight: 600;
    min-width: 18.5rem;
    font-size: 1.3rem;
    letter-spacing: .135rem;
}

.btn-upgrade:hover {
    color: #F6B502;
    background: transparent;
    border: 2px solid #F6B502;
    border-radius: 32px;
    font-weight: 600;
}

/* loader overlay layer */
.loader-overlay {
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    z-index: 98;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-overlay > div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.loader-overlay svg {
    width: 2.6vw;
    height: 2.6vw;
}

body.preview-page #main-navigation {
    display: flex !important;
}

.preview-container {
    position: relative;
    width: 100%;
    height: calc(var(--mobile-container-height) - 90px);
}

/* FAVICON */

.info-card-row {
  height: auto !important;
  margin-top: 15px;
}

.favicon-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

#favicon-dropzone {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #353F4D;
  border: none;
  padding: 0;
}
#favicon-dropzone:hover {
  border: 2px solid rgba(52, 97, 201, 1);
  cursor: pointer;
}

#favicon-dropzone .dz-details {
  display: flex;
  align-items: center;
  justify-content: center;
}

#favicon-dropzone .dz-details > img {
  max-width: 26px;
  max-height: 26px;
}

#favicon-dropzone .btn-remove.dz-remove {
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}

#favicon-dropzone .dz-message {
  all: unset;
}

#favicon-dropzone:has(.dz-preview) .dz-message {
    display: none !important;
}

.card-primary-btn {
  border-radius: 5px;
  background-color: #3461c9;
  width: 139px;
  height: 31px;
  font-size: 12px;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
  outline: none;
  border: none;
}

.card-primary-btn:active, .card-primary-btn:focus, .card-primary-btn:visited {
  outline: none;
  border: none;
}

/* END FAVICON */

/* toggle between mobile and desktop preview */
@media only screen and (max-device-width: 1024px) and (orientation: landscape),
only screen and (max-device-width: 640px) and (orientation: portrait),
only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
    body.editor-page #editor {
        background: none !important;
    }

    body.editor-page #menu,
    body.editor-page #editor .link-container,
    body.editor-page #editor .window,
    body.editor-page #editor .window-wrapper,
    body.editor-page #editor iframe,
    #share-modal,
    .modal-backdrop.show {
        display: none !important;
    }

    body.editor-page #container {
        display: flex;
        flex-direction: row;
        height: calc(var(--mobile-container-height) - 90px);
        min-height: 0;
    }

    body.editor-page #editor {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .preview-container {
        height: calc(var(--mobile-container-height) - 50px);
    }

    .loader-overlay svg {
        width: 10vw;
        height: 10vw;
    }
}

.preview-container iframe {
    position: relative;
    z-index: 110;
}

/* background menu options */
.nav-tabs {
    border: 0;
    justify-content: space-between;
    padding: 0 1.4rem;
    gap: 5px;
}

.nav-tabs .nav-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-tabs .nav-item .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid #384452;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: normal;
    color: #647381;
    outline: none;
    padding: 5px;
    transition: .1s color ease-in-out, .1s background-color ease-in-out, .1s border-color ease-in-out;
    position: relative;
}

.nav-tabs .nav-item .nav-link .icon--crown {
    position: absolute;
    margin: 0;
    right: -10px;
    top: -10px;
}

.nav-tabs .nav-item .nav-link .icon--crown svg path {
    fill: #F7A301 !important;
}

.nav-tabs .nav-item .nav-link:not(.active):hover {
    color: #fff;
    background-color: #28323F;
    border-color: #515F6C;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #fff;
    background: #3461c9;
    border-color: #3461c9;
}

.nav-tabs .nav-item .nav-link :not(.icon--crown) svg {
    width: 1.9rem;
    height: 1.9rem;
}

.nav-tabs .nav-item .nav-link :not(.icon--crown) svg :is(path, polygon, rect) {
    fill: #647381;
}

.nav-tabs .nav-item .nav-link:hover svg path,
.nav-tabs .nav-item .nav-link:hover svg polygon,
.nav-tabs .nav-item .nav-link:hover svg rect {
    fill: #fff;
}

.nav-tabs .nav-item.show .nav-link svg path,
.nav-tabs .nav-item .nav-link.active svg path,
.nav-tabs .nav-item.show .nav-link svg polygon,
.nav-tabs .nav-item .nav-link.active svg polygon,
.nav-tabs .nav-item.show .nav-link svg rect,
.nav-tabs .nav-item .nav-link.active svg rect {
    fill: #fff;
}



#filters-container {
  width: 100%;
  margin-bottom: 10px;
}

.filters__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  margin-top: 5px;
}

.filters__item {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 1px solid #384452;
  outline: 1px solid transparent;
  transition: .1s border-color ease-in-out, .1s outline-color ease-in-out;
  position: relative;
}

.filters__item.active, .filters__item:hover {
  border-color: #3461c9;
  outline-color: #3461c9;
}

.filters__item span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
}

.filters__item--all span {
  width: 12px;
  height: 12px;
}

.filters__item--all::after {
  content: '';
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1OTUuMyA4NDEuOSI+PHBhdGggZmlsbD0iIzFhMWYyNiIgZD0iTTM1MC4zLDMzMi44TDM1MC4zLDMzMi44bC01Mi42LDUyLjZMMjQ1LDMzMi44Yy0xMC41LTEwLjUtMjUtMTAuNS0zNS41LDBsMCwwYy0xMC41LDEwLjUtMTAuNSwyNSwwLDM1LjVsNTIuNiw1Mi42bC01Mi42LDUyLjZjLTEwLjUsMTAuNS0xMC41LDI1LDAsMzUuNWMxMC41LDEwLjUsMjUsMTAuNSwzNS41LDBsMCwwbDUyLjYtNTIuNmw1Mi42LDUyLjZjMTAuNSwxMC41LDI1LDEwLjUsMzUuNSwwbDAsMGMxMC41LTEwLjUsOS4yLTI2LjMsMC0zNS41bC01Mi42LTUyLjZsNTIuNi01Mi42YzEwLjUtMTAuNSwxMC41LTI1LDAtMzUuNUMzNzQuNiwzMjIuOSwzNjAuOCwzMjIuMywzNTAuMywzMzIuOHoiLz48L3N2Zz4=');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* :is(#textures-container, #animated-textures-container) + .menu-btn--show-more {
  display: none;
  align-items: center;
  color: #808f9d;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .3px;
  border: none;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  margin-left: auto;
  padding-right: 0;
  margin-top: 5px;
} */

.menu__show-more {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-top: 2px solid #28323F;
    margin: 15px 0;
    position: relative;
}

.menu__show-more::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(26, 31, 38, 0) 0%, #1a1f26 100%);
    width: 100%;
    height: 23px;
    top: -40px;
    user-select: none;
    pointer-events: none;
    transition: .1s opacity ease-in-out, .1s visibility ease-in-out;
}

.menu__show-more .menu__show-more__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #28323F;
    padding: 2px;
    width: 75px;
    border-radius: 0 0 5px 5px;
    cursor: pointer;
    outline: none;
    border: none;
    transition: .075s background ease-in-out;
    margin-top: -2px;
    padding-top: 2px;
}

.menu__show-more .menu__show-more__btn:hover {
    background-color: #39485C;
}

.menu__show-more .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    transform-origin: 50% 50%;
    /* transition: .1s transform ease-in-out; */
    pointer-events: none;
}

:is(#textures-container, #animated-textures-container).can-be-expanded {
  max-height: 350px;
  overflow: hidden;
  transition: .25s max-height ease;
  padding-top: 1px;
  padding-left: 1px;
}

:is(#textures-container, #animated-textures-container).can-be-expanded + .menu__show-more {
  display: flex;
}

:is(#textures-container, #animated-textures-container).can-be-expanded.expanded-full + .menu__show-more {
  display: none;
}

:is(#textures-container, #animated-textures-container).can-be-expanded[aria-expanded="true"] + .menu__show-more .icon {
  transform: rotate(180deg);
}

:is(#textures-container, #animated-textures-container).can-be-expanded[aria-expanded="true"] + .menu__show-more::before {
  opacity: 0;
  visibility: hidden;
}

:is(#textures-container, #animated-textures-container) {
    /* display: flex;
    flex-wrap: wrap; */
    /* justify-content: space-between; */
    margin-top: .5rem;
    gap: 0.8rem .5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

:is(#textures-container, #animated-textures-container) > .texture {
    position: relative;
    background: #384452;
    border: 1px solid #384452;
    border-radius: .5rem;
    cursor: pointer;
    /* width: 7.5rem; */
    /* width: calc(100% / 3 - 4px); */
    height: 4.5rem;
    overflow: hidden;
}

:is(#textures-container, #animated-textures-container) > .texture:hover {
    border-color: #3461c9;
    box-shadow: 0 0 0 1px #3461c9;
}

:is(#textures-container, #animated-textures-container) > .texture.selected {
    border-color: #3461c9;
    box-shadow: 0 0 0 1px #3461c9;
}

:is(#textures-container, #animated-textures-container) > .texture.selected::before {
    position: absolute;
    top: .2rem;
    left: .2rem;
    /* font-family: "Font Awesome 5 Free"; */
    content: ""; /* \f058 */
    color: #3461c9;
    font-size: 1.0rem;
    font-weight: 600;
    pointer-events: none;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iOCIgZmlsbD0iI0Q5RDlEOSIvPgo8cGF0aCBkPSJNMTIgMkM2LjUgMiAyIDYuNSAyIDEyQzIgMTcuNSA2LjUgMjIgMTIgMjJDMTcuNSAyMiAyMiAxNy41IDIyIDEyQzIyIDYuNSAxNy41IDIgMTIgMlpNMTAgMTdMNSAxMkw2LjQxIDEwLjU5TDEwIDE0LjE3TDE3LjU5IDYuNThMMTkgOEwxMCAxN1oiIGZpbGw9IiMzNDYxQzkiLz4KPC9zdmc+Cg==");
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
}

:is(#textures-container, #animated-textures-container) > .texture > img[src=""] {
    visibility: hidden;
}

:is(#textures-container, #animated-textures-container) > .texture > img:not(.icon) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .5rem;
    pointer-events: none;
}

:is(#textures-container, #animated-textures-container) > .texture > img:not(.icon):hover {
    cursor: pointer;
}

:is(#textures-container, #animated-textures-container) > .card__textures__error {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: auto;
  min-height: 135px;
}

:is(#textures-container, #animated-textures-container) >  .card__textures__error span {
  color: #808f9d;
  font-weight: 700;
  font-size: 12px;
  display: block;
  letter-spacing: 0.5px;
  text-align: center;
}

#animated-textures-container > .texture > .icon {
  position: absolute;
  width: 11px;
  height: 11px;
  top: 4px;
  right: 2px;
  pointer-events: none;
  object-fit: contain;
  border-radius: 0;
  z-index: 3;
}

#animated-textures-container > .texture::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  background: rgb(0,0,0);
  background: linear-gradient(230deg, rgba(0,0,0,.3) 0%, rgba(255,255,255,0) 53%);
  height: 30px;
  width: 30px;
}

#logo {
    max-width: 100px;
}

hr.separator {
    width: 100%;
    height: 2px;
    background: #354151;
    margin: 21px 0;
}

#settings-lead-capture hr.separator {
    background: #2c343f;
    margin: 7px 0 12px 0;
}

#modal-loginregister .modal-content {
    background: linear-gradient(to right, #f6f9fe 50%, #ffffff 50%);
}

#modal-loginregister.modal-dialog {
    max-width: 1000px !important;
    margin: 1.75rem auto;
}

#modal-loginregister h1 {
    font-weight: 900;
    color: #273e5d;
    font-size: 3.6rem;
    letter-spacing: .05rem;
    margin-bottom: 3.5rem;
    margin-left: 2rem;
}

#modal-loginregister h2 {
    font-weight: 600;
    font-size: 1.8rem;
    color: #273e5d;
    letter-spacing: .045rem;
    margin-bottom: 7rem;
    margin-left: 2rem;
    margin-right: 5rem;
}

#modal-loginregister .form-wrapper{
       width: 80%;
       margin: auto;
    /*margin-left: 5%;*/
}
#modal-loginregister .row{
    width: 100%;
}

#modal-loginregister label:not(.custom-control-label) {
    font-size: 1.8rem;
    letter-spacing: 0.03rem;
    margin: 1rem 0.2rem .7rem 2rem;
    color: #273e5d;
    font-weight: 600;
}

#modal-loginregister .form-group {
    margin-bottom: 2rem;
}
#modal-loginregister .form-control {
    padding: .8rem 2.3rem .8rem 2.3rem;
    font-size: 1.8rem;
    letter-spacing: .03rem;
    line-height: 1;
    min-height: 4.7rem;
    font-weight: 600;
    border-radius: 32px;
    border: 2px solid #d9dfe8;
}

#modal-loginregister input::placeholder {
    color: #acb8c3;
    text-align: left;
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 0.03rem;
    font-weight: var(--font-weight-semi-bold);
}

#modal-loginregister input::-ms-input-placeholder {
    color: #acb8c3;
    text-align: left;
    /*text-transform: uppercase;*/
    font-weight: 400;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
}

#modal-loginregister .custom-control-inline {
    margin-top: .9rem;
    margin-bottom: 2.6rem;
    margin-left: .2rem;
    padding-left: 1.9rem;
}

#modal-loginregister .form-control + span:empty {
    display: none;
}

#modal-loginregister .custom-control-label {
    position: static;
    font-size: 1.8rem;
    letter-spacing: .05rem;
    font-weight: 600;
    margin-left: 1rem;
}

#modal-loginregister .custom-checkbox .custom-control-label::before {
    top: .2rem;
    left: 0;
    border-color: #dbdfe6;
    border-radius: 5px;
    border-width: 2px;
    background-color: #fff;
    width: 1.75rem;
    height: 1.75rem;
}

#modal-loginregister .custom-checkbox .custom-control-label::after {
    top: .2rem;
    left: 0;
    width: 1.85rem;
    height: 1.85rem;
}

#modal-loginregister .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='%233461c9' 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");
}

#modal-loginregister .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #fff;
}

#modal-loginregister .custom-checkbox .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    background: #fff;
}

#modal-loginregister .was-validated .custom-control-input:valid ~ .custom-control-label::before,
#modal-loginregister .custom-control-input.is-valid:checked ~ .custom-control-label::before,
#modal-loginregister .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before {
    background-color: transparent !important;
}

#modal-loginregister .was-validated .custom-control-input:valid ~ .custom-control-label::before,
#modal-loginregister .custom-control-input.is-valid:checked ~ .custom-control-label::before,
#modal-loginregister .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before {
    background-color: #fff !important;
}

#modal-loginregister .spacer {
    padding: 30px 0;
}

#modal-loginregister .btn.btn-public {
    position: relative;
    padding: 1.4rem 1.5rem 1.2rem 1.5rem;
    line-height: 1;
    min-width: auto;
    font-size: 1.5rem;
    width: 100%;
    letter-spacing: 0.05rem;
    border-radius: 32px;
    background: #3461c9;
    border: 2px solid #3461c9;
    font-weight: 600;
    text-transform: uppercase;
    height: 4.5rem;
    color: #fff;
}

#modal-loginregister .btn.btn-public {
    margin-top: 0rem;
}

#modal-loginregister .btn.btn-public:hover {
    background: #fff;
    color: #3461c9;
}

body.public-page .btn.btn-public > .loader-overlay {
    display: none;
    border-radius: 32px;
}

#modal-loginregister .btn.btn-public > .loader-overlay > svg {
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: auto;
}

#modal-loginregister .sub-links {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .02rem;
    line-height: 2.3rem;
    color: #273e5d;
    margin-top: 20px;
    margin-bottom: 10px;
}

#modal-loginregister .modal-footer {
    border: none;
    padding: 0px;
    color: #273e5d;
    font-size: 14px;
    justify-content: center;
}


#modal-loginregister .sub-links a {
    margin: 0 .4rem;
    color: #3461c9;
}

#modal-loginregister .sub-links a:hover {
    text-decoration: none;
    color: #3461c9;
}

#modal-loginregister .btn.btn-public > .loader-overlay {
    display: none;
    border-radius: 32px;
}

#modal-loginregister .loader-overlay {
    position: absolute;
    background: #fff;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
    display: flex;
    justify-content: center;
    align-items: center;
}

#share-modal .modal-dialog {
    max-width: 1110px;
    margin-top: 1.75rem;
}

#share-modal .modal-content {
    border-radius: 1rem;
}

#share-modal .modal-header {
    padding: 29px 35px 0 50px;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    align-items: center;
}

#share-modal .modal-header .modal-title-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 25px;
}

#share-modal .modal-header button.close svg {
    fill: #99A7BC;
}

#share-modal .modal-header h5 {
    font-size: 20px;
    font-weight: 700;
    color: #273e5d;
    letter-spacing: .2px;
}

#share-modal .modal-header h5 .icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
}

#share-modal .modal-header h5 .icon circle,
#share-modal .modal-header h5 .icon line {
    stroke: #3461c9;
}

#share-modal .modal-body {
    padding: 0;
    min-height: 286px;
    align-items: stretch;
}

#share-modal .modal-body,
#share-modal .modal-footer {
    background: #f6f9fe;
    color: #273e5d;
    font-size: 1.9rem;
    letter-spacing: .09rem;
    font-weight: 700;
}

#share-modal .modal-body #myTabContent {
    margin: 40px 50px 0 50px;
}

#share-modal .modal-body #myTabContent #share-embed,
#share-modal .modal-body #myTabContent #share-social {
    border: none;
    background-color: transparent;
}

#share-modal .modal-body #myTabContent #share-social {
    width: 100%;
}

#share-modal .modal-body #myTabContent .backdrop-container {
    min-height: 248px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #EAEFF3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#share-modal .modal-body #myTabContent #share-social .link-container-wrapper {
    display: flex;
    gap: 30px;
    flex: 1;
}

#share-modal .modal-body #myTabContent #share-social .link-container {
    display: flex;
    flex: 1;
    min-height: 246px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #EAEFF3;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px 60px 50px;
    flex-direction: column;
}

#share-modal .modal-body #myTabContent #share-social .title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.16px;
}

#share-modal .modal-body #myTabContent #share-social .title button {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    height: 28px;
    padding: 5px 12px 5px 10px;
    border: 1px solid #3461C9;
}

#share-modal .modal-body #myTabContent #share-social .title button svg {
    position: relative;
    left: -1px;
}

#share-modal .modal-body #myTabContent #share-social .title button svg path {
    transition: fill .15s ease-in-out;
}

#share-modal .modal-body #myTabContent #share-social .title button:hover svg path {
    fill: #fff;
}

#share-modal .modal-body #myTabContent #share-social .preview-image {
    padding-top: 52.36%;
    position: relative;
}

#share-modal .modal-body #myTabContent #share-social .social-preview-facebook {
    width: 100%;
    border: 1px solid #d3d3d3;
    margin-top: -.5px;
    pointer-events: none;
    user-select: none;
}

#share-modal .modal-body #myTabContent #share-social .social-preview-facebook__caption {
    display: grid;
    padding: 8px 7px;
    background-color: #f2f3f5;
    font-family: 'Helvetica Neue', Helvetica, Arial;
    font-weight: 400;
}

#share-modal .modal-body #myTabContent #share-social .social-preview-facebook__url {
    width: 100%;
    margin: 0;
    color: #606770;
    text-transform: uppercase;
    font-size: 7px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: normal;
    letter-spacing: .015rem;
    margin-bottom: 2px;
}

#share-modal .modal-body #myTabContent #share-social .social-preview-facebook__title {
    font-weight: bold;
    font-size: 10px;
    color: #1d2129;
    margin-bottom: 2px;
    letter-spacing: 0;
}

#share-modal .modal-body #myTabContent #share-social .social-preview-facebook__description {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #606770;
    font-size: 8px;
    font-weight: 700;
    word-break: break-word;
    letter-spacing: .002rem;
    line-height: normal;
}

#share-modal .modal-body #myTabContent #share-social .preview-image__inner {
    position: absolute;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
}

#share-modal .modal-body #myTabContent #share-social .links-columns {
    width: 100%;
    display: flex;
    gap: 9px;
    align-items: center;
    justify-content: space-between;
    margin-top: 2px;
}

#share-modal .modal-body #myTabContent #share-social .links-rows {
    display: flex;
    gap: 10px;
    align-items: stretch;
    flex-direction: column;
    flex: 1;
}

#share-modal .modal-body #myTabContent #share-social .links-rows a {
    width: 100%;
    border: 1px solid #EAEFF3;
    border-radius: 5px;
    background: #fff;
    color: #273e5d;
    text-decoration: none;
    transition: background .2s ease;
    display: flex;
    height: 52px;
    padding: 12px 0 12px 15px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.48px;
}

#share-modal .modal-body #myTabContent #share-social .links-rows a:hover {
    background: #dfe2e8;
}

#share-modal .modal-body #myTabContent #share-social .links-rows a img {
    width: 28px;
    height: 28px;
    aspect-ratio: 1/1;
}

#share-modal .modal-body #myTabContent #share-social .links-rows a span {
    flex: 1;
    color: #273E5D;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12px;
}

#share-modal .modal-footer {
    padding: 0 30px 50px 30px;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

#share-modal .input-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

#share-modal div.inputlike {
    display: flex;
    width: auto;
    min-width: 345px;
    max-width: 600px;
    height: 44px;
    padding: 12px 23px;
    align-items: center;
    gap: 10px;
    border-radius: 24px;
    border: 1px solid #B3C0D3;
    background: #F6F9FE;
    margin: 0;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.48px;
}

#share-modal div.inputlike:has(+ .noticed) {
    justify-content: center;
}

#share-modal .link-container {
    align-items: center;
    gap: 20px;
    position: static;
    transform: none;
}

#share-modal #share-social .link-container {
    gap: 20px;
}

#share-modal #share-email .link-container {
    gap: 120px;
}

#share-modal span.description {
    font-size: 16px;
    letter-spacing: 0.16px;
    line-height: normal;
}

#share-modal .share-qrcode__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

#myTab {
    border: none;
    position: relative;
    padding: 0 .7rem;
}

#myTab[data-initialized] .tab__indicator {
    display: none;
}

#myTab .nav-item {
    position: relative;
}

.nav-tabs .tab__indicator {
    position: absolute;
    top: 98%;
    height: 2px;
    width: 140px;
    left: 50px;
    background-color: #3461c9;
    z-index: 100;
}

.nav-tabs[data-initialized="false"] .tab__indicator {
    transition: none;
    display: none;
}

#share-modal .nav-link {
    width: auto;
    position: relative;
    color: #273E5D;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.14px;
    text-transform: uppercase;
    border: 0;
    height: 64px;
    display: flex;
    align-items: center;
    padding: 22px 25px;
    transition: .1s color ease, .1s background ease;
    flex-shrink: 0;
}

#share-modal .nav-link:hover,
#share-modal .nav-link.active {
    background: #fff;
    color: #3461c9;
}

#share-modal #share-link .btn.btn-secondary {
    width: 145px;
    height: 44px;
    padding: 14px 30px;
    letter-spacing: 0.16px;
    justify-content: center;
    font-size: 1.6rem;
}

#thumbnail-dropzone {
    width: auto;
    height: auto;
    border: none;
    margin: 0;
    padding: 0;
}

#thumbnail-dropzone .dz-message {
    display: none;
}

#thumbnail-dropzone-error {
    width: 100%;
    display: none;
    color: #cb253d;
    font-size: 14px;
    text-align: right;
}

#thumbnail-dropzone-error .icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    position: relative;
    float: right;
    top: -20px;
    right: 25px;
}

#thumbnail-dropzone-error .icon svg {
    width: 80px;
}

#thumbnail-dropzone-error .icon svg .background {
    fill: #cb253d;
}

#thumbnail-dropzone-error .icon svg .symbol {
    fill: #fff;
}

#share-modal .nav-link svg {
    width: 100%;
    height: 100%;
    max-width: 20px;
    max-height: 20px;
}

#share-modal .nav-link .icon {
    margin-right: 1rem;
}

#share-modal .nav-link svg path {
    fill: #3461c9;
}

#share-modal .nav-link:hover svg path,
#share-modal .nav-link.active svg path {
    fill: #fff;
}

#share-modal .nav-link.disabled {
  color: #dddddd !important;
  pointer-events: none;
  cursor: default;
  border-color: #dddddd;
}

#share-modal .nav-link.disabled svg path {
  fill: #dddddd;
}

#share-modal #share-qrcode .share-qrcode__wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 33px 71px;
  gap: 80px;
}

#share-modal #share-qrcode .share-qrcode__wrapper img {
  width: 180px;
  height: 180px;
}

#share-modal #share-qrcode .share-qrcode__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

#share-modal #share-qrcode .share-qrcode__status {
  font-size: 16px;
  margin-top: 10px;
  display: none;
  position: absolute;
  bottom: -23px;
  left: 50%;
  transform: translateX(-50%);
}

#share-modal #share-qrcode #share-qrcode__input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}

#share-modal #share-qrcode .share-qrcode__controls {
  display: flex;
  align-items: center;
  gap: 15px;
  align-self: stretch;
}

#share-modal .btn.btn-secondary {
    color: #3461c9;
    display: flex;
    width: max-content;
    height: 44px;
    padding: 14px 18px;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    letter-spacing: 0.14px;
    border-radius: 100px;
    border: 2px solid #3461C9;
    background: #FFF;
}

#share-modal .btn.btn-secondary:hover {
    color: #fff;
    background: #3461c9;
}

#share-modal .btn.btn-secondary .icon {
    width: 22px;
    height: 22px;
    margin-right: 0;
}

#share-modal .btn.btn-secondary svg line,
#share-modal .btn.btn-secondary svg polyline {
    stroke: #3461c9;
    transition: .15s stroke ease-in-out;
}

#share-modal .btn.btn-secondary:hover svg line,
#share-modal .btn.btn-secondary:hover svg polyline {
    stroke: #fff;
}

#share-modal .btn.btn-secondary svg path {
    fill: #3461c9;
    transition: .15s fill ease-in-out;
}

#share-modal .btn.btn-secondary:hover svg path {
    fill: #fff;
}

#share-modal .btn.btn-secondary:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(10%) saturate(7436%) hue-rotate(273deg) brightness(115%) contrast(111%);
}

.privacy-dropdown-toggle button.privacy {
    display: flex;
    width: auto;
    height: 28px;
    width: 98px;
    min-width: 94px;
    padding: 5px 12px 5px 8px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #3461C9;
    border-radius: 100px;
    border: 1px solid #3461C9;
    text-transform: none;
}

.privacy-dropdown-toggle button.privacy:hover,
.privacy-dropdown-toggle .dropdown.show button.privacy {
    background: #DEE4EA;
}

.privacy-dropdown-toggle button.privacy img.svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background-color: #3461C9;
}

.privacy-dropdown-toggle button.privacy.public img.svg {
    mask: url(../img/svg/earth.svg) center center / 100% 100% no-repeat;
}

.privacy-dropdown-toggle button.privacy.unlisted img.svg {
    mask: url(../img/svg/unlisted.svg) center center / 100% 100% no-repeat;
}

.privacy-dropdown-toggle button.privacy span {
    display: flex;
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.dropdown.privacy-dropdown-toggle .dropdown-menu {
    width: 240px;
    height: 191px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 10px;
    border: none;
    left: 147px !important;
    top: 10px !important;
    color: #213B62;
}

.dropdown.privacy-dropdown-toggle .dropdown-toggle::after {
    content: none;
}

.dropdown.privacy-dropdown-toggle .dropdown-menu .dropdown-menu-header {
    width: 240px;
    height: 58px;
}

.dropdown.privacy-dropdown-toggle .dropdown-menu .dropdown-menu-header .svg {
    position: absolute;
    left: 14px;
    width: 19px;
    height: 19px;
    margin-right: 10px;
    background-color: #273E5D;
    mask: url(../img/svg/flipbookeditor/privacy_3.svg) center center / 100% 100% no-repeat;
}

.dropdown.privacy-dropdown-toggle .dropdown-menu button {
    position: relative;
    width: 240px;
    height: 56px;
    padding-top: 9px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #808F9D;
    outline: none;
}

.dropdown.privacy-dropdown-toggle .dropdown-menu button.active:not(.disabled) {
    color: inherit;
    background-color: inherit;
}

.dropdown.privacy-dropdown-toggle .dropdown-menu button.disabled {
    pointer-events: auto;
    cursor: not-allowed;
}

.dropdown.privacy-dropdown-toggle .dropdown-menu button:hover:not(.disabled),
.dropdown.privacy-dropdown-toggle .dropdown-menu button:active:not(.disabled),
.dropdown.privacy-dropdown-toggle .dropdown-menu button:active:hover:not(.disabled) {
    background: #EAEFF3;
}

.dropdown.privacy-dropdown-toggle .dropdown-menu button::before {
    display: inline-block;
    position: absolute;
    top: 21px;
    left: 20px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #647381;
    content: '';
}

.dropdown.privacy-dropdown-toggle .dropdown-menu button.active::before {
    border: 2px solid #3461C9;
}

.dropdown.privacy-dropdown-toggle .dropdown-menu button.active::after {
    display: inline-block;
    position: absolute;
    width: 7px;
    height: 7px;
    top: 25px;
    left: 24px;
    border-radius: 50%;
    background-color: #3461C9;
    content: '';
}

.dropdown.privacy-dropdown-toggle .dropdown-menu button p {
    font-size: 12px;
}

.dropdown.privacy-dropdown-toggle .dropdown-menu button .icon-end svg {
    width: 24px;
    height: 24px;
    margin-top: -3px;
    filter: brightness(0) saturate(100%) invert(89%) sepia(7%) saturate(799%) hue-rotate(183deg) brightness(87%) contrast(89%);
}

.dropdown.privacy-dropdown-toggle .dropdown-menu button .icon-end svg:hover {
    filter: none;
}

.dropdown.privacy-dropdown-toggle .dropdown-menu button .icon-end svg:hover path {
    fill: var(--primary-color);
}

.tooltip.privacy.info .tooltip-inner {
    max-width: none;
}

.dropdown.privacy-dropdown-toggle .dropdown-menu button,
.dropdown.privacy-dropdown-toggle .dropdown-menu .dropdown-menu-header p {
    padding-left: 51px;
}

.dropdown.privacy-dropdown-toggle .dropdown-menu .dropdown-divider {
    margin: 0;
    border-top: 1px solid #E1E8F0;
}

.dropdown.privacy-dropdown-toggle .dropdown-menu .dropdown-item-title {
    font-size: 15px;
    font-weight: 600;
    margin-top: 6px;
    margin-bottom: 5px;
}

.dropdown.privacy-dropdown-toggle .dropdown-menu .dropdown-item-description {
    font-size: 12px;
    font-weight: 700;
    color: #808F9D;
}

#share-modal #share-email .btn.btn-secondary {
    gap: 10px;
}

#share-modal #share-email .btn.btn-secondary {
    gap: 10px;
}

#canvawelcome-modal .modal-dialog {
    width: 815px;
    max-width: 815px;
    height: 400px;
/*    padding: 25px;
    padding-left: 40px;
    padding-right: 40px;*/

/*    background-color: white;
   border-radius: 7px;
    box-shadow: 0 0 10px rgb(40 50 60 / 70%);


    margin: auto;
    position: relative;
*/
}
#canvawelcome-modal .modal-content{
    height: 100%;
    font-weight: 500;

}


#canvawelcome-modal .modal-content .modal-body{
    font-weight: 500;
}


#canvawelcome-modal .modal-header{
   padding-top: 20px;

}

#canvawelcome-modal .canva-header {
    height: 70px;
    line-height: 70px;
    width: 100%;
    float: left;
    font-size: 2.7rem;
    font-weight: 600;
    color: #273e5d;
/*    padding-left: 30px;
    padding-right: 30px;*/
}

#canvawelcome-modal .row{
    width: 100%;
    padding: 0px 20px;
}

#canvawelcome-modal .canva-header svg {
    pointer-events: none;
    height: 65px;
    float: right;
    width: 155px;
}

#canvawelcome-modal .canva-icons-container {
    float: left;
    width: 100%;
    height: 110px;
    padding: 29px;
    padding-left: 0px;
    padding-bottom: 0px;
}

#canvawelcome-modal .canva-icons-container p.alert {
    background-color: red;
    font-size: 110%;
    width: 605px;
    height: 85px;
    line-height: 85px;
    background-color: #f6f9fe;
    border-radius: 5px;
    font-weight: 700;
    padding: 0px;
    letter-spacing: 0.5px;
}

#canvawelcome-modal .canva-icons-container svg {
    height: 30px;
    width: 30px;
    margin: 27px;
    margin-left: 40px;
    margin-right: 15px;
    float: left;
}
#canvawelcome-modal .canva-icons-container p {
    margin: 0px 0px;
    line-height: 22px;
    font-size: 105%;
}

#canvawelcome-modal a {
    color: #3461c9;
}

/* EMBED VIEW */

#share-embed h1 {
    display: none;
    margin: 0;
    font-size: 19px;
    font-weight: 900;
    margin-left: 5.85%;
    margin-right: 3px;
    letter-spacing: .75px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#share-embed h2 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .5px;
    margin: 43px 0 18px 0;
}

#share-embed h2:first-child {
    margin-top: 6px;
}

/* tabs */
#share-embed #editor-navbar {
    display: flex;
}

#share-embed .tab-header {
    max-width: 1098px;
    min-width: 975px;
    align-items: center;
}

#share-embed .nav-tabs {
    border: 0;
    position: relative;
    z-index: 40;
    flex-shrink: 0;
    padding: 0;
}

/* hide bottom box-shadows by covering them */
#share-embed .nav-tabs::after {
    content: '';
    position: absolute;
    z-index: 50;
    right: -15px;
    bottom: -15px;
    left: 0;
    height: 15px;
    background: #fff;
}

#share-embed .nav-tabs .nav-item {
    margin-bottom: 0;
}

#share-embed .nav-tabs .nav-link {
    margin: 0;
    position: relative;
    z-index: 20;
    background: transparent;
    color: #acb8c3;
    font-weight: 900;
    font-size: 17px;
    letter-spacing: 1.25px;
    border: 0;
    border-bottom: 2px solid transparent;
    box-shadow: 0px 0px 9px 9px rgba(53, 79, 138, .06);
    width: 181px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px 11px 0 0;
}

#share-embed .nav-tabs .nav-link:hover {
    border-bottom-color: transparent;
}

#share-embed .nav-tabs .nav-link:focus,
#share-embed .nav-tabs .nav-link:hover {
    border-color: #e9eff7;
}

#share-embed .nav-tabs .nav-link.active {
    z-index: 30;
    background: #fff;
    color: #273e5d;
    border-bottom-color: #e9eff7;
}

#share-embed .nav-tabs .nav-link.active:hover {
    border-bottom-color: #e9eff7;
}

#share-embed .tab-content {
    position: relative;
    z-index: 10;
    background: #fff;
    box-shadow: 0px 0px 9px 9px rgba(53, 79, 138, .06);
    max-width: 1098px;
    min-width: 975px;
    margin: 0 auto;
    border-radius: 0 11px 11px 11px;
    padding: 18px 41px;
    font-size: 14px;
}

#share-embed .tab-content > .active {
    display: flex;
}

/* forms */
#share-embed .form-control {
    color: #273e5d;
}

#share-embed .form-control:focus {
    color: #273e5d;
    box-shadow: none;
    border-color: transparent;
}

#share-embed .custom-control {
    min-height: 24px;
}

#share-embed .custom-control-input {
    width: 16px;
    height: 20px;
    font-size: 14px;
}

#share-embed .imitate-input {
    background: #fff;
    white-space: nowrap;
    overflow: hidden;
    border: 2px solid #e9eff7;
    border-radius: 50px;
    width: 299px;
    padding: 8px 21px;
    line-height: 16px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .75px;
    text-overflow: ellipsis;
    margin: 0 14px 0 16px;
    text-align: center;
}

#share-embed .form-control {
    background: #f6f9fe;
    border: 0;
    width: 91px;
}

#share-embed .custom-control-label {
    font-weight: 700;
}

/* - turn off defaults */
#share-embed .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: none;
}

#share-embed .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    background: none;
}

/* - change colors */
#share-embed .custom-switch .custom-control-label::before,
#share-embed .custom-switch .custom-control-label::after {
    cursor: pointer;
}

#share-embed .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border: 2px solid #acb8c3;
}

#share-embed .custom-control-input:checked ~ .custom-control-label::before {
    background-color: transparent;
    border: 2px solid #3461c9;
}

#share-embed .custom-switch .custom-control-label::before {
    border: 2px solid #acb8c3;
    background: none;
}

#share-embed .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    border-color: #3461c9;
}

#share-embed .custom-control-input:not(:disabled):active:checked ~ .custom-control-label::before {
    border-color: #3461c9;
}

#share-embed .custom-control-input:focus:checked ~ .custom-control-label::before {
    border: 2px solid #3461c9;
}

#share-embed .custom-switch .custom-control-label::after {
    background-color: #acb8c3;
}

#share-embed .custom-switch .custom-control-input:not(:disabled):active ~ .custom-control-label::after {
    background-color: #3461c9;
}

#share-embed .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    background-color: #3461c9;
}

/* - change fonts, positioning and display */
#share-embed .custom-switch {
    padding-left: 29px;
    margin-top: 14px;
}

#share-embed h2 + div > .custom-switch {
    margin-top: 8px;
}

#share-embed .custom-switch .custom-control-label {
    display: flex;
    font-weight: 700;
    align-items: center;
    letter-spacing: 0;
    line-height: 19px;
}

/* - change dimensions */
#share-embed .custom-switch .custom-control-label::before {
    width: 23px;
    top: 2px;
    left: -29px;
    height: 16px;
    border-radius: 8px;
}

#share-embed .custom-switch .custom-control-label::after {
    width: 8px;
    height: 8px;
    top: 6px;
    left: -25px;
    border-radius: 8px;
}

#share-embed .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    transform: translateX(7px);
}

#share-embed .custom-select {
    font-size: 14px;
    color: #273e5d;
    border: 0;
    cursor: pointer;
    height: 36px;
    background: #f6f9fe url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 841.9 595.3'%3e%3cpath fill='%23343a40' d='M551.6,208.6l-0.1,0.1L421.2,327.4L290.1,210.6l-0.2-0.1c-7-4.3-15-5.8-22.6-4.2c-7.8,1.6-14.4,6.3-18.7,13.3c-3.3,5.3-5,11.1-5,16.9c0,8.6,3.9,16.7,10.8,22.2l0.1,0.1L398.8,385c11.8,8.6,29,8.6,42.7,0.2l0.1-0.1l144.2-126.3c8-5.1,12.5-13.5,12.5-23.7c0-4.8-2.1-9.8-3.9-14.2c-0.4-0.9-0.7-1.7-1.1-2.6l-0.2-0.4l-0.2-0.4c-4.3-7-10.9-11.7-18.7-13.3C566.6,202.8,558.6,204.3,551.6,208.6z'/%3e%3c/svg%3e") right 7px center/28px 28px no-repeat;
}

#share-embed .custom-select:focus {
    box-shadow: none;
}

#share-embed .custom-select-wrapper {
    width: 122px;
    margin: 4px 0 0 16px;
}

#share-embed .custom-radio .custom-control-label::before {
    top: 2px;
    left: -24px;
    width: 16px;
    height: 16px;
    border: 2px solid #3461c9;
    transition: none;
}

#share-embed .custom-radio .custom-control-label::after {
    top: 2px;
    left: -24px;
    width: 16px;
    height: 16px;
}

#share-embed .custom-radio .custom-control-input ~ .custom-control-label {
    color: #273e5d;
    letter-spacing: .5px;
}

#share-embed .custom-radio .custom-control-input:checked ~ .custom-control-label {
    color: #273e5d;
}

#share-embed .custom-radio .custom-control-input ~ .custom-control-label::after {
    background-image: none;
}

#share-embed .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='-4 -4 8 8'%3e%3ccircle r='4' fill='%233461c9'/%3e%3c/svg%3e");
}

#share-embed .custom-radio.custom-control-inline {
    margin-right: 42px;
    padding-left: 24px;
    min-height: 24px;
    margin-top: 6px;
}

#share-embed .custom-radio.custom-control-inline:last-child {
    margin-right: 0;
}

/* buttons */
#share-embed .btn-custom {
    background: #3461c9;
    color: #fff;
    text-transform: uppercase;
    border-radius: 30px;
    padding: 8px 24px;
    line-height: 1.25;
    font-size: 14px;
    border: 2px solid transparent;
    transition: .1s border ease, .1s background ease, .1s color ease;
}

#share-embed .btn-custom:hover {
  border-color: #5dc569;
  background-color: #fff;
  color: #5dc569;
}

/* menu */
#share-embed .menu {
    width: 320px;
    flex-shrink: 0;
}

#share-embed .size-cell {
    width: 129px;
    font-weight: 700;
    align-items: center;
}

#share-embed .size-cell > .form-control {
    margin: 4px 0;
    text-align: center;
    line-height: 30px;
    font-weight: 700;
    height: auto;
    padding: 3px 5px;
    font-size: 14px;
}

#share-embed .size-cell > .form-control.disabled,
#share-embed .size-cell > .form-control:disabled {
    color: #acb8c3;
    background: #f6f9fe;
}

#share-embed .size-cell > .form-control:focus {
    background: #f6f9fe;
}

#share-embed .size-cell > span {
    margin: 0 auto;
    letter-spacing: .5px;
}

#share-embed .size-cell > .times {
    font-size: 18px;
}

#share-embed .page-cell {
    font-weight: 700;
}

/* preview */
#share-embed .preview {
    width: 100%;
}

#share-embed .display {
    width: 100%;
}

#share-embed .display > iframe {
    display: block;
    margin: 0 auto;
    border-radius: 5px;
    border: 0;
}

#share-embed .window .responsive {
    width: 100% !important;
}

#share-embed .browser > .window {
    padding: 0 24px 0 24px;
}

#share-embed #button-preview-container.display {
    display: flex;
    justify-content: center;
}

#share-embed #button-preview-container.display a {
    position: relative;
    transition: all .1s ease-in-out;
}

#share-embed #button-preview-container.display a:hover {
    transform: scale(1.02);
}

/* this needs to be replicated in embed-editor.js generateCode function */
#share-embed #button-preview-container.display .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,1) 100%);
}

/* this needs to be replicated in embed-editor.js generateCode function */
#share-embed #button-preview-container.display svg {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 72px;
    height: 45px;
}

body.editor-page #share-embed .browser {
    display: flex;
    flex-direction: column;
    width: 610px;
    height: 509px;
}

#share-embed .browser > .title-bar {
    display: flex;
    align-items: center;
    background: #e9eff7;
    border-radius: 5px 5px 0 0;
    color: #b5c0cb;
    padding: 5px 16px 4px 14px;
    font-size: 16px;
    letter-spacing: .25px;
    font-weight: bold;
}

#share-embed .browser > .title-bar > .dot {
    border-radius: 100%;
    width: 9px;
    height: 9px;
    background: #fff;
    margin: 0 2px;
}

#share-embed .browser > .window {
    border: 2px solid #f6f9fe;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
    height: 100%;
}

#share-embed #button-window.window {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#share-embed .browser > .window > .artifacts-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px auto 10px auto;
}

#share-embed .browser > .window > .artifacts-bottom {
    display: flex;
    align-items: flex-start;
    margin: 20px auto 0 auto;
}

#share-embed .window > .artifacts-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin: 15px auto 10px auto;
    width: 90%;
}

#share-embed .window > .artifacts-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin: 15px auto 10px auto;
}

#share-embed .browser > .window > .artifacts-bottom > div > div {
    flex-grow: 1;
    flex-shrink: 1;
}

#share-embed .browser .bar {
    border-radius: 5px;
    width: 60px;
    height: 15px;
    background: #e9eff7;
}

#share-embed .browser .circle {
    border-radius: 100%;
    width: 15px;
    height: 15px;
    background: #e9eff7;
}

#share-embed .browser .big-bar {
    border-radius: 5px;
    width: 100%;
    max-width: 272px;
    height: 124px;
    background: #e9eff7;
}

#share-embed .browser .wide-bar {
    border-radius: 5px;
    width: 100%;
    height: 28px;
    background: #e9eff7;
    margin-bottom: 20px;
}

#share-embed .browser .wide-bar:last-child {
    margin-bottom: 0;
}

#share-embed .browser .wide-bar.big {
    width: 90%;
}

#share-embed .browser .wide-bar.shorter {
    width: 75%;
}

#share-embed .browser .wide-bar.half {
    width: 50%;
}

#share-embed .browser .wide-bar.short {
    width: 29%;
}

.mb-20px {
    margin-bottom: 20px !important;
}

#share-embed .browser .small-col {
    width: 39% !important;
    flex-shrink: 1;
    flex-grow: 1;
}

#share-embed .browser .filler-col {
    width: 6.5% !important;
    flex-shrink: 1;
    flex-grow: 1;
}

#share-embed .browser .wide-col {
    width: 54.5% !important;
    flex-shrink: 1;
    flex-grow: 1;
}

/* other */
#share-embed .embed-cell > span {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .5px;
    white-space: nowrap;
}

#share-embed #container {
    display: none !important;
}



::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: transparent;
  box-shadow: inset 0 0 8px 8px transparent;
  border: solid 2px transparent;
  border-radius: 3px;
}
/* Handle */
::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 8px 8px #384452;
  border: solid 2px transparent;
  border-radius: 10px;

}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  box-shadow: inset 0 0 8px 8px #515F6C;
  /*corsor: pointer;*/
}

#modal-window.modal #modal-upgrade.modal-dialog {
  max-width: 654px;
}

#modal-window #modal-upgrade h5 {
  text-align: center;
  line-height: 1.4;
  letter-spacing: .045rem;
}

#modal-window #modal-upgrade .modal-body {
  max-width: 587px;
  margin-top: 2.2rem;
}

#modal-window #modal-upgrade .modal-footer {
  padding: 1.8rem 3rem 4.2rem 3rem;
}

#modal-window #modal-upgrade .card {
  border: 0;
  width: 100%;
}

#modal-window #modal-upgrade .card-header {
  background: #3461c9;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border: 0;
  border-radius: 1rem 1rem 0 0;
  padding-top: 4.2rem;
  padding: 1.2rem .5rem .8rem .5rem;
}

#modal-window #modal-upgrade .card-header h2 {
  letter-spacing: .125rem;
  margin: 0;
  font-weight: 600;
}

#modal-window #modal-upgrade .card-body {
  background: #f6f9fe;
  border: 0;
  border-radius: 0 0 .5rem .5rem;
  padding-top: 2.2rem;
  padding: 2.5rem 2rem 1.4rem 2rem;
}

#modal-window #modal-upgrade ul {
  padding-inline-start: 0;
  column-count: 2;
  list-style: none;
  line-height: 32px;
  font-weight: var(--font-weight-bold);
  font-size: 1.4rem;
  letter-spacing: .035rem;
  margin-left: .7rem;
}

#modal-window #modal-upgrade ul > li {
  padding-left: 2.9rem;
  text-transform: none;
  background-image: url('../img/svg-icon-plus-5dc569.svg');
  background-position: .1rem .9rem;
  background-size: 1.5rem;
  background-repeat: no-repeat;
  margin-left: 0;
}

@media only screen and (max-device-width: 640px) and (orientation: portrait)
{
  #modal-window #modal-upgrade ul > li {
      background-position: .1rem .1rem;
      padding-bottom: .7rem;
      line-height: 1.2;
  }
}

#modal-window #modal-upgrade .btn {
  min-width: 14rem;
}

.modal .modal-dialog.modal-dialog-centered {
  margin-top: 0;
}

#modal-window.modal #modal-upgrade.modal-dialog {
  max-width: 654px;
}

#modal-window.modal .modal-dialog {
  max-width: 678px;
  padding: 0 15px;
}
#modal-window.modal .modal-content {
  border-radius: 9px;
}
#modal-window.modal .modal-header {
  padding-top: 46px;
}
.modal h5 {
  color: #273e5d;
  font-weight: 700;
  letter-spacing: .32px;
  font-size: 20px;
  margin: 0;
  text-align: left;
}
#modal-window #modal-upgrade h5 {
  text-align: center;
  line-height: 1.4;
  letter-spacing: .045rem;
}
#modal-window.modal .modal-header button.close {
  border-radius: 0;
  background-size: 100%;
  top: 13px;
  right: 13px;
  width: 25px;
  height: 25px;
}
#modal-window.modal .modal-body {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 28px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
#modal-window #modal-upgrade .modal-body {
  max-width: 587px;
  margin-top: 2.2rem;
}
#modal-window #modal-upgrade .card {
  border: 0;
  width: 100%;
}
#modal-window #modal-upgrade .card-header {
  background: #3461c9;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border: 0;
  border-radius: 1rem 1rem 0 0;
  padding-top: 4.2rem;
  padding: 1.2rem 0.5rem 0.8rem 0.5rem;
}
#modal-window #modal-upgrade .card-header h2 {
  letter-spacing: .125rem;
  margin: 0;
  font-weight: 600;
}
#modal-window #modal-upgrade ul {
  padding-inline-start: 0;
  column-count: 2;
  list-style: none;
  line-height: 32px;
  font-weight: var(--font-weight-bold);
  font-size: 1.4rem;
  letter-spacing: .035rem;
  margin-left: 0.7rem;
}
#modal-window #modal-upgrade ul > li {
  padding-left: 2.9rem;
  text-transform: none;
  background-image: url(../img/svg-icon-plus-5dc569.svg);
  background-position: 0.1rem 0.9rem;
  background-size: 1.5rem;
  background-repeat: no-repeat;
  margin-left: 0;
}
#modal-window #modal-upgrade .modal-footer {
  padding: 1.8rem 3rem 4.2rem 3rem;
}
.modal .btn.btn-success.alt {
  color: #fff;
  background: #5dc569;
}
#modal-window.modal .btn {
  padding: 13.5px 20px;
  min-width: 109px;
  border-width: 2px;
}
#modal-window.modal .btn.btn-success {
  padding: 13.5px 20px;
}
#modal-window.modal .btn.btn-success.alt, #modal-window.modal .btn.btn-secondary {
  border-width: 2px;
}
#modal-window #modal-upgrade .btn {
  min-width: 14rem;
}

#modal-loginregister .modal-body{
    max-width: none !important;

}
#modal-loginregister .form__provider {
  margin-bottom: 1rem;
}

#modal-loginregister .or-separator {
  font-size: 1.8rem;
  letter-spacing: 0.03rem;
  margin: 2rem 0.2rem;
  color: #acb8c3;
  font-weight: var(--font-weight-semi-bold);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /*background: white;*/
}

#modal-loginregister .or-separator::before {
  content: '';
  height: 1px;
  width: 90%;
  background-color: #acb8c3;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}

#modal-loginregister .btn.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #273e5d;
  font-size: 1.7rem;
  text-transform: none;
  border-color: #d9dfe8;
}

#modal-loginregister .btn.btn-secondary .icon {
  width: 20px;
  height: 20px;
  margin: 0 10px;
  position: absolute;
  left: 10px;
}

#modal-loginregister .btn.btn-secondary:hover {
  background: #fff;
  color: #3461c9;
  border-color: #3461c9;
}

#modal-loginregister .or-separator span {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    width: 70px;
}


#modal-loginregister .col-6:first-child .or-separator span {
    background-color: #f6f9fe;
}


#protected_embed_link_to_share{
  color: #808f9d;
  text-decoration: underline;
}


#protected_embed_link_to_share:hover{
  color: #fff;
}
.input-type-lead-icon svg {
    width: 15px!important;
    height: auto!important;
}

.input-type-lead-icon svg path{
    fill: #000!important;
}

input.form-control.field-name.hasicon{
    border-radius: 0px!important;
    padding-left: 0px!important;
}

.input-group-append.icon{
    background: #f6f9fe;
    border-radius: 5px 0px 0px 5px;
    padding-left:3px;
    width:30px;
}

.change-order-handle svg path{
    fill: #c6c6c6;
}

.change-order-handle svg{
    width: 8px!important;
}
input[name="toplogo_image_url"].has-error {
    border: 2px solid var(--danger)!important;
}

#menu .input__controls {
  display: flex;
  align-items: center;
  background-color: #354151;
  border-radius: 3px;
}

#menu .input__controls input[type=number].form-control {
  border-radius: 3px;
}

#menu .input__control {
  outline: none;
  border: none;
  font-size: 16px;
  background-color: transparent;
  width: 22px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.input__control svg {
  pointer-events: none;
}

.input__control svg path {
  stroke: #fefefe5c;
  transition: .15s stroke ease;
}

#menu .input__control:is(:active, :focus, :hover) {
  outline: none;
  border: none;
}

#menu .input__control:is(:hover) svg path {
  stroke: #fefefeed;
}

#menu .hide-if-auto-flip-loop-enabled {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 4px;
}

#menu .upgrade-link-with-tooltip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 5px;
  margin-bottom: 10px;
}

#menu .upgrade-link {
  padding: 5px 10px;
  border-radius: 5px;
  color: #F7A301;
  background-color: transparent;
  font-size: 12px;
  font-style: normal;
  line-height: normal;
  font-weight: 700;
  text-decoration: none;
  transition: .1s background ease-in-out, .1s color ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

#menu .upgrade-link:hover {
  background-color: #262F3A;
  color: #F6B502;
  text-decoration: none;
}

#menu .upgrade-link-with-tooltip .icon-end svg path {
  fill: rgba(247, 163, 1, .5);
  transition: .1s fill ease-in-out;
}

#menu .upgrade-link-with-tooltip .icon-end:hover svg path {
    fill: #F6B502 !important;
}

#menu .upgrade-link-with-tooltip .icon-end {
    margin: 0;
}

#menu #card-hard-cover-color.hard-cover-color-card {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 15px;
}

#menu #card-hard-cover-color .card-header {
    width: 100%;
    padding: 0 6px 10px 6px;
}

#menu #card-hard-cover-color .card-header .btn.btn-link {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 0;
    border-radius: 8px;
}

#menu #card-hard-cover-color .card-header .btn-contents .colorpicker-preview {
    position: absolute;
    top: calc(50% - 8px);
    left: -27px;
    width: 23px;
    height: 15px;
    border-radius: 8px;
}

#menu #card-hard-cover-color .card-header .btn-contents span {
    padding-left: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .75px;
    line-height: 19px;
}

#menu #card-hard-cover-color #hard-cover-color-settings .card-body {
    padding: 0;
}

#menu #card-hard-cover-color #hard-cover-color-settings #colorpicker-hard-cover-color {
    margin: 0;
}

#menu #colorpicker-hard-cover-color .colorpickle .swatchHex * {
    display: none;
}

#menu #card-hard-cover-color #set-hard-cover-color-hex {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    color: #808f9d !important;
    background: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    text-align: right;
    width: 65px;
    border: none;
    outline: none;
}

.custom-control.custom-switch:has(> input#switch-hard-cover:disabled) + .hide-if-hard-cover-disabled {
    pointer-events: none;
}

#menu .info-row .btn-contents {
    display: flex;
    margin-left: 0px;
    line-height: 18px;
    position: relative;
    width: 100%;
    user-select: none;
}

#menu .info-row .btn-contents span {
    cursor: pointer;
    margin-left: 7px;
}

#menu .colorpicker-preview {
    position: absolute;
    top: calc(50% - 8px);
    right: 60px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #384452;
}

#hard-cover-color-settings {
    padding: 10px 0;
}

body.dragging #menu .card:not(.active):hover {
    cursor: no-drop !important;
    background: transparent !important;
}

body.dragging #menu .card:not(.active):hover .card-header h5 .icon svg path,
body.dragging #menu .card:not(.active):hover .card-header h5 .icon svg circle,
body.dragging #menu .card:not(.active):hover .card-header h5 .icon svg ellipse {
    fill: #3461c9;
    stroke: #3461c9;
}

body.dragging #menu a,
body.dragging #menu button {
    cursor: no-drop !important;
}

body.dragging #menu .menu-header .btn.btn-success.sm-share:not(:disabled):hover {
    background: #3461c9;
    border-color: #3461c9;
    color: #fff;
}

body.dragging #menu .menu-header .btn.btn-link:hover,
body.dragging #menu .menu-header .btn.btn-link:hover .icon svg path {
    color: #808f9d;
    fill: #808f9d;
}

body.dragging #menu,
body.dragging iframe {
    cursor: no-drop !important;
}

body.dragging #toc-tree-list {
    cursor: grabbing !important;
}

body.dragging #toc-tree-list button,
body.dragging #toc-tree-list span {
    pointer-events: none;
}

.custom-control-inline {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 35px;
}

.custom-control-inline label {
    width: fit-content;
    position: relative;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .75px;
    color: #808F9D;
    cursor: pointer;
}

.custom-control-inline label:has(input:checked) {
    /*color: #FFF;*/
}

.custom-control-inline label::before {
    display: inline-block;
    position: absolute;
    top: 7px;
    left: -30px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #647381;
    content: '';
}

.custom-control-inline label:has(input:checked)::before {
    border: 2px solid #3461C9;
}


.custom-control-inline label:has(input:checked)::after {
    display: inline-block;
    position: absolute;
    width: 7px;
    height: 7px;
    top: 11px;
    left: -26px;
    border-radius: 50%;
    background-color: #3461C9;
    content: '';
}


.custom-control-inline .icon-end {
    display: inline-block;
    position: absolute;
    top: 1px;
    right: -10px;
}

.custom-control-inline .icon-end.second {
    top: 58px;
}

.logo-buttons-controls {
    display: flex;
    gap: 0 5px;
}

.logo-buttons-controls button {
    border: 1px solid #384452;
    background-color: transparent;
    border-radius: 5px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    transition: .1s background-color ease-in-out, .1s border-color ease-in-out;
}

.logo-buttons-controls button:hover
{
    background-color: #28323F;
    border-color: #515F6C;
    cursor: pointer;
}

.logo-buttons-controls button svg path
{
    fill: #808F9D;
    transition: .1s fill ease-in-out;
}

.logo-buttons-controls button:hover svg path
{
    fill: #fff;
}

.logo-buttons-controls button:is(#favicon-delete-btn, #logo-delete-btn):hover {
    background-color: color-mix(in srgb, #CB2539 15%, transparent);
    border-color: #CB2539;
}

.logo-buttons-controls button:is(#favicon-delete-btn, #logo-delete-btn):hover svg path {
    fill: #CB2539;
}

.info-row-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(128, 143, 157, 1);
    font-size: 12px;
    font-weight: 700;
    font-style: bold;
}

.add-logo-dropzone-btn {
    background: transparent !important;
    width: 100%;
    height: 100%;
    border: none !important;
    align-items: center !important;
    justify-content: center !important;
}

.add-logo-dropzone-btn:hover {
    border: 2px solid #3461c9 !important;
}

.add-logo-dropzone-btn:hover > svg path {
    fill: #ffffff !important;
}

.logo-dropzone{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    border-radius: .3rem;
    height: 13.9rem;
    margin-top: .5rem;
    background-color: rgba(40, 50, 63, 1);
    border: none !important;
}

.logo-text-hint-preview {
    position: absolute;
    top: 2px;
    right: 5px;
    font-size: 12px;
    color: #808f9d;
}

.add-favicon-dropzone-btn {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    justify-content: space-evenly !important;
    align-items: center !important;
}

.add-favicon-dropzone-btn:hover > svg path {
    fill: #ffffff !important;
}

#logo-buttons-controls button:focus,
#favicon-buttons-controls button:focus {
    outline: none !important;
}

#favicon-buttons-controls button.disabled,
#favicon-buttons-controls button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.gap-10 {
    gap: 10px;
}

#favicon-text-hint {
    font-size: 12px;
}

.p-5px {
    padding: 5px;
}

.tooltip {
    pointer-events: none !important;
}

.input-radius-full-corners {
    border-radius: 5px !important;
    padding-left: 15px !important;
    padding-right: 10px !important;
}

.separator-smaller-margins {
    margin-top: 20px !important;
    margin-bottom: 0px !important;
}

.custom_fields-switch {
    margin-top: 10px;
    margin-bottom: 0px !important;
}

.icon-reload {
    width: 16px !important;
    height: 16px !important;
    margin-right: 5px !important;
}

.icon-reload svg {
    width: 100% !important;
    height: 100% !important;
}

.icon-reload svg path {
    fill: #808f9d !important;
}

.password-custom-rows-titles {
    margin-bottom: 5px;
}

.margin-bottom-form-field {
    margin-bottom: 20px;
}

.play-group:hover .play-circle {
    fill: #20262F !important;
}

.play-group:hover .play-triangle {
    fill: white !important;
}

.upgrade-link--backgrounds {
    display: flex;
    padding: 5px 15px 5px 10px !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 5px;
    color: #F7A301;
    margin: 3px 0;
}

.upgrade-link--backgrounds .icon--crown {
    width: 16px;
    height: 16px;
    margin: 0;
}

.upgrade-link--backgrounds svg path {
    fill: #F7A301;
    transition: .1s fill ease-in-out;
}

.upgrade-link--backgrounds:hover {
    background: #303A47;
    color: #F6B502 !important;
    text-decoration: none;
}

.upgrade-link--backgrounds:hover svg path {
    fill: #F6B502 !important;
}

.card-body--smaller_top_padding {
    padding-top: 5px !important;
}

.upgrade-link-with-tooltip--smaller_bottom_margin {
    margin-bottom: 5px !important;
}

.customize-title-wrapper {
    display: flex;
    align-items: center;
    text-align: center;
    flex: 1;
}

:is(.customize-title-wrapper, .card-body-head) .icon--crown {
    display: flex;
    width: 18px;
    height: 18px;
    padding: 1.125px;
    align-items: flex-start;
    gap: 11.25px;
    cursor: pointer;
}

:is(.customize-title-wrapper, .card-body-head) .icon--crown:hover,
:is(.customize-title-wrapper, .card-body-head) .icon--crown[aria-describedby] {
    border-radius: 9px !important;
    background: #384452 !important;
}



.custom-tooltip-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.custom-tooltip-section-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tooltip-separator {
    border: 0;
    border-top: 1px solid #506070;;
    margin: 5px 0 0 0;
}

.custom-tooltip-title {
    align-self: stretch !important;
    color: rgba(255, 255, 255, 0.70) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 16px !important;
    text-transform: uppercase !important;
}

.trail-plan-link {
    display: flex;
    align-items: center;
    padding: 10px 10px 10px 15px;
    gap: 10px;
    border: 1px solid #465360;
    border-radius: 5px;
    background: none;
    cursor: pointer;
    margin-top: 10px;
    transition: .1s background ease-in-out;
    margin-bottom: 20px;
}

.trail-plan-link + h1 {
    display: none !important; 
}

.trail-plan-link:hover {
    text-decoration: none !important;
    background-color: #465360;
}

.trail-plan-link:hover .trail-plan-link__arrow {
    transform: translateX(2px);
}

.trail-plan-link__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.trail-plan-link__content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.trail-plan-link__title {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #F6B502;
}

.trail-plan-link__text {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #fff;
}

.trail-plan-link__arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transition: .1s transform ease-in-out;
}

#menu .menu-header:has(.trail-plan-link + h1) h1 {
    margin: 2rem 0;
}

#menu .menu-header:has(.trail-plan-link + h1) .with-top-margin-md > div:first-of-type {
    margin-bottom: 2rem !important;
}

.effects__list {
    display: flex;
    gap: 8px;
    width: 100%;
}

.effects__list--loading {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 8px;
}

.effects__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #28323F;
    border-radius: 4px;
    border: 1px solid transparent;
    outline: 1px solid transparent !important;
    transition: .1s border-color ease-in-out;
    flex: 1;
    color: #647381;
    cursor: pointer;
}

.effects__item:is(:focus, :active) {
    outline-color: #3461C9 !important;
}

.effects__item > div {
    pointer-events: none;
    display: contents;
    user-select: none;
}

.effects__item:not(.selected, :disabled):hover {
    border-color: #3461C9;
    outline-color: #3461C9 !important;
}

.effects__item:disabled {
    cursor: not-allowed;
    /* opacity: .7; */
    pointer-events: none;
}

.effects__item__name {
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    transition: .1s color ease-in-out;
}

.effects__item.selected {
    color: #fff;
    border-color: #3461C9;
    outline-color: #3461C9 !important;
    background: linear-gradient(0deg, rgba(52, 97, 201, 0.1), rgba(52, 97, 201, 0.1)), #1A1F26;
}

.effects__item__image {
    max-width: 100%;
    height: auto;
}

.effects__item__image :is(svg, img) {
    width: 100%;
    height: 100%;
}

.effects__list.effects__list--loading .effects__item {
    border: 1px solid #2F3B4A;
    border-radius: 4px;
    background-color: #28323F;
    padding: 0;
}

.effects__list.effects__list--loading .effects__item:is(:hover, .selected) {
    border-color: #3461C9;
}

/* loading animation preview tiles */
@property --loader-mask { syntax: '<percentage>'; inherits: false; initial-value: 0%; }
@property --loader-mask-t { syntax: '<percentage>'; inherits: false; initial-value: 0%; }
@property --loader-mask-b { syntax: '<percentage>'; inherits: false; initial-value: 0%; }

.effects__item > .effects__item__image--loader {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 54 / 44;
    overflow: hidden;
    border-radius: 4px;
}

.tile__page {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tile__icon {
    width: 60%;
}

.tile__icon :is(svg, img) {
    width: 100%;
    height: 100%;
    display: block;
}

.tile__loader {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: #404c58f0;
}

.tile__loader--book { 
    opacity: 0.3;
    background: linear-gradient(45deg, rgba(128, 143, 157, 0.3) 12.52%, #808F9D 42.79%, #808F9D 57.57%, rgba(128, 143, 157, 0.3) 87.48%);
}
@keyframes loaderPreviewBook { 0%, 4% { opacity: 1; } 42%, 100% { opacity: 0; } }
.effects__item:not(:disabled):hover .tile__loader--book { animation: loaderPreviewBook 1.8s infinite; }


.tile__loader--curtain {
    z-index: 1;
    transform: translateY(60%);
    background: linear-gradient(180deg, #647381 0%, rgba(100, 115, 129, 0) 100%);
}

.tile__page--curtain { 
    z-index: 2;
}

@keyframes loaderPreviewCurtainLoader { 0%, 4% { transform: translateY(0); opacity: 1; } 65%, 100% { transform: translateY(100%); opacity: 1; } }
.effects__item:not(:disabled):hover .tile__loader--curtain { animation: loaderPreviewCurtainLoader 1.8s infinite ease-in-out; }
@keyframes loaderPreviewCurtainPage { 0%, 4% { transform: translateY(50%); } 65%, 100% { transform: translateY(0); } }
.effects__item:not(:disabled):hover .tile__page--curtain { animation: loaderPreviewCurtainPage 1.8s infinite ease-in-out; }


.tile__loader--doors { 
    z-index: 1;
    background: transparent; 
}

.tile__loader--doors::before,
.tile__loader--doors::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background: #404c58f0;
}

.tile__loader--doors::before { 
    left: 0; transform: translateX(-75%);
    background: linear-gradient(270deg, #647381 0%, rgba(100, 115, 129, 0) 100%);
}

.tile__loader--doors::after { 
    right: 0; transform: translateX(75%);
    background: linear-gradient(90deg, #647381 0%, rgba(100, 115, 129, 0) 100%);
}

.effects__item:not(:disabled):hover .tile__loader--doors + .tile__page .tile__icon {
    animation: loaderPreviewDoorsPage 2.1s infinite;
}

@keyframes loaderPreviewDoorsPage { 0%, 4% { transform: scale(1.2); } 48%, 100% { transform: scale(1); } }
@keyframes loaderPreviewDoorsBefore { 0%, 30% { transform: translateX(0); } 60%, 100% { transform: translateX(-100%); } }
@keyframes loaderPreviewDoorsAfter { 0%, 30% { transform: translateX(0); } 60%, 100% { transform: translateX(100%); } }
.effects__item:not(:disabled):hover .tile__loader--doors::before { animation: loaderPreviewDoorsBefore 2.1s infinite }
.effects__item:not(:disabled):hover .tile__loader--doors::after { animation: loaderPreviewDoorsAfter 2.1s infinite }


.tile__loader--iris { 
    z-index: 1; 
    background: transparent;
}

.tile__loader--iris::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    --loader-mask: 70%;
    -webkit-mask-image: radial-gradient(circle at 50% 50%, transparent var(--loader-mask), #647381 var(--loader-mask));
    mask-image: radial-gradient(circle at 50% 50%, transparent var(--loader-mask), #647381 var(--loader-mask));
    background: linear-gradient(0deg, #647381 0%, rgba(100, 115, 129, 0) 100%);
}

.tile__page--iris { 
    z-index: 2; 
}

@keyframes loaderPreviewIris { 0%, 30% { --loader-mask: 0%; } 60%, 100% { --loader-mask: 100%; } }
.effects__item:not(:disabled):hover .tile__loader--iris::before { animation: loaderPreviewIris 2.1s infinite; }

@keyframes loaderPreviewIrisPage { 0%, 4% { transform: scale(1.2); } 48%, 100% { transform: scale(1); } }
.effects__item:not(:disabled):hover .tile__loader--iris + .tile__page .tile__icon { animation: loaderPreviewIrisPage 2.1s infinite; }


.tile__loader--biris { 
    z-index: 1;
    background-color: transparent;
}

.tile__loader--biris::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    --loader-mask: 45%;
    -webkit-mask-image: radial-gradient(circle at 50% 100%, transparent var(--loader-mask), #647381 var(--loader-mask));
    mask-image: radial-gradient(circle at 50% 100%, transparent var(--loader-mask), #647381 var(--loader-mask));
    background: linear-gradient(0deg, #647381 0%, rgba(100, 115, 129, 0) 100%);
}

.tile__page--biris { 
    z-index: 2; 
}

@keyframes loaderPreviewBiris { 0%, 30% { --loader-mask: 0%; } 60%, 100% { --loader-mask: 100%; } }
.effects__item:not(:disabled):hover .tile__loader--biris::before { animation: loaderPreviewBiris 2.1s infinite; }
@keyframes loaderPreviewBirisPage { 0%, 4% { transform: translateY(-38%); } 40%, 100% { transform: translateY(0); } }
.effects__item:not(:disabled):hover .tile__page--biris { animation: loaderPreviewBirisPage 2.1s infinite; }


.tile__loader--diag .tile__page {
    z-index: 3;
}

.tile__loader--diag {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.tile__loader--diag::before,
.tile__loader--diag::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: red;
}

.tile__loader--diag::before {
    background: #647381;
    --loader-mask-t: 80%;
    transition: --mask-t var(--loader-transition-duration, 1s) ease-in-out;
    -webkit-mask-image: linear-gradient(45deg, rgba(100, 115, 129, 0) var(--loader-mask-t), #647381 var(--loader-mask-t), rgba(100, 115, 129, 0) calc(var(--loader-mask-t) + 100%));
    mask-image: linear-gradient(45deg, rgba(100, 115, 129, 0) var(--loader-mask-t), #647381 var(--loader-mask-t), rgba(100, 115, 129, 0) calc(var(--loader-mask-t) + 100%));
    z-index: 4;
}

.tile__loader--diag::after {
    background: #647381;
    --loader-mask-b: 80%;
    transition: --mask-b var(--loader-transition-duration, 1s) ease var(--loader-transition-duration, 1s);
    -webkit-mask-image: linear-gradient(225deg, rgba(100, 115, 129, 0) var(--loader-mask-b), #647381 var(--loader-mask-b), rgba(100, 115, 129, 0) calc(var(--loader-mask-b) + 100%));
    mask-image: linear-gradient(225deg, rgba(100, 115, 129, 0) var(--loader-mask-b), #647381 var(--loader-mask-b), rgba(100, 115, 129, 0) calc(var(--loader-mask-b) + 100%));
    z-index: 1;
}

@keyframes loaderPreviewDiagA { 0%, 4% { --loader-mask-t: 0%; } 40%, 100% { --loader-mask-t: 100%; } }
@keyframes loaderPreviewDiagB { 0%, 22% { --loader-mask-b: 0%; } 58%, 100% { --loader-mask-b: 100%; } }
.effects__item:not(:disabled):hover .tile__loader--diag::before { animation: loaderPreviewDiagA 1.8s infinite; }
.effects__item:not(:disabled):hover .tile__loader--diag::after { animation: loaderPreviewDiagB 1.8s infinite; }

@media (prefers-reduced-motion: reduce) {
    .tile__loader, .tile__loader::before, .tile__loader::after,
    [class*="tile__loader--"], [class*="tile__page--"] {
        animation-iteration-count: 1 !important;
    }
}


.menu-row__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.expand-sidebar-btn {
    background: none;
    border: none !important;
    outline: none !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-right: -10px; */
    padding: 6px;
    width: fit-content;
    display: none;

}

.expand-sidebar-btn:hover svg path {
    fill: #fff;
}

.menu-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
}

.menu-bottom {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: 0;
    padding: 15px 5px 15px 15px;
    gap: 5px;
    align-items: flex-end;
    width: calc(var(--menu-width) - 10px);
}

.menu-bottom .expand-sidebar-btn {
    /* display: none; */
    display: flex;
    transform-origin: 50% 50%;
    border-radius: 10px;
    padding: 10px;
    width: 50px;
    height: 50px;
}

.menu-bottom .expand-sidebar-btn:hover {
    background-color: #1a1f26;
}

#menu.collapsed .menu-bottom .expand-sidebar-btn {
    transform: rotate(180deg);
}

.card-body-head {
    display: none;
    align-items: center;
    margin-bottom: 25px;
}

.card-body-head .title {
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    color: #fff;
}

#menu .card-header h5 .btn > .btn-contents > .title.title-with-badge,
.card-body-head .title.title-with-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.title.title-with-badge .badge {
    font-style: normal;
    font-weight: 900;
    font-size: 9px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #3461C9;
    text-transform: uppercase;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px 5px;
    background: #fff;
    border-radius: 3px;
}

.card-body-close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    border: none !important;
    outline: none !important;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0;
}

.card-body-close .icon {
    width: 16px;
    height: 16px;
}

.card-body-close:hover svg path {
    fill: #fff;
}

#menu.collapsed .card-body-head {
    display: flex;
}

#menu.collapsed .menu-content {
    overflow: unset;
}

#menu.collapsed #settings-background .card-body-head {
    padding: 15px 15px 0 15px;
}

#menu.collapsed {
    --menu-width: 80px;
    overflow: unset;
}

#menu.collapsed .menu-row {
    gap: 5px;
}

#menu.collapsed .menu-bottom .expand-sidebar-btn {
    display: flex;
}

#menu.collapsed .menu-header {
    padding: 0 8px 10px;
}

#menu.collapsed .menu-header .btn.btn-link {
    font-size: 11px;
    gap: 2px;
    text-transform: none !important;
}

#menu.collapsed .menu-header .btn.btn-link .icon {
    width: 16px;
    height: 16px;
    margin: 1px -3px 0 -3px;
}

#menu.collapsed .menu-header .expand-sidebar-btn {
    display: none !important;
}

#menu.collapsed .menu-header h1 {
    display: none !important;
}

#menu.collapsed .menu__header__controls {
    flex-direction: column;
    gap: 2px;
}

#menu.collapsed .menu__header__controls .btn {
    display: flex;
    flex-direction: column;
    text-transform: none !important;
    border-radius: 10px !important;
    background: none !important;
    border: none !important;
    outline: none !important;
    color: #808F9D;
    min-width: 0 !important;
    flex: 0;
    font-size: 11px;
    font-weight: bold;
    transition: none !important;
    letter-spacing: 0;
    width: 50px;
    height: 50px;
    padding: 0;
    min-height: 50px;
}

#menu.collapsed .menu__header__controls .btn:not(:disabled):hover {
    background-color: #28323F !important;
    color: #fff !important;
}

#menu.collapsed .menu__header__controls .btn:not(:disabled):hover svg path {
    fill: #fff;
}

#menu.collapsed .menu-footer .card:hover a .title {
    color: #fff !important;
}

#menu .menu-footer .card:hover a .icon svg path {
    fill: #5dc569 !important;
}

#menu.collapsed .menu__header__controls .btn .icon {
    margin: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#menu.collapsed .menu-header .btn.btn-success.loading {
    /* background-color: rgba(128, 143, 157, .3) !important; */
    background-color: #212731 !important;
}

#menu.collapsed .menu-header .btn.btn-success.sm-save:disabled .icon svg path {
    fill: #4D5762;
}

#menu.collapsed .menu-header .btn.btn-success.sm-save .icon svg path {
    fill: #5DC569;
}

#menu.collapsed :is(.menu-body, .menu-footer) {
    align-items: center;
}

#menu.collapsed .card {
    position: relative;
    border-radius: 10px;
    width: fit-content;
}

#menu.collapsed .card:hover {
    border-color: transparent !important;
    /* color: #4D5762; */
}

#menu.collapsed .card.active, #menu.collapsed .card:not(.disabled):hover, #menu.collapsed .card.force-hover {
    border-color: transparent !important;
    background: #28323F !important;
}

#menu.collapsed .menu-body > .card > .collapsing {
    transition: none !important;
    background: #1a1f26;
}

#menu.collapsed .menu-body > .card > :is(.collapse, .collapsing) {
    position: fixed !important;
    z-index: 202 !important;
    width: var(--card-width);
    border: 1px solid #384452;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    margin: 0 !important;
}

#menu.collapsed .menu-body > .card > :is(#settings-toc, #settings-background):is(.collapse, .collapsing) {
    top: 0 !important;
    height: 100% !important;
    max-height: 100% !important;
    border-radius: 0;
}

#container:has(#menu.collapsed .menu-body > .card > :is(#settings-toc, #settings-background):is(.show, .collapsing)) #editor {
    margin-left: var(--card-width);
}

#menu.collapsed .card.active {
    display: block !important;
}

#menu.collapsed .card-body {
    padding-top: 1.5rem !important;
}


#menu.collapsed .menu-footer {
    padding: 15px 10px;
}
/* 
#menu.collapsed .menu-footer .card {
    border-radius: 0;
} */

#menu.collapsed .menu-footer h5 a.btn {
    width: 100%;
    height: auto;
    padding: 5px 8px 8px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#menu.collapsed .menu-footer .card-header h5 .btn > .btn-contents {
    flex-direction: column;
    gap: 0;
}

#menu.collapsed .menu-footer .card-header h5 .btn > .btn-contents > .title {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.01em;
    color: #808F9D;
    gap: 0;
}

#menu.collapsed .menu-footer .card-header h5 .btn > .btn-contents > .icon {
    width: 24px;
    height: 24px;
}

#menu.collapsed .card-header h5 .btn {
    padding: 10px;
    width: 50px;
    height: 50px;
}

#menu.collapsed .card-header h5 .btn .btn-contents {
    display: flex;
    align-items: center;
    justify-content: center;
}

#menu.collapsed .card-header h5 .btn .icon {
    width: 20px;
    height: 20px;
}

#menu.collapsed .card-header h5 .btn > .btn-contents > :is(.title, .icon-end) {
    display: none;
}

#menu.collapsed .card-header h5 .btn > .btn-contents > .customize-title-wrapper {
    display: contents;
}

#menu.collapsed .menu-body .card-header h5 .btn > .btn-contents :is(.title, .customize-title-wrapper) .icon--crown {
    display: none;
}

#menu.collapsed .menu-body .card-header h5 .btn > .btn-contents .title {
    display: flex;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 5px);

    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2;
    color: #fff;
    padding: 5px 10px;
    background: #2E3743;
    border: 1px solid #506070;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    z-index: 203;
    height: auto;
    width: max-content;
    overflow: visible;
}

#menu.collapsed .menu-body .card-header h5 .btn > .btn-contents .title::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 7px solid #506070;
    transform: translateY(-50%);
}

#menu.collapsed .menu-body .card-header h5 .btn > .btn-contents .title.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translate(4px);
    transition: .1s opacity ease-in-out .5s, .1s visibility ease-in-out .5s, .2s transform ease-out .5s;
}


#menu.collapsed .trail-plan-link {
    display: none !important;
}

#menu.collapsed .save-and-share-wrapper {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0 !important;
}

#menu.collapsed .save-and-share-wrapper #logo {
    max-width: 100%;
}

#menu.collapsed .save-and-share-wrapper .auth-btns {
    flex-direction: column;
}

#menu.collapsed .save-and-share-wrapper .auth-btns > span {
    display: none;
}

#menu.collapsed #save-and-share-btn {
    line-height: 1.4;
}

#menu.collapsed .card-body-wrapper {
    width: var(--card-width);
    position: relative;
}

@media (max-height: 1080px) {
    #menu.collapsed .menu-footer {
        padding: 0 10px;
    }
    
    #menu.collapsed .menu-bottom {
        padding-top: 0px;
        padding-bottom: 5px;
    }
}

@media (max-height: 991px) {
    #menu .menu-content {
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }
}

@media (max-height: 900px) {
    #menu.collapsed .menu-bottom {
        align-items: center;
        border-top: 1px solid #465360;
    }
}

@media (max-height: 760px) {
    #menu.collapsed {
        --menu-width: 60px;
    }

    #menu.collapsed .menu-row__head {
        align-items: center;
        justify-content: center;
        padding: 10px 0 5px;
    }

    #menu.collapsed :is(.menu-body, .menu-bottom) {
        padding: 10px;
    }

    #menu.collapsed .card-header h5 .btn {
        width: 40px;
        height: 40px;
    }

    .menu-bottom .expand-sidebar-btn {
        width: 40px;
        height: 40px;
    }

    #menu.collapsed .menu__header__controls .btn {
        width: 40px;
        height: 40px;
    }

     #menu.collapsed .menu-header {
        z-index: 203;
     }

    #menu.collapsed .menu-header .btn.btn-link {
        width: 30px;
        height: 30px;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        padding: 5px;
        position: relative;
    }    

    #menu.collapsed .menu-header .btn.btn-link span {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: calc(100% + 5px);

        font-style: normal;
        font-weight: 400;
        font-size: 12px;
        line-height: 1.2;
        color: rgba(255, 255, 255, 0.8);
        padding: 5px 10px;
        background: #2E3743;
        border: 1px solid #506070;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        border-radius: 5px;
        opacity: 0;
        visibility: hidden;
    }

    #menu.collapsed .menu-header .btn.btn-link:hover {
        background: #1A1F26;
    }

    #menu.collapsed .menu-header .btn.btn-link:hover span {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%) translate(4px);
        transition: .1s opacity ease-in-out .5s, .1s visibility ease-in-out .5s, .2s transform ease-out .5s;
    }

    #menu.collapsed .menu-header .btn.btn-link .icon {
        margin: 0;
        border: 1px solid #465360;
        border-radius: 5px;
        width: 20px;
        height: 20px;
    }
}

.custom-control-with-tooltip .custom-control-container {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.custom-control-with-tooltip .custom-control-container > .icon-end {
    display: inline-flex;
    width: 20px;
    height: 14px;
}

.custom-control-with-tooltip .custom-control-container > .icon-end svg {
    width: inherit !important;
    height: inherit !important;
}


@media (min-width: 2400px) {
    :root {
        --menu-width: 400px;
    }

    .title.title-with-badge .badge {
        font-size: 11px;
    }

    #menu .menu-header h1 {
        margin: 2rem 0;
        font-size: 3rem;
    }

    #menu .menu-header .btn.btn-link {
        font-size: 20px;
    }

    #menu .menu-header .btn.btn-link .icon {
        width: 38px;
        height: 29px;
        margin: 1px 5px 0 -18px;
    }

    #menu .menu-header .btn.btn-link .icon svg {
        width: 100%;
        height: 100%;
    }

    #menu .menu-header {
        padding: 5px 40px 25px;
    }

    #menu .card-header h5 .btn {
        font-size: 20px;
        line-height: 1.2;
        padding: 20px 22px 20px 28px;
    }

    #menu .card-header h5 .btn > .btn-contents {
        gap: 20px;
    }

    #menu .card-header h5 :is(.icon, .icon-end) {
        width: 26px;
        height: 26px;
    }

    #menu .card-header h5 :is(.icon, .icon-end) svg {
        width: 100%;
        height: 100%;
    }

    #menu .menu-header .btn.btn-success {
        height: 44px;
        font-size: 1.8rem;
    }

    #menu .menu__header__controls {
        gap: 14px;
    }

    #menu .info-row {
        font-size: 14px;
        height: 22px;
    }

    .menu-bottom .expand-sidebar-btn .icon svg {
        width: 30px;
        height: 30px;
    }

    #menu .menu-body, #menu .menu-footer {
        padding: 13px;
        gap: 7px;
    }

    #menu .card {
        width: calc(var(--menu-width) - 30px);
    }

    .menu-bottom {
        padding: 20px 10px 25px 20px;
        width: calc(var(--menu-width) - 10px);;
    }

    #menu textarea.form-control, #menu input[type=text].form-control, #menu input[type=number].form-control, #menu input[type=password].form-control {
        padding: 16px;
        font-size: 16px;
        line-height: 24px;
        border-radius: 6px;
    }

    #menu .card-body textarea {
        height: 180px;
    }

    #menu .card-body {
        padding: .9rem 1.8rem 3rem 1.8rem;
    }

    #menu .card-body :is(.icon-end, .icon-next) > svg {
        width: 38px;
        height: 38px;
    }

    #menu .info-row {
        height: 26px;
        font-size: 16px;
    }

    .effects__item {
        gap: 15px;
    }

    .effects__item__image {
        width: 85%;
    }

    .effects__item__name {
        font-size: 16px;
    }

    .custom-switch {
        margin-top: 15px;
        padding-left: 55px;
    }

    .custom-switch .custom-control-label {
        font-size: 16px;
        line-height: 24px;
    }

    .custom-switch .custom-control-label::before {
        border-radius: 12px;
        width: 30px;
        height: 20px;
        left: -45px;
        top: 2px;
    }

    .custom-switch .custom-control-input ~ .custom-control-label::after {
        width: 10px;
        height: 10px;
        top: 7px;
        left: -40px;
    }

    .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
        transform: translateX(10px);
    }

    .custom-control-with-tooltip .custom-control-container > .icon-end {
        width: 22px;
        height: 18px;
    }

    #menu #card-hard-cover-color #set-hard-cover-color-hex {
        width: 75px;
        font-size: 16px;
    }

    #menu .colorpicker-preview {
        width: 20px;
        height: 20px;
        right: 80px;
        top: calc(50% - 10px);
    }

    #menu .info-row .btn-contents span {
        margin-left: 10px;
    }

    #menu #card-hard-cover-color.hard-cover-color-card {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    #menu .colorpicker, #menu .colorpickle, #menu .colorpickle .colorPickerWrapper {
        height: 179px !important;
    }

    #menu .colorpickle .sliderWrapper.hWrapper {
        width: 179px !important;
        height: 28px !important;
        top: 151px;
        left: calc(100% + 40px);
    }

    #menu .colorpickle .hWrapper .sliderDiv .slider::-webkit-slider-thumb {
        height: 29px !important;
        margin-top: -10px;
    }

    #menu .internal-label {
        font-size: 16px;
    }

    #menu .card-body .hide-if-auto-flip-disabled {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .custom-switch:is(.custom-control--reverted) .custom-control-input:checked ~ .custom-control-label::after {
        transform: translateY(-50%) translateX(10px);
    }

    .custom-switch:is(.custom-control--reverted) .custom-control-input ~ .custom-control-label::after {
        left: unset;
        top: 50%;
    }

    .custom-switch:is(.custom-control--reverted) .custom-control-label::after {
        right: 15px;
    }

    #menu .hide-if-auto-flip-loop-enabled {
        margin-top: 15px;
    }

    .nav-tabs {
        gap: 6px;
        padding: 0 1.8rem;
    }

    .nav-tabs .nav-item .nav-link {
        font-size: 18px;
        padding: 7px 5px;
        border-radius: 7px;
    }

    .dropzone:is(.dropzone--background, .dropzone--video-background) {
        border-radius: 7px;
        min-height: 70px;
        margin-top: 0.8rem;
    }

    .dropzone:is(.dropzone--background, .dropzone--video-background) .dz-message {
        padding: 20px 10px;
    }

    .dropzone:is(.dropzone--background, .dropzone--video-background) .dz-message .icon {
        width: 20px;
        height: 20px;
    }

    .dropzone:is(.dropzone--background, .dropzone--video-background) .dz-message__text {
        font-size: 18px;
    }

    .dropzone:is(.dropzone--background, .dropzone--video-background) .dz-preview {
        height: 180px;
    }

    .dz-details__selected-icon {
        width: 32px;
        height: 32px;
    }

    .dz-details__selected-icon svg {
        width: 100px;
        height: 100px;
    }

    .dz-control,
    .logo-buttons-controls button {
        width: 36px;
        height: 36px;
    }

    #logo-reload-btn svg,
    #favicon-reload-btn svg,
    .dz-control.dz-control--replace svg {
        width: 28px;
        height: 28px;
    }

    #logo-delete-btn svg,
    #favicon-delete-btn svg,
    .dz-control.dz-control--remove svg {
        width: 22px;
        height: 22px;
    }

    .logo-buttons-controls {
        gap: 7px;
    }

    .logo-dropzone {
        margin-top: 0.8rem;
        height: 18rem;
    }

    .add-logo-dropzone-btn svg {
        width: 60px;
        height: 60px;
    }

    .logo-text-hint-preview {
        font-size: 16px;
    }

    #menu #settings-logo .card-body {
        padding: 9px 20px 24px 20px;
    }

    .info-row-wrap,
    #favicon-text-hint {
        font-size: 16px;
    }

    #favicon-dropzone {
        width: 50px;
        height: 50px;
    }

    #favicon-dropzone .add-favicon-dropzone-btn svg {
        width: 24px;
        height: 24px;
    }

    #favicon-dropzone .dz-details > img {
        max-width: 36px;
        max-height: 36px;
    }

    .filters__list {
        margin-top: 7px;
    }

    .filters__item {
        width: 28px;
        height: 28px;
    }

    .filters__item--all span,
    .filters__item span {
        width: 14px;
        height: 14px;
    }

    :is(#textures-container, #animated-textures-container) {
        margin-top: 0.8rem;
        gap: 1rem .8rem;
    }

    :is(#textures-container, #animated-textures-container).can-be-expanded {
        margin-top: 0.8rem;
        gap: 1rem .8rem;
        max-height: 450px;
    }

    :is(#textures-container, #animated-textures-container) > .texture {
        height: 6rem;
    }

    :is(#textures-container, #animated-textures-container) > .texture.selected::before {
        width: 22px;
        height: 22px;
    }

    .menu__show-more .menu__show-more__btn {
        width: 95px;
    }

    .menu__show-more .icon {
        width: 24px;
        height: 24px;
    }

    .menu__show-more .icon svg {
        width: 20px;
        height: 12px;
    }

    #menu .colorpickle .swatchHex {
        top: -26px;
        right: -34px;
    }

    #menu .colorpickle .hexValue {
        width: 75px !important;
        font-size: 16px;
    }

    #menu .error-row {
        font-size: 1.5rem;
    }

    .custom-switch .custom-control-label > .icon {
        width: 18px;
        height: 18px;
        margin-right: 12px;
        margin-top: 0;
    }

    .custom-control-inline {
        padding-left: 50px;
    }

    .custom-control-inline label {
        font-size: 16px;
    }

    .custom-control-inline label::before {
        width: 20px;
        height: 20px;
        left: -40px;
    }

    .custom-control-inline label:has(input:checked)::after {
        width: 10px;
        height: 10px;
        left: -35px;
        top: 12px;
    }

    #menu #settings-security .custom-switch {
        padding-left: 50px;
    }

    #menu .input-group .input-group-append .on svg {
        width: 40px;
        height: 40px;
    }

    #menu .input-group .input-group-append .off svg {
        width: 30px;
        height: 30px;
    }

    .icon-reload {
        width: 22px;
        height: 22px;
    }

    .password-custom-rows-titles {
        margin-bottom: 7px;
    }

    #menu .required-toggle-input-group {
        margin-bottom: 6px;
    }

    #menu .label-icon {
        width: 18px;
        height: 18px;
    }

    #menu .delete-form-field, #menu .delete-form-domain, #menu #add-form-field, #menu #add-form-domain {
        font-size: 16px;
    }

    #menu .info-row > .icon, #menu .info-row .icon.icon-accent {
        margin: 0 10px 0 5px;
    }

    :is(#add-form-domain, #add-form-field) .icon svg {
        width: 20px;
        height: 20px;
    }

    #menu select.micro {
        width: 44px;
        font-size: 13px;
        border-radius: 7px;
        padding: 6px 2px;
    }

    .internal-label + .form-group:has(select) {
        margin-bottom: 0;
    }

    #menu .info-row > .icon > svg {
        width: 18px;
        height: 18px;
    }

    #menu #settings-lead-capture .custom-switch {
        padding-left: 45px;
    }

    #settings-lead-capture hr.separator {
        margin: 10px 0 15px;
    }

    .btn.btn-gotoleads {
        font-size: 16px;
        margin-bottom: 10px;
        margin-top: 15px;
    }

    .input-group-append.icon {
        width: 35px;
    }

    .input-type-lead-icon svg {
        width: 20px !important;
    }

    #settings-toc .add-heading-button span {
        font-size: 16px;
    }

    #settings-toc .add-heading-button .icon {
        width: 20px;
        height: 20px;
    }

    #settings-toc .add-heading-button .icon svg {
        width: 100%;
        height: 100%;
    }

    .toc-actions .page-column-description {
        font-size: 16px;
    }

    #settings-toc .add-heading-button, #settings-toc .delete-heading-button {
        gap: 7px;
        margin-left: -2px;
        padding: 8px 12px 8px 8px;
    }

    .toc-tree-item {
        height: 49px;
    }

    .toc-item {
        height: 44px;
        border-radius: 5px;
        margin: 5px 0 5px var(--indentation);
    }

    #toc-tree-list .toc-inputs-wrapper {
        font-size: 1.7rem;
    }

    #toc-tree-list .toc-inputs-wrapper .name-wrapper .name {
        padding: 0 23px 0 10px;
    }

    #toc-tree-list .toc-inputs-wrapper .name-wrapper .name:hover::after {
        right: 7px;
        width: 16px;
        height: 16px;
        background-size: contain;
    }

    #toc-tree-list .toc-inputs-wrapper .page-number-wrapper .page-number:hover::after {
        left: 2px;
        width: 16px;
        height: 16px;
        background-size: contain;
    }

    #toc-tree-list .buttons-wrapper {
        padding: 0.9rem 1rem;
    }

    #toc-tree-list .buttons-wrapper button.btn {
        font-size: 1.6rem;
    }

    .toc-tree-item .toc-item.selected {
        height: 72px;
    }

    #toc-tree-list .selected .toc-inputs-wrapper .name-wrapper .name {
        margin-top: 8px;
    }

    #toc-container .subheadings-button {
        height: 44px;
        top: -12px;
    }

    .toc-tree-item:has(.selected) {
        height: 80px;
    }

    #toc-container .selected .subheadings-button {
        top: -2px;
        height: 72px;
    }

    #settings-toc .delete-heading-button {
        margin-left: auto;
    }

    .toc-actions button {
        font-size: 16px;
    }

    .delete-heading-button .icon svg {
        width: 20px;
        height: 20px;
    }

    #toc-tree-list .toc-inputs-wrapper :is(.name-input, .page-number-input) {
        padding-top: 4px;
        padding-bottom: 4px;
    }

    :root {
        --card-width: 360px;
    }

    #menu.collapsed {
        --menu-width: 100px;
    }

    #menu.collapsed .card-header h5 .btn {
        width: 65px;
        height: 65px;
    }

    #menu.collapsed .card {
        border-radius: 12px;
    }
    
    #menu.collapsed .card-header h5 .btn .icon {
        width: 26px;
        height: 26px;
    }

    #menu.collapsed .menu-footer .card-header h5 .btn > .btn-contents {
        gap: 5px;
    }

    .card-body-head .title {
        font-size: 20px;
    }

    .card-body-close .icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-body-close .icon svg {
        width: 20px;
        height: 20px;
    }

    #menu.collapsed .menu-body .card-header h5 .btn > .btn-contents .title {
        font-size: 14px;
    }

    #menu.collapsed .menu-header .btn.btn-link {
        font-size: 14px;
    }

    #menu.collapsed .menu-header .btn.btn-link .icon {
        width: 20px;
        height: 18px;
    }

    #menu.collapsed .menu-header .btn.btn-success {
        font-size: 1.4rem;
        width: 65px;
        height: 65px;
        min-height: 65px;
    }

    #menu.collapsed .menu__header__controls .btn.sm-save {
        gap: 5px;
    }

    #menu.collapsed .menu__header__controls .btn .icon {
        width: 26px;
        height: 26px;
    }

    #menu.collapsed .menu__header__controls .btn.sm-share .icon {
        width: 32px;
        height: 32px;
    }

    #menu.collapsed .menu__header__controls .btn .icon svg {
        width: 100%;
        height: 100%;
    }

    #menu.collapsed .menu-footer .card-header h5 .btn > .btn-contents > .title {
        font-size: 12px;
    }

    #menu.collapsed .menu-bottom {
        padding: 20px 10px 25px 10px;
        width: var(--menu-width);
        align-items: center;
        justify-content: center;
    }

    :is(.customize-title-wrapper, .card-body-head) .icon--crown {
        width: 22px;
        height: 22px;
    }

    html body .grey-tooltip .tooltip-inner {
        font-size: 16px !important;
        line-height: 22px !important;
    }
}
