.dialog {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0vw;
    left: 0vw;
    border: none;
    background: none;
    padding: 0vw;
    outline: none;
    display: none;
    z-index: 998;
    overflow: hidden;
}

.dialog.active {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.dialog .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    transition: 0.4s;
}

.dialog.active .bg {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(var(--blur));
}

.dialog .main {
    padding: 5vw;
    padding-top: 4vw;
    border-top-left-radius: 6vw;
    border-top-right-radius: 6vw;
    width: 90vw;
    background: var(--bg-color);
    color: var(--word-color);
    position: absolute;
    bottom: -20vw;
    opacity: 0;
    left: 0vw;
    text-align: center;
    overflow: hidden;
    transition: 0.2s;
}

.dialog .main.active {
    opacity: 1;
    transform: translateY(-20vw);
}

.dialog .main .bar {
    background: grey;
    border-radius: 8vw;
    width: 15vw;
    margin-left: 37.5vw;
    height: 1.5vw;
    border: none;
    position: relative;
    margin-bottom: 6vw;
    z-index: 1;
    opacity: 0.5;
}

.dialog .main .title img {
    width: 20vw;
    margin-bottom: 6vw;
}

.dialog .main .title {
    position: relative;
}

.dialog .main .text {
    margin-top: 4vw;
    position: relative;
}

.dialog .main .option .text {
    margin-top: 0vw;
}

.dialog .main .options .option a {
    color: var(--words-color);
    text-decoration: none;
}

.dialog .fields {
    text-align: left;
}

.dialog .buttons {
    margin-top: 6vw;
}

.dialog .buttons button {
    width: 100%;
    margin-bottom: 4vw;
}

.dialog .buttons button:last-of-type {
    margin-bottom: 0vw;
}

.dialog .buttons.dual button {
    width: 42.5vw;
    margin-bottom: 0vw;
}

.dialog .buttons.dual button:first-of-type {
    margin-right: 2vw;
}

.dialog .pfp {
    width: 20vw;
    height: 20vw;
    border-radius: 100%;
    overflow: hidden;
    background: red;
    display: inline-grid;
    place-items: center;
    margin-bottom: 6vw;
}

.dialog .main .title .pfp img {
    width: 100%;
    margin-bottom: 0vw;
}

.dialog .main .circle_loader {
    width: 6vw;
    height: 6vw;
    border: 1.75vw solid var(--bgs-color);
    border-top: 1.75vw solid var(--bgt-color);
    display: inline-block;
    border-radius: 50%;
    margin-top: 8vw;
    margin-bottom: 6vw;
    animation: circle_loader 0.5s infinite linear;
}

@keyframes circle_loader {
    0% {
        rotate: 0deg;
    }

    100% {
        rotate: 360deg;
    }
}

.dialog .bancolombia img {
    filter: invert(var(--invert));
}

/*Asociado*/
.dialog .asoc {
    background: var(--bgs-color);
    padding: 4vw;
    position: relative;
    border-radius: 3vw;
    overflow: hidden;
    text-align: left;
    margin-top: 4vw;
}

.dialog .asoc .bg {
    width: 55%;
    height: 100%;
    position: absolute;
    right: 0vw;
    top: 0vw;
    text-align: right;
    opacity: 0.4;
}

.dialog .asoc .bg .deg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0vw;
    top: 0vw;
    background: linear-gradient(90deg, var(--bgs-color) 0%, rgba(0,0,0,0) 100%);
}

.dialog .asoc .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dialog .asoc .img {
    display: inline-grid;
    place-items: center;
    width: 12vw;
    height: 12vw;
    margin-top: 1vw;
    border-radius: 50%;
    overflow: hidden;
    background: var(--main-color);
}

.dialog .asoc .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dialog .asoc .img b {
    display: inline-block;
    font-size: 6vw;
}

.dialog .asoc .data {
    display: inline-grid;
    position: relative;
    place-items: center;
    height: 14vw;
    vertical-align: top;
    margin-left: 3vw;
}

.dialog .asoc p {
    color: var(--words-color);
    font-size: var(--fs);
    margin-top: 0.5vw;
}

.dialog .pfp_preview {
    width: 25vw;
    height: 25vw;
    overflow: hidden;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    margin-bottom: 6vw;
    margin-top: 2vw;
}

.dialog .pfp_preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dialog .vid_qr {
    width: 40vw !important;
    border-radius: 3vw;
}

.dialog .movie_bg {
    width: 100vw;
    position: absolute;
    left: 0vw;
    top: 0vw;
    height: 100%;
    overflow: hidden;
}

.dialog .movie_bg .deg {
    height: 70%;
    width: 100%;
    position: absolute;
    bottom: 0vw;
    left: 0vw;
    background: linear-gradient(0deg, var(--bg-color) 40%, rgba(0,0,0,0) 100%);
}

.dialog .movie_bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0vw;
    top: 0vw;
    object-fit: cover;
    opacity: 0.4;
}

.dialog .movie_fill {
    height: 20vw;
}

.dialog .title .movie_logo {
    width: 80vw !important;
    margin-bottom: 0vw !important;
}