* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
}
iframe{
    display: none !important;
}
body, html{
    height: 100%;
}
.main-container {
    background-attachment: fixed;
}
span.dd-menu-t > .dd-menu-t-box {
    z-index: 10000;
}
.biomaker-container {
    width: var(--grid-width);
    padding: 48px var(--gird-module-padding);
    max-width: 100%;
    min-height: 100vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.main-tools-wrapper {
    border: 1px solid var(--grid-module-border-color);
    display: flex;
    justify-content: center;
    gap: var(--gird-module-padding);
    align-items: center;
    padding: var(--gird-module-padding);
    border-radius: var(--grid-module-border-radius);
    transition: .2s ease-in-out all;
    position: relative;
    z-index: 200;
}
.main-tools-wrapper:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: var(--grid-module-background); */
    border-radius: var(--grid-module-border-radius);
    backdrop-filter: blur(40px);
}
.main-tools-wrapper.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    /* border-radius: 26px; */
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    /* background-color: rgba(66, 66, 128, 1); */
    /* box-shadow: rgba(0, 0, 0, 0.4) 0px 7px 6px; */
}
.main-tools-wrapper.sticky:before{
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
}
.main-tools-wrapper .main-button {
    background-color: var(--boxes-color);
    border: 1px solid var(--grid-module-border-color);
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    padding: 10px 10px;
    border-radius: 8px;
    cursor: pointer;
    /* transition: background .3s; */
    display: flex;
    gap: 10px;
    justify-content: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
}
.main-tools-wrapper .main-button.active {
    background-color: rgba(77, 77, 142, .2);
}

.main-tools-wrapper .main-button.disabled {
    color: #757373;
    cursor: not-allowed;
}
.main-tools-wrapper .main-button.disabled svg{
    fill: #757373;
}
.main-tools-wrapper .main-button:not(.disabled):hover {
    background-color: rgba(77, 77, 142, .2);
}

.main-button {
    position: relative;
    flex: 1 1;
}

.main-button-menu {
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    margin: auto;
    display: none;
    border-radius: 22px;
    background-color: var(--grid-module-background);
    border: 1px solid var(--grid-module-border-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.09), 0 6px 6px rgba(0, 0, 0, 0.13);
    cursor: default;
}

.main-button-menu.visible {
    display: block;
    z-index: 1000;
}

.main-button-menu::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid var(--grid-module-background);
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    margin: auto;
}

.section-types, .generate-options {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.section-type, .generate-option {
    padding: 10px;
    width: 100%;
    flex: 1 1;
    cursor: pointer;
    transition: background-color .1s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-type:hover, .generate-option:hover {
    background-color: var(--grid-module-background);
}

.section-type:first-child, .generate-option:first-child {
    -webkit-border-top-left-radius: 22px;
    -webkit-border-top-right-radius: 22px;
    -moz-border-radius-topleft: 22px;
    -moz-border-radius-topright: 22px;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
}

.section-type:last-child, .generate-option:last-child {
    -webkit-border-bottom-left-radius: 22px;
    -webkit-border-bottom-right-radius: 22px;
    -moz-border-radius-bottomleft: 22px;
    -moz-border-radius-bottomright: 22px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
}

.tooltip {
    position: absolute;
    opacity: 0;
    display: none;
    transition: opacity .1s;
    padding: 5px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, .6);
    max-width: 280px;
    color: #fff;
    font-size: 10px;
    z-index: 9999;
}

.tooltip.visible {
    display: block;
    opacity: 1;
}

.main-button-menu.main-background-menu::before {
    left: 125px;
    margin: unset;
    right: unset;
}

.main-button-menu.main-background-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-button-menu.main-background-menu.visible {
    display: flex;
}

.backgroud-url-wrapper {
    width: 780px;
    padding: 10px;
    display: flex;
    gap: 10px;
}

.backgroud-url-wrapper.hidden {
    display: none;
}

.backgroud-url-wrapper input {
    width: 650px;
    border-radius: 100px;
    border: none;
    padding: 10px;
    border: 2px solid transparent;
    transition: .2s ease-in-out all;
    font-size: 12px;
    color: #000;
}

.backgroud-url-wrapper input:hover {
    border-color: #242451;
}

.backgroud-url-wrapper input:focus {
    border-color: #242451;
}

.backgroud-url-wrapper button {
    flex: 1;
    border-radius: 100px;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 12px;
    background: var(--gradient-background-three);
    color: #fff;
    font-weight: 500;
    transition: .2s ease-in-out all;
}

.backgroud-url-wrapper button:hover {
    background: var(--gradient-background-three);
}

.main-background-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-background-container.hidden {
    display: none;
}

.main-background-wrapper {
    width: 700px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    gap: 10px;
}

.main-background-gallery {
    display: flex;
    width: fit-content;
    transition: transform 0.3s ease-in-out;
    gap: 10px;
}

.gallery-arrow-handler:not(.disabled):hover {
    transform: scale(1.3);
    transition: .2s ease-in-out all;
}

.gallery-arrow-handler.disabled {
    opacity: .2;
}

.main-background-item {
    width: 163px;
    height: 111px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid var(--grid-module-border-color);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: all 0.1s ease-in-out;
}

.main-background-item.active {
    border-color: #fff;
}

.main-background-item:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
    border-color: #fff;
}

