.df-card {
    display: none;
}
.df-card.active {
    display: block;
}

.cf-card {
    display: none;
}
.cf-card.active {
    display: block;
}

.post__content iframe {
    max-width: 100%;
    max-height: 400px;
}

.custom__modal {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
.custom__modal.active {
    display: flex;
}
.custom__modal .modal__box {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 5px;
    padding: 20px;
    background-color: #fff;
}

.custom__modal .modal__box form {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.custom__modal .modal__box form select,
.custom__modal .modal__box form input {
    width: 100%;
    height: 50px;
    border-radius: 3px;
    padding-left: 15px;
    border: 1px solid #d7d7d7;
    margin-bottom: 10px;
}

.custom__modal .modal__box form label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.custom__modal .modal__box form button {
    width: 100%;
    height: 50px;
    border-radius: 3px;
    background-color: green;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border: 0px;
    cursor: pointer;
}
