/*------------------------------------
    ?MODAL CONTENIDO COMPLEMENTARIO
 ------------------------------------*/

.mcModal {
    --color__comple1: #FFDA00;
    --color__comple2: #000;

    z-index: 999;
    background-color: rgba(0, 0, 0, 0);
    padding: 15px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
}

.mcModal--active {
    visibility: visible;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color .4s;
}

.mcModal--active .mcModal__header,
.mcModal--active .mcModal__content {
    opacity: 1;
    transform: translateY(0);
}

.mcModal__background {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.mcModal__container {
    max-width: 1360px;
    width: 100%;
    min-height: calc(100% - 80px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.mcModal__content {
    width: 100%;
    min-height: 30px;
    height: 100%;
    max-height: 100vh;
    background-color: #fff;
    border-radius: 10px;
    opacity: 0;
    transition: transform .6s, opacity .6s;
    transform: translateY(-100px);
    border: 7px solid var(--color__comple1);
}

.mcModal__header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    line-height: 1.2;
    color: #fff;
    position: relative;
    opacity: 0;
    transition: transform .6s, opacity .6s;
    transform: translateY(-100px);
    z-index: 1;
}

.mcModal__close {
    position: absolute;
    right: -7px;
    top: -7px;
    border: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: var(--color__comple2);
    border-radius: 50%;
    transition: background-color .3s;
    transition: all .3s;
}

.mcModal__close:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.mcModal__closeIcon {
    width: 13px;
}

.mcModal__closeIcon path {
    fill: #fff;
}

.mcModal__body {
    padding: 5px 30px 15px;
}

.mcModal__body .mcModal__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}