.main-background-tools {
    width: 700px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}
.switch-wrapper{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.main-background-options {
    display: flex;
    justify-content: center;
}

.main-background-options input {
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
    display: none;
}

.main-background-options input:checked+label {
    background: var(--gradient-background-three);
    color: white;
    font-weight: 500;
    /* box-shadow: 0 7px 20px rgba(0, 0, 0, 0.09), 0 6px 6px rgba(0, 0, 0, 0.13); */
}

.main-background-options label {
    display: inline-block;
    width: 100px;
    background-color: rgba(255,255,255,.1);
    border: 1px solid var(--grid-module-border-color);
    color: #a5adb7;
    text-align: center;
    font-size: 12px;
    padding: 6px 6px;
    float: left;
    transition: all 0.1s ease-in-out;
}

.main-background-options label:hover {
    cursor: pointer;
}

.main-background-options label:first-of-type {
    border-radius: 100px 0 0 100px;
}

.main-background-options label:last-of-type {
    border-radius: 0 100px 100px 0;
}

.gallery-arrow-handler {
    font-size: 32px;
    background-color: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: filter 0.1s ease-in-out, transform 0.1s ease-in-out;
}

.gallery-arrow-handler[disabled] {
    opacity: 0.2;
    cursor: default;
}

.gallery-arrow-hanlder:not([disabled]):hover {
    filter: brightness(1.2);
    transform: scale(1.3);
}

.section-tool-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px;
    width: 100%;
}

.section-tool-wrapper label, .editor-toolbar label {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
}

.section-tool-wrapper:not(:last-child):not(.inline) {
    border-bottom: 1px solid #333368;
}

.section-tool-wrapper.inline{
    gap: 10px;
}
.section-tool-group{
    display: flex;
    justify-content: center;
    align-items: center;
}
.range-slider {
    width: 80%;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none;
    border-radius: 15px;
    height: 4px;
    background: #fff;
}

/* .range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 15px;
    width: 15px;
    background-color: #675cd7;
    border-radius: 50%;
    border: none;
    transition: .2s ease-in-out;
}

.range-slider::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background-color: #675cd7;
    border-radius: 50%;
    border: none;
    transition: .2s ease-in-out;
} */
.range-slider::-webkit-slider-thumb{
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 0 1px #b5b5b5;
    position: relative;
    z-index: 100;
}

