.counsel-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.4);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.counsel-popup-container {
    max-width: 400px;
    width: 100%;
    position: relative
}

.counsel-popup-content {
    padding: 0;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 4px
}

.counsel-popup-thumbnail {
    font-size: 0
}

.counsel-popup-thumbnail img {
    max-width: 100%;
    height: auto
}

.counsel-popup-form {
    background-color: #01bec0;
    padding: 12px 20px
}

.counsel-popup-form .form_flex_wrap {
    display: flex;
    gap: 10px
}

.counsel-popup-form .form_flex_wrap .form_flex_inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%
}

.counsel-popup-form .form_flex_wrap .form_flex_inner .counsel-form-group {
    flex: 1;
    width: 100%
}

.counsel-form-group label {
    display: block;
    font-weight: 600;
    color: #fff;
    font-size: 14px
}

.counsel-form-group input[type=text],.counsel-form-group input[type=tel],.counsel-form-group input[type=email] {
    width: 100%;
    padding: 10px;
    border: 0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: border-color .3s;
    border-radius: 10px
}

.counsel-form-group input[type=text]:focus,.counsel-form-group input[type=tel]:focus,.counsel-form-group input[type=email]:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: unset
}

.counsel-form-group-agree {
    margin-top: 8px
}

.counsel-form-group-agree .counsel-checkbox-label-agree {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #fff
}

.counsel-form-group-agree .counsel-checkbox-label-agree input[type=checkbox] {
    display: none
}

.counsel-form-group-agree .counsel-checkbox-label-agree input[type=checkbox]+.check_box {
    width: 14px;
    height: 14px;
    cursor: pointer;
    border-radius: 4px;
    margin-right: 8px;
    border: 1px solid #fff
}

.counsel-form-group-agree .counsel-checkbox-label-agree input[type=checkbox]:checked+.check_box {
    background-color: #fff55d;
    border: 0
}

.counsel-form-group-agree .counsel-checkbox-label-agree span {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.counsel-submit-btn {
    width: 100%;
    min-width: 88px;
    max-width: 120px;
    padding: 10px 16px;
    height: 100%;
    background-color: #fff55d;
    color: #01bec0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    border: none;
}

.counsel-popup-footer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.counsel-hide-today-btn,.counsel-close-btn {
    padding: 10px 20px;
    background-color: #1d1818;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s
}

.counsel-hide-today-btn {
    color: #fff
}
