.trigger {
    text-align: center;
    padding: 7px 13px;
    background: #3e3e3e;
    color: #fff;
    font-size: 15px;
    outline: none;
    border: none;
    border-radius: 5px;
    border: 1px solid #fff !important;
    /* font-family: cursive; */
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #090909;
    padding: 0px;
    width: 34rem;
    border-radius: 0px;
    box-shadow: 0px 0px 10px 2px #ffffff59;
}

/* .close-button {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: lightgray;
} */

.close-button {
    float: right;
    width: 1rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: transparent;
    font-size: 30px;
    color: #f5932e;
}

/* .close-button:hover {
    background-color: darkgray;
} */

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
    z-index: 5;
}

.con-modal {}

.con-form {}

.con-modal .modal-header {
    display: flex;
    padding: 10px 15px;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
}

.con-modal .modal-header h6 {
    font-weight: 600;
    font-size: 24px;
}

.con-modal .modal-body {
    padding: 15px;
}

.con-form .form-group {
    text-align: left;
}

.con-form label {
    padding-right: 0px;
    display: block;
    margin-bottom: 6px;
}

.con-form .form-control-2 {
    border: 1px solid #f5932e;
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    resize: none;
}

.con-form button {
    width: 100%;
    border: 1px solid #fff;
}