.section-tool-wrapper .range-slider+span {
    margin-top: -16px;
    font-size: 12px;
    font-weight: normal;
}
.tool-switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 16px;
}
.tool-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.switch-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 17px;
    cursor: pointer;
    transition: background-color 0.4s;
}
.switch-slider:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 16px;
    left: 0px;
    bottom: 0px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.4s;
}
.tool-switch input:checked + .switch-slider {
    background-color: var(--button-color-one);
}
.tool-switch input:checked + .switch-slider:before {
    transform: translateX(14px);
}
.bio-canvas {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    gap: 55px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: background-image 0.5s ease-in-out;
    padding: 25px 0;
}
.bio-canvas.started{
    min-height: 100vh;
}
.bio_section {
    width: 800px;
    min-height: 100px;
    /* background-color: rgba(255, 255, 255, 0.2); */
    padding: 25px;
    transition: transform .5s ease-in-out;
}
.bio_section span{
    font-family: inherit;
}
.bio_section.image_only{
    padding: 0;
    overflow: hidden;
    line-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.bio_section.image_only .image-message{
    color: #e1e1e1;
}
.bio_section.image_only .image-message.hidden{
    display: none;
}
.text_box {
    word-wrap: break-word;
    cursor: text;
    font-family: arial;
}
.text_box.disabled{
    cursor: default;
}
.text_box p{
    font-family: "Arial";
}
.bio_section.disabled:hover{
    transform: scale(1.02);
}
.tip_menu{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    background-color: unset;
    box-shadow: unset;
    gap: 20px;
}
.tip_menu_title{
    width: 100%;
    height: 45px;
}
.tip_menu_title input{
    width: 100%;
    height: 100%;
    background: none;
    user-select: none;
    padding: 10px;
    /* border: 2px solid transparent; */
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    font-family: "Arial";
    color: #fff;
    outline: 1px solid transparent;
    outline-offset: 3px;
}
.tip_menu_title input.active{
    /* border-color: rgba(163,159,195,.6); */
    outline-color: rgba(163,159,195,.6);
}
.tip_menu_body{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tip_menu_row{
    width: 100%;
    display: flex;
    gap: 10px;
    height: 45px;
}
.tip_menu_row input{
    padding: 12px 15px;
    background-color: unset;
    /* border: none; */
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    font-family: "Arial";
    outline: 1px solid transparent;
    outline-offset: 3px;
    height: 100%;
}
.tip_menu_row input.active{
    /* border-color: rgba(163,159,195,.6); */
    outline-color: rgba(163,159,195,.6);
}
/* Estilizar el color del marcador de posición */
.tip_menu_row input::placeholder {
    /* color: #ccc; */
}
.tip_menu_row input:nth-child(1){
    width: 522px;
}
.tip_menu_row input:nth-child(2){
    flex: 1;
}
.tip_menu_delete{
    width: 50px;
    border-radius: 25px;
    background-color: var(--button-color-one);
}
.add_row{
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    user-select: none;
    transition: all .1s ease-in-out;
    padding: 5px;
    background-color: var(--button-color-one);
    border-radius: 5px;

}
.add_row.hidden{
    display: none;
}
.add_row svg{
    width: 20px;
    height: 20px;
}
.add_row:hover, .delete_row:hover{
    transform: scale(1.1);
    color: #fff;
}
.delete_row{
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all .2s ease-in-out;
    cursor: pointer;
    user-select: none;
    background: var(--button-color-one);
    width: 30px;
}
.delete_row.visible{
    display: flex;
}
.delete_row svg{
    width: 18px;
    height: 18px;
}
.editor-wrapper {
    /* border: 1px solid #212150; */
    padding: 12px;
    /* border-radius: 32px; */
    /* background-color: rgba(45, 45, 97, 1); */
    border: 1px solid var(--grid-module-border-color);
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    transition: border .2s ease-in-out;
    gap: 10px;
}

.editor-wrapper:hover {
    /* border: 2px solid rgba(66, 66, 128, 1); */
}

.editor-toolbar {
    display: flex;
    justify-content: space-between;
    background-color: var(--grid-module-background);
    backdrop-filter: blur(40px);
    border-radius: 12px;
    padding: 5px;
    transition: background-color .2s ease-in-out;
}
.editor-toolbar .format-tools{
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}
.editor-wrapper:hover .editor-toolbar {
    /* background-color: rgba(66, 66, 128, 1);} */
}

.editor-toolbar .tool-divider {
    width: 1px;
    height: 30px;
    background-color: #26265a;
    margin: 0 5px;
}

.editor-toolbar .tool-button {
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
    background: none;
    border: none;
}
.editor-toolbar .tool-button .picked-color{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Times New Roman";
    font-size: 16px;
}
.editor-toolbar .tool-button .picked-color svg{
    width: 18px;
    height: 18px;
}
.editor-toolbar .tool-button .picked-color span{
    height: 4px;
    width: 60%;
    background-color: #fff;
    border-radius: 50px;
}
.editor-toolbar .tool-button .pickr{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
}
.editor-toolbar .tool-button:hover,
.editor-toolbar .select-item:not(.setting-tools):hover {
    background-color: var(--grid-module-background);
}
.editor-toolbar .tool-button.active,
.editor-toolbar .select-item.active:not(.setting-tools){
    background-color: var(--grid-module-background);
}
.editor-toolbar .select-item {
    background-color: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    line-height: 30px;
    height: 30px;
    padding: 5px;
    cursor: pointer;
    border-radius: 5px;
}
/* .editor-toolbar .select-item::before{
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid #42427f;
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    margin: auto;
} */
.editor-toolbar .select-item:not().setting-tools::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
}
.editor-toolbar .select-item.setting-tools span{
    display: flex;
}
.editor-toolbar .select-item .active-option {
    user-select: none;
    display: flex;
}

.editor-toolbar .select-item#font-size .option-wrapper {
    width: 100px !important;
}

