.pop1 {
    display: none;
}

.pop1 .invisible {
    display: none;
}

/* loading */

#pop1-loading {
    display: none;
    user-select: none;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2B42C7;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: 1000;
    font-size: 12pt !important;
    width: max-content;
    padding: 24pt;
    color: #fff;
    gap: 16px;
}

#pop1-loading .rq-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    transform-origin: center;
    animation: pop1-rq-spin 1s linear infinite;
}

@keyframes pop1-rq-spin {
to {
transform: rotate(360deg);
}
}

#pop1-loading .rq-text {
    font-weight: 500;
    letter-spacing: 0.3px;
    text-align: center;
}

/* pop-1 */

.pop1-visible {
    display: flex;
    user-select: none;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
    z-index: 1000;
    font-size: 12pt !important;
    width: max-content;
    max-width: 600px;
}

@media screen and (max-width: 600px){

    .pop1-visible {
        
        position: fixed;
        left: 0;
        top: 50pt;
        width: 100vw;
        height: 100%;
        transform: unset;
    }
}

@media screen and (min-width: 601px) and (max-width: 1100px){
    .pop1-visible {
        width: 80%;
    }
}

.pop1 .close-button {
  cursor: pointer;
}

.pop1 .centered {
    text-align: center;
}

.pop1 .pop-body .bg {
    background: #24369F;
    color: white;
    border: 1px solid white;
    border-radius: 7px;
    padding: 5pt;
    background: linear-gradient(131deg,rgba(36, 54, 159, 1) 0%, rgba(39, 75, 219, 1) 50%, rgba(88, 103, 191, 1) 100%);
}

.pop1 .pop-body .bg2 {
    background: #2c9f24;
    background: linear-gradient(166deg,rgb(44, 159, 36) 0%, rgb(39, 219, 81) 31%, rgb(233, 255, 82) 100%);
}

.pop1 .pop-body .bg3 {
    background: #eee;
    background: linear-gradient(166deg,rgb(224, 224, 224) 0%, rgb(255, 255, 255) 31%, rgb(51, 51, 51) 100%);
}

.pop1 .inner {
    display: flex;
    flex-direction: column;
    gap: 0pt;
    background: white;
    width: 100%;
}

@media screen and (max-width: 600px){
    .pop1 .actions button {
        font-size: small;
        padding: 5pt;
    }
}

.pop1 .pop-head {
    display: grid;
    grid-template-columns: 9fr 1fr;
    align-items: center;
    font-weight: bold;
    color: white;
    width: 100%;
    height: 45px;
}

.pop1 .pop-head div, .pop1 .pop-head button {
    margin: 3pt;
}

.pop1 .pop-head button {
    height: 16px;
    width: 16px;
    padding: 15px;
    font-size: 12px;
    justify-self: end;
}

.pop1 .pop-body {
    display: flex;
    flex-direction: column;
    gap: 10pt;
    padding: 10pt;
}

.pop1 .pop-body .h {
    cursor: pointer;
}

.pop1 .pop-body .h:hover {
    opacity: 0.9;
}

.pop1 .pop-body .h:hover .t {
    color: yellow;
}

.pop1 .pop-foot {
    background-color: #eee;
    padding: 10pt;
    text-align: center;
}

.pop1 .t {
    font-size: 15px;
    color: white;
    font-weight: bold;
    text-shadow: 0px 0px 3px black;
    word-break: keep-all;
    line-height: 1.2;
}

.pop1 .st {
    font-size: small;
    color: white;
    font-weight: normal;
    line-height: 1.2;
}

@media screen and (max-width: 600px){
    .pop1 .t {
        font-size: 10px;
    }
    .pop1 .st {
        font-size: 8px;
    }
}

.pop1 .services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10pt;
}

.pop1 .services .b {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 10pt;
    padding: 20pt;
}

.pop1 .info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10pt;
}

@media screen and (max-width: 600px){
    .pop1 .services .b {
        padding: 10pt;
    }

    .pop1 .info {
        display: flex;
        flex-direction: column; 
        gap: 10pt;
    }
}

.pop1 .info .t, .pop1 .info .st {
    color: black;
    text-shadow: unset;
}

.pop1 .info .item {
    display: flex;
    flex-direction: row;
    gap: 10pt;
    padding: 10pt;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.pop1 .info .item img {
    filter: invert();
}

.pop1 .info .item-body {
    display: flex;
    flex-direction: column;
    gap: 3pt;
    width: 100%;
    justify-content: center;
}

/* transiciones entre dialogos */

.pop1 .inner.hidden {
transform: translateX(-100%);
opacity: 0;
}

.pop1 > .inner {
transition: transform 0.35s ease, opacity 0.35s ease;
width: 100%;
}

/* upload-your-design panel */

