.modal {
    --bs-modal-zindex: 1055;
    --bs-modal-width: 500px;
    --bs-modal-padding: 1rem;
    --bs-modal-margin: 0.5rem;
    --bs-modal-color: ;
    --bs-modal-bg: var(--bs-body-bg);
    --bs-modal-border-color: var(--bs-border-color-translucent);
    --bs-modal-border-width: var(--bs-border-width);
    --bs-modal-border-radius: var(--bs-border-radius-lg);
    --bs-modal-box-shadow: var(--bs-box-shadow-sm);
    --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
    --bs-modal-header-padding-x: 1rem;
    --bs-modal-header-padding-y: 1rem;
    --bs-modal-header-padding: 1rem 1rem;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: var(--bs-border-width);
    --bs-modal-title-line-height: 1.5;
    --bs-modal-footer-gap: 0.5rem;
    --bs-modal-footer-bg: ;
    --bs-modal-footer-border-color: var(--bs-border-color);
    --bs-modal-footer-border-width: var(--bs-border-width);
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: var(--bs-modal-margin);
    pointer-events: none
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0,-50px)
}

@media (prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    transform: none
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    height: calc(100% - var(--bs-modal-margin) * 2)
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin) * 2)
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0
}

.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg)
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: var(--bs-backdrop-opacity)
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius)
}

.modal-header .btn-close {
    padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
    margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto
}

.modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height)
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding)
}

.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius)
}

.modal-footer>* {
    margin: calc(var(--bs-modal-footer-gap) * .5)
}

@media (min-width: 576px) {
    .modal {
        --bs-modal-margin:1.75rem;
        --bs-modal-box-shadow: var(--bs-box-shadow)
    }

    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto
    }

    .modal-sm {
        --bs-modal-width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg,.modal-xl {
        --bs-modal-width:800px
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        --bs-modal-width:1140px
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0
}

.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header {
    border-radius: 0
}

.modal-fullscreen .modal-body {
    overflow-y: auto
}

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width:100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-sm-down .modal-footer,.modal-fullscreen-sm-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width:100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-md-down .modal-footer,.modal-fullscreen-md-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width:100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-lg-down .modal-footer,.modal-fullscreen-lg-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width:100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-xl-down .modal-footer,.modal-fullscreen-xl-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width: 1399.98px) {
    .modal-fullscreen-xxl-down {
        width:100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-xxl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-xxl-down .modal-footer,.modal-fullscreen-xxl-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto
    }
}
.fade {
    transition: opacity .15s linear
}

@media (prefers-reduced-motion:reduce) {
    .fade {
        transition: none
    }
}

.fade:not(.show) {
    opacity: 0
}


@font-face {
    font-family: "SVN-Gilroy";
    src: url("../fonts/SVN-GILROY-REGULAR.OTF");
    font-weight: 400;
}
@font-face {
    font-family: "SVN-Gilroy";
    src: url("../fonts/SVN-GILROY-BOLD.OTF");
    font-weight: 700;
}

.input--primary {
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: #AD0042 !important;
    border-width: 1px 1px 1px 3px !important;
    border-style: solid !important;
    border-radius: 5px !important;
    font-size: 14px;
}

.input--primary::placeholder {
    color: #C0C0C0 !important;
}
.input--primary:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15) !important;
    cursor: pointer;
}
.input--primary:hover::placeholder {
    color: #898989 !important;
}
.input--primary:focus, .input--primary.visited{
    border-color: #343F6D !important;
}
.input--primary.visited {
    color: #AD0042 !important;
}
.modal-layout-advise .input--primary::placeholder {
    color: #C0C0C0 !important;
}
.invalid-field {
	border-color: red;
}

.invalid-feedback {
	color: red;
	display: none;
	margin-left: 0px;
	text-align: left;
	font-size: 11px;
}
.is-invalid~.invalid-feedback, .is-invalid~.invalid-tooltip, .was-validated :invalid~.invalid-feedback, .was-validated :invalid~.invalid-tooltip {
    display: block;
}
/* modal-advice-form */
#modal-advice-form {
    position: relative;
    z-index: 9999999999;
    font-family: "SVN-Gilroy" !important;
}
.modal-layout-advise .modal-dialog {
    top: 10%;
}

.modal-layout-advise .modal-content {
    max-width: 370px;
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 33px;
    border-radius: 10px;
    border: 2px solid #AD0042;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0);
}

.modal-layout-advise .modal-header {
    padding: 0;
}

.modal-layout-advise .title-form {
    line-height: normal;
    color: #343F6D !important;
    font-size: 23px !important;
    text-align: center !important;
    text-transform: uppercase!important;
    font-weight: 700!important;
    margin-bottom: 12px;
    font-family: "SVN-Gilroy" !important;
    margin-top: 10px;
    line-height: 30px;
}

.modal-layout-advise label {
    background: #fff;
    color: #DD3E5E;
    font-weight: 500;
    line-height: 1.25em;
    width: auto;
    font-size: 14px;
    font-family: "SVN-Gilroy" !important;
}

.modal-layout-advise input {
    width: 100% !important;
    padding: 0 12px !important;
    line-height: 30px;
    margin-bottom: 0;
    font-weight: 500;
    max-width: 400px !important;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
    outline: none;
    color: inherit;
    height: 42px;
    font-family: "SVN-Gilroy" !important;
}

.modal-layout-advise [type="submit"] {
    background: #fff;
    background-color: #AD0042 !important;
    margin-top: 15px;
    color: #fff;
    padding: 16px 32px;
    border: none;
    background: none;
    box-shadow: none;
    text-shadow: none;
    opacity: 1;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    outline: none !important;
    border-radius: 5px;
    margin: auto;
    display: block;
}

.modal-layout-advise input::placeholder,
.modal-layout-advise textarea::placeholder {
    color: #333333 !important;
}

.modal-layout-advise input:focus,
.modal-layout-advise textarea:focus {
    outline: none !important;
    box-shadow: none !important;
}
.modal-backdrop-custom {
    z-index: 105000000000;
    opacity: 0.5;
    display: none;
}
.modal-layout-advise .bnt-close {
    cursor: pointer;
    width: 24px;
    height: 24px;
    box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    background: #E8E8E8;
    top: 8px;
    right: 8px;
    font-size: 16px;
    text-align: center;
    line-height: 2.143em;
    position: absolute;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-layout-advise .bnt-close svg{
    width: 12px !important;
}
.modal-layout-advise .bnt-close svg path{
}

.modal-layout-advise .pt-0 {
    padding-top: 0px;
}
.modal-layout-advise .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.modal-layout-advise textarea{
    width: 100%;
}