.editor-toolbar .select-item.text-align .option-wrapper {
    width: unset;
}

.editor-toolbar .select-item.text-align .option-wrapper .option-item {
    display: flex;
    align-items: center;
}

.editor-toolbar .select-item .option-wrapper {
    border: 1px solid var(--grid-module-border-color);
    position: absolute;
    left: 0;
    top: 35px;
    width: 160px;
    background-color: rgba(0,0,0,.8);
    backdrop-filter: blur(12px);
    color: #fff;
    user-select: none;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 5px;
    display: none;
}
.editor-toolbar .select-item.setting-tools .option-wrapper{
    left: unset;
    right: -5px;
}
.editor-toolbar .select-item .option-wrapper.visible {
    display: block;
}

.editor-toolbar .select-item.text-align .option-wrapper.visible {
    display: flex;
}

.editor-toolbar .select-item .option-wrapper .option-item {
    padding: 5px;
    cursor: pointer;
    font-size: 12px;
}
.editor-toolbar .select-item .option-wrapper .option-item.submenu{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.editor-toolbar .select-item .option-wrapper .option-item:hover {
    background-color: #333365;
}
.editor-toolbar .image-url-wrapper{
    display: flex;
    justify-content: space-between;
    gap: 5px;
    height: 30px;
}
.editor-toolbar .image-url-wrapper input{
    width: 400px;
    height: 100%;
    border-radius: 8px;
    border: none;
    padding: 0 10px;
    border: 1px solid var(--grid-module-border-color);
    transition: .2s ease-in-out all;
    font-size: 12px;
    background-color: var(--grid-module-background);
}   
.editor-toolbar .image-url-wrapper button {
    flex: 1;
    border-radius: 8px;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 12px;
    background-color: var(--button-color-one);
    color: #fff;
    font-weight: 500;
    transition: .2s ease-in-out all;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .editor-toolbar .image-url-wrapper button:hover {
    background-color: #2f2f62;
} */
.editor-toolbar .image-url-wrapper button.hidden{
    display: none;
}

.editor-toolbar .hidden-tool{
    display: none;
}
.editor-toolbar .section-box-settings{
    position: relative;
}
.editor-toolbar .section-box-settings-wrapper{
    flex: 1 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.editor-toolbar .section-tools-box{
    position: absolute;
    right: -54px;
    padding: 10px;
    top: 42px;
    background: rgba(0, 0, 0, .8);
    border: 1px solid var(--grid-module-border-color);
    border-radius: 10px;
    display: flex;
    gap: 10px;
}
.editor-toolbar .section-tools-box::before{
    content: '';
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(0, 0, 0, .8);
    position: absolute;
    top: -6px;
    right: 62px;
    margin: auto;
}
.editor-toolbar .section-tools-box.hidden{
    display: none;
}
.editor-toolbar .section-tools-divider{
    width: 1px;
    border: 1px solid;
    border-color: #333368;
}
.editor-toolbar .section-tools-group{
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.editor-toolbar .section-tools-group .section-tools-head{
    color: #fff;
    font-size: 12px;
}
.editor-toolbar .section-tools-items{
    display: flex;
    flex-direction: column;
}
.editor-toolbar .section-tools-item{
    display: flex;
    align-items: center;
    gap: 5px;
}
.editor-toolbar .section-tools-item .tool-button:hover{
    background-color: transparent;
}
.editor-toolbar .section-tools-box .range-slider{
    width: unset;
}
.editor-toolbar .section-tools-box .section-picked-color{
    width: 100%;
    height: 16px;
    border-radius: 5px;
    border: 1px solid #333368;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}
.editor-toolbar .section-tools-box .section-picked-color span,
.editor-toolbar .section-tools-box .section-picked-color .pickr{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.editor-toolbar .section-tools-box .section-picked-color .pickr button{
    opacity: 0;
    width: 100%;
}
/* .editor-toolbar .section-tools-box .range-slider{
    width: 100%;
} */
/* Color picker */

#color-picker {
    border: 3px solid rgba(15, 15, 15, 0.2);
}
.pcr-app.color-picker.visible{
    border: 1px solid var(--grid-module-border-color);
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--grid-module-background);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
.pcr-app .pcr-interaction .pcr-result{
    color: #000;
    font-weight: 600;
}
.info {
    width: 12em;
    display: flex;
    margin-left: 4em;
    flex-direction: row;
    justify-content: space-between;
}

/* .selected {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 2px solid rgba(15, 15, 15, 0.2);
} */


/*Preview*/

.preview-modal{
    /* position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #fff;
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, .85);
    opacity: 0;
    transform: scale(.8);
    transition: all .2s ease-in-out;
    overflow-y: auto; */
}
.preview-modal.visible{
    opacity: 1;
    transform: scale(1);
}
.preview-wrapper{
    /* width: 100%;
    height: 100%;
    max-width: 1024px;
    padding: 25px;
    border-radius: 10px; */
}
#preview-modal ul.full{
    min-height: 100vh;
}
#close-modal{
    position: fixed;
    right: 50px;
    top: 50px;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    color: #fff;
    border: 3px solid #42427f;
    background-color: #42427f;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform .2s;
    z-index: 9999;
}
#close-modal:hover{
    transform: scale(1.3);
}
div#preview-modal::-webkit-scrollbar{
	-webkit-border-radius: 45px;
	-moz-border-radius: 45px;
	border-radius: 45px;
	width: 10px;
}
div#preview-modal::-webkit-scrollbar-track {
	-webkit-border-radius: 45px;
	-moz-border-radius: 45px;
	border-radius: 45px;
	background-color: #303061;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
div#preview-modal::-webkit-scrollbar-thumb {
	-webkit-border-radius: 45px;
	-moz-border-radius: 45px;
	border-radius: 45px;
  	background-color: #605faa;
}
/* Button Creator Slider */
.social-slider{
    border: 1px solid var(--grid-module-border-color);
    position: fixed;
    left: 0;
    top: 0;
    width: 480px;
    max-height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
    padding: var(--gird-module-padding);
    font-family: arial;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
    border-top-right-radius: var(--grid-module-border-radius);
    border-bottom-right-radius: var(--grid-module-border-radius);
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    -webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.4);
    transition: .2s all;
    z-index: 9999;
}
.social-slider.hidden{
    width: 88px !important;
}
.slider-tab{
    position: fixed;
    -webkit-border-top-right-radius: var(--grid-module-border-radius);
    -webkit-border-bottom-right-radius: var(--grid-module-border-radius);
    -moz-border-radius-topright: var(--grid-module-border-radius);
    -moz-border-radius-bottomright: var(--grid-module-border-radius);
    border-top-right-radius: var(--grid-module-border-radius);
    border-bottom-right-radius: var(--grid-module-border-radius);
    border-top: 2px solid var(--grid-module-border-color);
    border-right: 2px solid var(--grid-module-border-color);
    border-bottom: 2px solid var(--grid-module-border-color);
    /* border-left: 2px solid var(--grid-module-border-color); */
    left: 480px;
    top: 50px;
    bottom: 0;
    /*margin: auto;*/
    height: 242px;
    /*width: 45px;*/
    background: rgba(255, 255, 255, .5);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: "Open Sans";
    text-align: center;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    box-sizing: border-box;
    cursor: pointer;
    user-select: none;
    font-size: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: .2s all;
    z-index: 9999;
}
.slider-tab.docked{
    left: 87px;
}
.tab-text{
    writing-mode: tb-rl;
    letter-spacing: 3px;
    transform: rotate(-180deg);
    font-size: 12px;
    font-family: "Open Sans";
}
.social-body{
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.social-field{
    display: flex;
    /* justify-content: space-between; */
    gap: 12px;
    align-items: center;
    width: 455px;
    max-width: 100%;
    margin: auto;
    /* width: 100%; */
}
/* .social-field:not(:last-child){
    margin-bottom: 5px;
} */
.social-field span{
    width: 68px;
    height: 100%;
    color: #fff;
    font-size: 20px;
    box-sizing: border-box;
    font-family: arial;
    display: flex;
    align-items: center;
}
.social-field span img{
    width: 34px;
}

.social-field input{
    outline: none;
    padding: 7.7px 10px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid var(--grid-module-border-color);
    font-family: arial;
    width: 633px;
    font-size: 16px;
    background: rgba(255,255,255,.1);
    display: none;
}
.social-field input.invalid{
    background-color: #d29494;
}
.tab-arrow{
    display: none;
}
.tab-arrow.active{
    display: block;
}


.trophy-slider{
    border: 2px solid #191938;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 480px;
    min-height: 254px;
/*    min-height: 200px;*/
    padding: 10px;
    font-family: arial;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background: rgba(30,30,70,1);
    -webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.4);
    transition: .2s all;
    overflow: hidden;   
    display: flex;
}
.trophy-slider.hidden{
    width: 59px !important;
}
.trophy-section{
    display: flex;
}
.trophy-docked{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 230px;
}
.trophy-docked div img{
    filter: brightness(1.1);
}
.trophy-docked img{
    width: 33px;
    margin: 5px 0;
}
.trophy-images-gold, .trophy-images-silver{
    padding: 10px 0;
    display: flex;
    gap: 5px;
    justify-content: space-around;
    margin: auto;
    margin-top: 10px;
}
.trophy-images {
    margin-top: 10px;
    padding: 10px 0;
    display: flex;
    justify-content: center;
}
div.social-slider::-webkit-scrollbar, 
div.option-wrapper::-webkit-scrollbar{
	width: 10px;
}
div.social-slider::-webkit-scrollbar-track, 
div.option-wrapper::-webkit-scrollbar-track {
    background: transparent;
}
div.social-slider::-webkit-scrollbar-thumb, 
div.option-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    border: 2px solid transparent;
    background-clip: content-box;
}
.trophy-cont{
    /* border: 1px solid; */
    /* padding: 0 0 0 15px; */
    width: 100%;
    display: none;
}
.trophy-cont span {
    color: #fff;
    text-align: center;
    font-family: helvetica;
    display: block;
    font-size: 15px;
    padding: 8px 0;
    font-weight: bold;
    margin-top: 15px;
}
.trophy-img{
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    padding: 5px;
    border: 1px solid transparent;
}
.trophy-img.selected{
    border: 1px solid var(--grid-module-border-color);
    border-radius: 5px;
    background: #db4cff;
}
.trophy-user{
    /* height: 75px; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gird-module-padding);
    flex-wrap: wrap;
    text-align: center;
    color: #fff;
    user-select: none;
}
.trophy-user span{
    width: 100%;
}
#check-btn, #model-name{
    outline: none;
    padding: 7.7px 10px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid var(--grid-module-border-color);
    font-family: arial;
    width: 100%;
    background: rgba(255,255,255,.1);
    display: inline-block;
}
#model-name {
    width: 74%;
}
#check-btn{
    background-color: var(--button-color-one);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    width: 26%;
    flex: 1;
    margin-top: unset;
}
#model-name + font{
    height: 34.38px;
}
.trophy-tab{
    position: fixed;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top: 2px solid #191938;
    border-right: 2px solid #191938;
    border-bottom: 2px solid #191938;
    border-left: 2px solid #191938;
    left: 480px;
    bottom: 100px;
    margin: auto;
    height: 120px;
    /*width: 45px;*/
    background: #18183a;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: "Satoshi";
    text-align: center;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    box-sizing: border-box;
    cursor: pointer;
    user-select: none;
    font-size: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: .2s all;
}
.trophy-tab.docked{
    left: 59px;
}
.trophy-img.greyed{
    /* -webkit-filter: grayscale(70%);
    -moz-filter: grayscale(70%);
    -o-filter: grayscale(70%);
    -ms-filter: grayscale(70%);
    filter: grayscale(70%); */
    opacity: .3;
    /* filter: sepia(100%) hue-rotate(190deg) saturate(135%); */
    cursor: default;
}
.switch {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 26px;
	vertical-align: middle;
	margin-left: 5px;
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #26265c;
	/* -webkit-transition: .2s;
	transition: .2s; */
}
.slider:before {
	position: absolute;
	content: "";
	height: 22px;
	width: 21px;
	left: 3px;
	bottom: 2px;
	background-color: white;
	/* -webkit-transition: .2s;
	transition: .2s; */
	box-shadow: 0 7px 8px -2px #252559;
	-webkit-box-shadow: 0px 7px 8px -2px rgba(2,2,48, .4); 
}
.options_cont {
    display: none;
    width: 100%;
    margin: auto;
    margin: var(--gird-module-padding) auto;
    background-color: rgba(255,255,255,.1);
    border: 1px solid var(--grid-module-border-color);
    padding: 25px;
    border-radius: 12px;
    /* -webkit-box-shadow: 0px 0px 16px 2px #1e1e3f;
    box-shadow: 0px 0px 16px 2px #1e1e3f; */
}
.tools {
    color: #fff;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.align_title {
    margin-bottom: 15px;
    text-align: center;
}
hr {
    border-color: var(--grid-module-border-color);
    width: 100%;
    margin: 20px 0;
    opacity: .3;
}
.align label{
    margin-right: 10px;
}
.trophy-position, .trophy-align {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
input[name=opt]:checked + .slider{
  	background-color: #8F89F0;
}
input[name=opt]:focus + .slider{
  	/*box-shadow: 0 0 1px #2196F3;*/
}
input[name=opt]:checked + .slider:before{
	-webkit-transform: translateX(22px);
	-ms-transform: translateX(22px);
	transform: translateX(22px);
}
.slider.round {
  border-radius: 50px;
}
.slider.round:before {
  border-radius: 50%;
}

.section-margin{
    font-family: "Satoshi";
    margin: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 360px;
}
.section-margin span{
    font-family: "Satoshi";
}
.gap-value{
    width: 43px;
    text-align: left;
}


.icons_cont{
    width: 100%;
    float: right;
    display: none;
    margin-bottom: var(--gird-module-padding);
    background-color: rgba(103,92,215,.2);
    border-radius: 5px;
    padding: 10px;
}
.icons{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.icons .type_icon{
    width: 32px;
    height: 32px;
    background-size: contain;
    background-position: center;
    cursor: pointer;
    border-radius: 5px;
    /*border-radius: 10px;*/
}
.type_icon:hover{
    background-color: rgba(255,255,255,.2);
}
.type_icon.selected{
    border-color: #675cd7;
    background-color: rgba(99,96,227,.5);
    border-radius: 5px;
    padding: 5px;
    /*border-radius: 5px;*/
}
.sizes_cont{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    border-top: 1px solid var(--grid-module-border-color);
    padding-top: 10px;
}
.size_button{
    border-radius: 100px;
    background-color: var(--grid-module-background);
    color: white;
    font-family: helvetica;
    padding: 3px 15px;
    font-size: 14px;
    text-align: center;
    /*font-weight: bold;*/
    cursor: pointer;
}
.size_button:not(:first-child){
    display: none;
}
.size_button.selected{
    background-color: var(--button-color-one);
}

.slideUp-fadeOut {
    animation: slideUpFadeOutAnimation 0.6s ease;
  }

  @keyframes slideUpFadeOutAnimation {
    0% {
      opacity: 1;
      transform: translateY(0);
    }
    100% {
      opacity: 0;
      transform: translateY(-30px);
    }
  }
