.cod-alert-modal-component {
    background-color: rgba(0, 0, 0, 0.75);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
}

    .cod-alert-modal-component.hidden {
        display: none;
        visibility: hidden;
    }

.cod-alert-modal {
    background-color: #7F261E;
    padding: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 575px;
    width: 100%;
}

.cod-alert-modal__container {
    position: relative;
}

.cod-alert-modal__content h2 {
    color: #fff;
    line-height: 1.2;
    margin-bottom: 40px;
    text-align: center;
}

.cod-alert-modal__buttons-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.cod-alert-modal__button {
    background-color: none;
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    letter-spacing: 2px;
    padding: 12px 17px;
}

.cod-alert-modal__denied-button {
    background-color: #7F261E;
    border-color: #fff;
    color: #fff;
    margin-right: 15px;
}

.cod-alert-modal__verified-button {
    background-color: #FEDA7E;
    border-color: #FEDA7E;
}

@media screen and (max-width: 1200px) {
    .cod-alert-modal {
        padding: 40px 50px;
    }
}

@media screen and (max-width: 991px) {
    .cod-alert-modal h2 {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {
    .cod-alert-modal {
        max-width: calc(100% - 20%);
    }
}

@media screen and (max-width: 575px) {
    .cod-alert-modal {
        padding: 40px 20px;
    }

        .cod-alert-modal h2 {
            font-size: 32px;
        }
}

@media screen and (max-width: 425px) {
    .cod-alert-modal {
        max-width: calc(100% - 10%);
    }

        .cod-alert-modal h2 {
            font-size: 30px;
        }
}

.cod-alert-modal-modal__content p, .cod-alert-modal-modal__buttons-wrapper {
    color: white;
    text-align: center;
}
.cod-alert-modal-modal__content img {
    margin: auto;
}
