* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;
}

/* Modal Style */
.cstm-modal-wrapper .modal-content {
    border-radius: 40px;
    background: linear-gradient(339deg, rgba(0, 123, 255, 1), rgba(0, 0, 0, 1));
    padding: 1px;
}

.cstm-modal-wrapper .modal-content .modal-body {
    background: white;
    border-radius: 40px;
    padding: 0;
}

.cstm-modal-wrapper .modal-content .modal-body .img-wrapper {
    background: linear-gradient(156deg, rgba(46, 204, 113, 1) 0%, rgba(0, 123, 255, 1) 48%, rgba(0, 188, 212, 1) 100%);
    border-radius: 37px;
    position: relative;
    height: 100%;
    z-index: 1;
}

.cstm-modal-wrapper .modal-content .modal-body .img-wrapper::before {
    content: '';
    position: absolute;
    top: 47%;
    left: 53%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    background: url(images/designed-bg.png) no-repeat;
    background-size: 425px;
    z-index: -1;
}

.cstm-modal-wrapper .modal-content .modal-body .img-wrapper img {
    width: 445px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.cstm-modal-wrapper .modal-content .modal-body .content-wrapper {
    padding: 30px;
}

.cstm-modal-wrapper .modal-content .modal-body .btn-close {
    opacity: 1;
    transition: all .5s ease-in-out;
}

.cstm-modal-wrapper .modal-content .modal-body .btn-close:hover {
    transform: rotate(180deg);
    background-color: transparent;
}

button.btn.btn-primary.d-block.border.rounded-pill.cust-btn {
    font-size: 16px !important;
    padding: 10px 24px !important;
}

.content-wrapper h2 {
    font-size: 28px;
    font-weight: 600;
}

.cstm-modal-wrapper input,
.cstm-modal-wrapper textarea {
    border-color: #000;
    border-radius: 10px;
}

.cstm-modal-wrapper input:focus,
.cstm-modal-wrapper input:focus-visible,
.cstm-modal-wrapper textarea:focus,
.cstm-modal-wrapper textarea:focus-visible {
    border-color: #2ECC71;
    outline: none;
    box-shadow: none;
}

.cstm-modal-wrapper .color-picker-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.cstm-modal-wrapper .color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #E3E3E3;
    cursor: pointer;
    transition: border 0.3s;
}

.cstm-modal-wrapper .color-option.selected {
    border: 2px solid #007bff;
}

.cstm-modal-wrapper .modal-content .modal-body .content-wrapper h2 {
    font-family: "Nunito Sans", Sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    color: #312827;
}

@media (max-width: 1199px) {
    .cstm-modal-wrapper .modal-content .modal-body .img-wrapper::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 100%;
        width: 100%;
        background: url(images/designed-bg.png) no-repeat;
        background-size: 280px;
        z-index: -1;
    }

    .cstm-modal-wrapper .modal-content .modal-body .img-wrapper img {
        width: 280px;
    }

    .cstm-modal-wrapper .modal-content .modal-body .content-wrapper {
        padding: 20px 20px 20px 0px;
    }

    .cstm-modal-wrapper .modal-content .modal-body .content-wrapper h2 {
        font-size: 25px;
        line-height: 35px;
    }
}

@media (max-width: 991px) {
    .cstm-modal-wrapper .modal-content .modal-body .img-wrapper {
        display: none;
    }

    .cstm-modal-wrapper .modal-content .modal-body .content-wrapper {
        padding: 20px;
    }

    .cstm-modal-wrapper .modal-content .modal-body .content-wrapper h2 {
        font-size: 20px;
        line-height: 30px;
    }
}