/* variables */
:root {

    --text-color: rgb(24, 24, 24);
    --field-bg-color: #fff;
    --field-border-color: #202938;
    /* rgba(245, 166, 35, 0.77); */
    --label-color: #7f7f7f;
    --primary-color: #202938;
    /* rgba(245, 166, 35, 0.77); */
    --secondary-color: #ec2e38;
    /* #BD10E0; */
    --secondary-border: #a41a21;
    /* #BD10E0; */
    --secondary-color-2: #f8b3b6;
    /* #da64f540; */
}

.styled-form-background::before {
    background-image: url(../img/background2.jpg);
    background-size: cover !important;
    position: fixed !important;
    filter: brightness(100%) !important;
    background-position: center !important;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-item.active .page-link {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    border-radius: 5px;
}

.paginate_button {
    padding: 0.3em !important;
}

.paginate_button:hover {
    background: linear-gradient(to bottom, var(--secondary-color-2) 0%, var(--secondary-color-2) 100%) !important;
    border-color: transparent !important;
    border-radius: 10px !important;
}

.paginate_button.previous:hover {
    border-radius: 10px 3px 3px 10px !important;
}

.paginate_button.next:hover {
    border-radius: 3px 10px 10px 3px !important;
}

.select2-container--bootstrap4.select2-container--focus .select2-selection {
    border: none !important;
    box-shadow: none !important;
    height: 34px !important;
}

.select2-container--bootstrap4 .select2-selection {
    background-color: transparent !important;
}

.select2-container--bootstrap4 .select2-selection--single {
    height: 100% !important;
    border: none !important;
}

.select2-dropdown {
    border-left: 2px solid var(--secondary-color) !important;
    border-right: 2px solid var(--secondary-color) !important;
    border-bottom: 2px solid var(--secondary-color) !important;
    border-radius: 0px 0px 20px 20px !important;
    padding-bottom: 20px !important;
}

.select2-results__option--highlighted {
    color: var(--text-color) !important;
    background-color: var(--secondary-color-2) !important;
}

.select2-results__option {
    font-size: 0.938vw !important;
    margin: 0px 5px !important;
    border-radius: 5px !important;
}

.select2-search__field {
    border-bottom: 2px solid var(--secondary-color) !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0px !important;
    font-size: 21px;
}

.select2-search--dropdown {
    padding: 10px 15px !important;
}

body>div.wrapper>aside>a>img {
    opacity: 1 !important;
}

body>div.wrapper>aside>a>img:hover {
    border-radius: 20px;
    box-shadow: 0px 0px 7px #fff;
}


@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,500;1,600;1,700;1,800;1,900&family=Oswald:wght@200;300;400;500;600;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    font-family: "Jost";
    width: 100%;
    position: relative;
    height: auto;
    margin-bottom: 0px !important;
}

.box-container {
    background-color: var(--field-bg-color);
    border-radius: 10px;
    box-shadow: 0px 2px 5px var(--primary-color);
}

.content-wrapper {
    background-image: url(../img/background2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.main-heading {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.5;
    height: 200px;
    background-color: var(--field-bg-color);
    width: 65%;
    margin-left: 150px;
    display: grid;
    align-content: center;
}

.pole-form {
    height: 100%;
    width: 100%;
    /*border-top: solid 2px var(--field-border-color);*/
    /*border-bottom: solid 2px var(--field-border-color);*/
    /*padding: 5px;*/
}

.pole-form form {
    width: 47%;
}

.radiofield {
    height: 40px;
    width: 100%;
    margin-bottom: 7px;
    line-height: 70px;
    padding-left: 90px;
    position: relative;
    margin: 0px 4px;
    display: inline-flex;
    align-items: center;
}

.radiofield input[type=radio] {
    -webkit-appearance: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border: solid 2px var(--field-border-color);
    border-radius: 20px;
    top: 0;
    left: 0;
    cursor: pointer;
    background-color: #fff;
}

.radiofield input[type=radio]::before {
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    color: var(--field-bg-color);
    border: solid 2px var(--field-border-color);
    border-radius: 50%;
    background-color: var(--field-bg-color);
    width: 24px;
    height: 24px;
    line-height: 25px;
    text-align: center;
    position: absolute;
    top: 18%;
    left: 30px;
}

.radiofield input[type=radio]:checked:before {
    content: "\f00c";
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.radiofield input[type=radio]:checked {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color-2);
}

.radiofield label {
    font-size: 0.75vw;
    color: var(--text-color);
    font-weight: 500;
    line-height: 0px;
    z-index: 200;
}

.form-label,
.form-control-label {
    font-weight: 500 !important;
    font-size: 0.625vw;
    letter-spacing: .1rem;
    background-color: var(--label-color);
    color: #fff;
    border-radius: 20px;
    padding: 5px 15px;
    text-transform: uppercase;
}

.next_prev button {
    background-color: var(--primary-color);
    padding: 8px 0px;
    width: 180px;
    font-size: 0.75vw;
    color: var(--field-bg-color);
    border-radius: 50px;
    border: solid 2px transparent;
    transition: 0.4s;
    overflow: hidden;
    position: relative;
}

.next_prev button span {
    font-size: 0.938vw;
    position: relative;
    z-index: 1000;
}

.next_prev button:hover {
    transition: 0.5s;
    border: solid 2px var(--secondary-border);
}

.next_prev button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.8s;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    clip-path: circle(0.0% at 50% 50%);
}

.next_prev button:hover::before {
    clip-path: circle(142% at 50% 50%);
}

.next_prev.back-btn button {
    width: 60px;
    height: 60px;
}

.checkbox-cust {
    width: 35px;
    height: 35px;
    color: var(--field-bg-color);
    accent-color: var(--primary-color);
}

.next_prev.back-btn.plus button {
    width: 45px;
    height: 45px;
}

.btn.btn-remove {
    background-color: var(--secondary-border);
    padding: 6px 40px;
    font-size: 0.938vw;
    font-weight: 400;
    letter-spacing: .2rem;
    color: var(--field-bg-color);
    border-radius: 50px;
    height: 38px;
}

.btn.btn-remove:hover,
.btn-remove:active {
    background-color: var(--secondary-color) !important;
    color: var(--field-bg-color) !important;
}

.card.restyle {
    background-color: #ffffff00;
    border: none;
    box-shadow: none;
    min-height: 65vh;
    display: grid;
    justify-content: center;
}

.card.restyle .card-body {
    align-content: center;
    justify-content: center;
    max-width: 1140px;
}

.top-page-title {
    font-size: 1.667vw;
    font-weight: 600;
    background-color: var(--primary-color);
    border-radius: 20px;
    color: var(--field-bg-color);
    padding: 5px;
}

.mini-title {
    font-size: 0.938vw;
    width: 180px;
    font-weight: 400;
    background-color: var(--label-color);
    border-radius: 20px;
    color: var(--field-bg-color);
    align-content: center;
}

.mini-title-prod {
    width: 240px !important;
}

.text-input input {
    font-size: 0.75vw;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0px 20px 0px 12px;
    background-color: var(--field-bg-color);
}

.text-input input:focus-visible {
    outline: none;
}

.text-input {
    border: solid 2px var(--primary-color);
    border-radius: 20px;
    height: 40px;
    background-color: var(--field-bg-color);
    padding: 6px 20px 6px 6px;
    transition: 0.4s all ease;
    display: flex;
    align-items: center;
}

.text-input:focus-within {
    border-color: var(--secondary-color);
}

.text-input i {
    font-size: 23px;
    margin-left: 20px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

/* Personalizzazione della freccia interna (solo WebKit) */
input[type="number"]::-webkit-inner-spin-button {
    background-image: url(../img/up-down.png);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    height: 32px;
    width: 15px;
    margin: 0px 10px;
}

/* TEXTAREA STYLE */
.text-area textarea {
    width: 100%;
    border: 0;
    margin: 0px 30px;
    font-size: 0.75vw;
}

.text-area textarea:focus-visible {
    outline: none;
}

.text-area {
    border: solid 2px var(--primary-color);
    border-radius: 20px;
    background-color: var(--field-bg-color);
    padding: 20px 0px;
    transition: 0.4s all ease;
    display: flex;
    align-items: start;
    margin-bottom: 25px;
}

.text-area:focus-within {
    border-color: var(--secondary-color);
}

.text-area i {
    font-size: 23px;
    margin-left: 20px;
}

/* SELECT STYLE */
.select-input {
    border: solid 2px var(--primary-color);
    border-radius: 20px;
    height: 40px;
    background-color: var(--field-bg-color);
    padding: 6px 20px 6px 6px;
    transition: 0.4s all ease;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.select-input select {
    outline: none;
    border: none;
}

.select-input:focus-within {
    border-color: var(--secondary-color);
}

.select-input i {
    font-size: 23px;
    margin-left: 20px;
    position: absolute;
    right: 10px;
    pointer-events: none;
}

.select-input .selected {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.select-input .options-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: solid 2px var(--primary-color);
    border-radius: 0 0 20px 20px;
    background-color: #fff;
    z-index: 100;
}

.select-input .options-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.select-input .option {
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s;
}

.select-input .option:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.select-input.open .options-container {
    display: block;
    border-color: var(--secondary-color);
}

.select-input.open {
    border-color: var(--secondary-color);
    border-radius: 20px 20px 0 0;
}

.select-input .options-container ul .option:last-child {
    border-radius: 0 0 20px 20px;
}

#form-group-role_id>span {
    width: 100% !important;
}

/* THANKYOU PAGE */
.box-contact-int{
    align-content: center;
    height: 65vh;
}
.box-contact-int h2{
    font-size: 40px;
    font-weight: 600;
}

@keyframes zoomInRotate {
    from {
        transform: scale(0.2) rotate(-40deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.box-contact-int img {
    width: 150px;
    animation: zoomInRotate 1s ease-out forwards;
    transform-origin: center;
}

/* SIDEBAR */
.main-sidebar {
    background-color: #202938;
}

.sidebar .nav-link {
    color: #fff !important;
}

.nav-link.active {
    background-color: #ec2e38 !important;
}

.nav-item:hover>.nav-link.active {
    color: #ffffff !important;
}

.nav-item:hover>.nav-link {
    color: #ec2e38 !important;
}

.navbar .nav-link {
    margin-right: 16px;
    color: #ec2e38 !important;
}

.icon-table {
    color: #ec2e38;
    cursor: pointer;
    font-size: 21px;
    margin: 0px 4px;
}

.icon-table:hover {
    color: #fa4b54;
    cursor: pointer;
}

/* --------------------------------------------------------- */
/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */

h2,
p {
    margin: 0;
}

/* GLOBAL STYLES */
.box-menu__content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--field-bg-color);
    line-height: 1.1;
}

p {
    font-family: var(--font-text);
    font-size: 0.938vw;
    line-height: 1.5;
    color: var(--field-bg-color);
}

.flow>*+* {
    margin-top: var(--flow-space, 1em);
}

/* CARD COMPONENT MENU*/
.box-menu {
    display: grid;
    place-items: center;
    width: 80vw;
    max-width: 12.5rem;
    height: 18.75rem;
    overflow: hidden;
    border-radius: 0.625rem;
    box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
}

.box-menu>* {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.box-menu__background {
    object-fit: cover;
    max-width: 100%;
    height: 100%;
}

.box-menu__content {
    --flow-space: 0.9375rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: flex-end;
    width: 100%;
    height: 42%;
    padding: 6% 1.25rem 4.875rem;
    background: linear-gradient(180deg,
            hsla(0, 0%, 0%, 0) 0%,
            hsla(0, 0%, 0%, 0.3) 10%,
            hsl(0, 0%, 0%) 100%);
}

.box-menu__content--container {
    --flow-space: 1.25rem;
}

.box-menu__title {
    position: relative;
    width: fit-content;
    width: -moz-fit-content;
    /* Prefijo necesario para Firefox  */
}

.box-menu__title::after {
    content: "";
    position: absolute;
    height: 0.3125rem;
    width: calc(100% + 1.25rem);
    bottom: calc((1.25rem - 0.5rem) * -1);
    left: -1.25rem;
    background-color: var(--secondary-color);
}

.box-menu__button {
    font-size: 1.125rem !important;
    padding: 10px;
    margin: 10px;
    width: -webkit-fill-available;
    width: -moz-fit-content;
    /* Prefijo necesario para Firefox  */
    font-variant: small-caps;
    font-weight: bold;
    border-radius: 0.45em;
    border: none;
    background-color: var(--secondary-color);
    font-family: var(--font-title);
    font-size: 1.125rem;
    color: var(--field-bg-color);
}

.box-menu__button:focus {
    outline: 2px solid black;
    outline-offset: -5px;
}

@media (any-hover: hover) and (any-pointer: fine) {
    .box-menu__content {
        transform: translateY(62%);
        transition: transform 300ms ease-out;
        transition-delay: 300ms;
    }

    .box-menu__title::after {
        opacity: 0;
        transform: scaleX(0);
        transition: opacity 1000ms ease-in, transform 500ms ease-out;
        transition-delay: 300ms;
        transform-origin: right;
    }

    .box-menu__background {
        transition: transform 300ms ease-in;
    }

    .box-menu__content--container> :not(.box-menu__title),
    .box-menu__button {
        opacity: 0;
        transition: transform 300ms ease-out, opacity 300ms ease-out;
    }

    .box-menu:hover,
    .box-menu:focus-within {
        transform: scale(1.05);
        transition: transform 300ms ease-in;
    }

    .box-menu:hover .box-menu__content,
    .box-menu:focus-within .box-menu__content {
        transform: translateY(0);
        transition: transform 300ms ease-in;
    }

    .box-menu:focus-within .box-menu__content {
        transition-duration: 0ms;
    }

    .box-menu:hover .box-menu__background,
    .box-menu:focus-within .box-menu__background {
        transform: scale(1.3);
    }

    .box-menu:hover .box-menu__content--container> :not(.box-menu__title),
    .box-menu:hover .box-menu__button,
    .box-menu:focus-within .box-menu__content--container> :not(.box-menu__title),
    .box-menu:focus-within .box-menu__button {
        opacity: 1;
        transition: opacity 300ms ease-in;
        transition-delay: 500ms;
    }

    .box-menu:hover .box-menu__title::after,
    .box-menu:focus-within .box-menu__title::after {
        opacity: 1;
        transform: scaleX(1);
        transform-origin: left;
        transition: opacity 300ms ease-in, transform 300ms ease-in;
        transition-delay: 300ms;
    }
}

/* --------------------------------------------------------- */
/* INFO TABLE MODAL  */
.ico_info {
    background-color: #202938;
    border-radius: 20px;
    padding: 6px 10px;
    color: #fff;
    cursor: pointer;
    margin-bottom: 5px;
    font-size: 0.8rem;
}

.ico_info:hover {
    background-color: #f30b0b;
}

.icon-text {
    display: flex;
    align-items: center;
}

.icon-text i {
    margin-right: 8px;
}

.text-wrap {
    align-content: center;
}

.modal-header.mod {
    border-bottom: 3px solid #292c5b;
}

.modal-body,
.alert-success {
    font-size: 1.198vw;
    font-weight: bold;
}

.btn-close {
    background: #ed252557 var(--bs-btn-close-bg) center / 1em auto no-repeat !important;
    border: 3px solid #db5d5d !important;
    border-radius: 3.375rem !important;
}

/* FLATPICKER STYLE */
/* Colore testo rosso e font 16px */
.flatpickr-day,
.flatpickr-time input[type="number"],
.flatpickr-months .flatpickr-month,
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month,
.flatpickr-weekdays,
.flatpickr-weeks {
    color: var(--secondary-color) !important;
    font-size: 16px !important;
}

span.flatpickr-weekday {
    color: var(--primary-color) !important;
    font-size: 16px !important;
    margin: 20px 0px !important;
}

.flatpickr-day:hover,
.flatpickr-monthDropdown-month:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}

.flatpickr-day.selected {
    background-color: #324463 !important;
    border-color: #324463 !important;
    color: #fff !important;
}

.flatpickr-day {
    font-size: 20px !important;
}

/* --------------------------------*/
/* --------- LOGIN PAGE -----------*/
/* --------------------------------*/
.login-page,
.register-page {
    background-image: url(../img/background2.jpg);
    background-size: cover;
}

.login-box,
.register-box {
    background-color: #202938;
    fill: #FFF !important;
    color: #FFF !important;
    border-radius: 10px;
    padding: 5px;
    width: 372px !important;
}

.login-logo a,
.register-logo a {
    color: #fff !important;
}

.login-logo {
    padding: 15px;
}

.input-group-append span,
.card-footer a {
    color: red;
}

.card-primary.card-outline {
    border-top: 3px solid red !important;
}

.card-footer p {
    padding-top: 10px;
}

div.login-box>div.card.card-outline.card-primary>div.card-footer>p:nth-child(2)>a {
    font-family: "Neue", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-transform: lowercase;
    fill: #000;
    color: #ffffff;
    background-color: #202938;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #000;
    border-radius: 20px;
    padding: 5px 10px 5px 10px;
    min-width: 135px;
}

div.login-box>div.card.card-outline.card-primary>div.card-footer>p:nth-child(2)>a:hover {
    background-color: #3c495f;
    fill: #FFF !important;
    color: #FFF !important;
}

.login-card-body .btn-primary,
.register-card-body .btn-primary {
    background-color: #202938;
    border-color: #202938;
    border-radius: 20px !important;
}

.login-card-body .btn-primary:hover {
    background-color: #3c495f;
}
/* -------------------------------------------------------*/
.navbar-nav>.user-menu>.dropdown-menu>.user-footer .btn-default {
    border-radius: 200px;
}

.navbar-nav>.user-menu>.dropdown-menu>.user-footer .btn-default:hover {
    background-color: var(--primary-color);
    color: var(--field-bg-color);
}

body>div.wrapper>nav>ul.navbar-nav.ml-auto>li>ul {
    border-radius: 200px;
}

body>div.wrapper>nav>ul.navbar-nav.ml-auto>li>ul>li {
    border-radius: 200px;
}

#error {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 20;
}

.invalid {
    border: solid 2px #ff4444 !important;
    position: relative;
}

.navbar-nav .nav-item {
    font-size: 1.406vw;
}

.reveal {
    animation: reveal 3s linear 1;
}

@keyframes reveal {
    0% {
        opacity: 1;
        display: block;
    }

    30% {
        opacity: 1;
        display: block;
    }

    60% {
        opacity: 0.7;
        display: block;
    }

    90% {
        opacity: 0.3;
        display: block;
    }

    100% {
        opacity: 0;

    }
}

.popreveal {
    animation: pop-reveal 1s ease forwards;
}

@keyframes pop-reveal {
    from {
        clip-path: circle(0% at 0 0);
    }

    to {
        clip-path: circle(142% at 0 0);
    }
}

.radiofield input[type=radio]:checked::before {
    animation: check-pop 0.4s linear forwards;
}

@keyframes check-pop {
    from {
        clip-path: circle(0.0% at 50% 50%);
    }

    to {
        clip-path: circle(100% at 50% 50%);
    }
}

.revealfield {
    animation: revealfield 0.5s linear forwards;
}

.delay-100ms {
    animation-delay: 100ms;
}

.delay-200ms {
    animation-delay: 200ms;
}

.delay-300ms {
    animation-delay: 300ms;
}

.delay-400ms {
    animation-delay: 400ms;
}

.delay-500ms {
    animation-delay: 500ms;
}


@keyframes revealfield {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

tr.odd {
    background-color: #eef5ff !important;
}

.odd td {
    background-color: #eef5ff !important;
}

.sorting_1 {
    background-color: #d8e3f3 !important;
}

table.dataTable.row-border tbody th,
table.dataTable.row-border tbody td,
table.dataTable.display tbody th,
table.dataTable.display tbody td {
    border-top: 1px solid #6e8ab9 !important;
}

.table-image {
    width: 26px;
    cursor: pointer;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow {
    background: url('/img/d-arrow.png') no-repeat center center;
    background-size: 20px 20px;
    height: 25px;
    right: -15px !important;
}

.select2-selection__placeholder {
    font-size: 0.938vw;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
    margin-left: 20px;
    font-size: 0.75vw;
}


.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: url('/img/d-arrow-r.png') no-repeat center center;
    background-size: 20px 20px;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow {
    top: 18% !important;
    width: 50px !important;
}

.select2-selection__placeholder {
    font-size: 0.938vw;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
    margin-left: 15px;
}

.select2-selection__clear {
    display: none !important;
}

.vh-custom {
    height: 92vh;
}

/* Content tables head-body */
.dataTables_scroll {
    font-size: 0.75vw;
}

/* Botton excel-csv*/
.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    font-size: 0.75vw !important;
}

.btn-group> :not(.btn-check:first-child)+.btn {
    font-size: 0.75vw !important;
}

/* button-paginate length filter info */
.dataTables_length,
.dataTables_filter,
.dataTables_info {
    font-size: 0.75vw;
}

.dataTables_wrapper .dataTables_length select {
    width: 3.0vw;
    font-size: 0.75vw;
    height: auto;
}

.page-link {
    font-size: 0.75vw !important;
}

.pagination {
    --bs-pagination-color: #ec2e38 !important;
    --bs-pagination-hover-color: #EC2E38 !important;
}

.data-table tbody,
.data-table thead {
    font-size: 0.75vw;
}

.ticket-input-gray .text-input, .ticket-input-gray input{
    background-color: rgb(223, 223, 223);
}

/* Extra large devices (large desktops, 1366px and down) */
@media (max-width: 1920px) {
    .text-input {
        margin-bottom: 35px;
    }

    .select-input {
        margin-bottom: 20px;
    }
}

/* Extra large devices (large desktops, 1367px and down) */
@media (max-width: 1367px) {
    .box-menu__content h2 {
        font-size: 1.5rem;
    }

    .box-menu {
        max-width: 14.875rem;
        height: 19.125rem;
    }

    .box-menu__button {
        padding: 0.3em 0.6em;
    }

    .form-label,
    .form-control-label {
        font-size: 0.625vw;
        letter-spacing: .2rem;
    }

    .text-input {
        height: 36px;
        margin-bottom: 20px;
    }

    .radiofield {
        height: 36px;
        line-height: 55px;
    }

    .radiofield input[type=radio]::before {
        width: 18px;
        height: 18px;
        top: 20%;
        line-height: 16px;
        font-size: 12px;
    }

    .radiofield label {
        font-size: 0.938vw;
        ;
    }

    .select-input {
        height: 36px;
        margin-bottom: 20px;
    }

    .select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow {
        background-size: 20px 20px;
        height: 20px;
    }

    .next_prev.back-btn button {
        width: 40px;
        height: 40px;
    }

    .checkbox-cust {
        width: 40px;
        height: 40px;
    }

    .next_prev.back-btn.plus button {
        width: 40px;
        height: 40px;
    }

    /*
        .top-page-title{
            font-size: 32px;
        }
    */

    .btn.btn-remove {
        height: 36px;
    }

    .card.restyle .card-body {
        max-width: 987px;
    }
}

/* Extra large devices (large desktops, 1200px and down) */
@media (max-width: 1200px) {
    .card.restyle .card-body {
        max-width: 780px;
    }

    .pole-form {
        margin-bottom: 20px;
    }

    .text-input {
        height: 50px;
        margin-bottom: 20px;
    }

    .radiofield {
        height: 50px;
        line-height: 55px;
    }

    .radiofield input[type=radio]::before {
        width: 28px;
        height: 28px;
        line-height: 27px;
        top: 20%;
        font-size: 14px;
    }

    .radiofield label {
        font-size: 1.823vw;
    }

    .select-input {
        height: 50px;
        margin-bottom: 20px;
    }

    .select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow {
        background-size: 25px 25px;
        height: 25px;
    }

    .mini-title {
        padding: 8px;
    }

    .btn.btn-remove {
        font-size: 1.823vw;
        height: 50px;
    }
}

/* Large devices (desktops, 992px and down) */
@media (max-width: 992px) {
    .card.restyle .card-body {
        max-width: 760px;
    }

    .alert-success {
        font-size: 2.927vw;
    }

    .navbar-nav .nav-item {
        font-size: 2.3vw;
        ;
    }

    /* Content tables head-body */
    .dataTables_scroll {
        font-size: 1.823vw;
    }

    .mini-title {
        font-size: 1.823vw;
        padding: 8px 0px;
    }

    .select2-selection__placeholder {
        font-size: 1.823vw;
    }

    .form-label,
    .form-control-label {
        font-size: 1.008vw;
        letter-spacing: .1rem;
    }

    .select2-results__option {
        font-size: 1.823vw !important;
    }

    .form-label,
    .form-control-label {
        font-size: 1.22vw;
    }

    .text-input input {
        font-size: 1.823vw !important;
    }

    .select2-selection__placeholder {
        font-size: 1.823vw !important;
    }

    .select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
        margin-left: 15px;
        font-size: 1.823vw;
    }

    .data-table tbody,
    .data-table thead {
        font-size: 1.823vw;
    }

    /* Botton excel-csv*/
    .btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
        font-size: 1.823vw !important;
    }

    .btn-group> :not(.btn-check:first-child)+.btn {
        font-size: 1.823vw !important;
    }

    /* button-paginate length filter info */
    .dataTables_length,
    .dataTables_filter,
    .dataTables_info {
        font-size: 1.823vw;
    }

    .dataTables_wrapper .dataTables_length select {
        width: 7.552vw;
        font-size: 1.823vw;
        height: auto;
    }

    .page-link {
        font-size: 1.823vw !important;
    }

    p {
        font-size: 2.083vw;
    }

    .next_prev button span {
        font-size: 1.823vw;
    }

    .top-page-title {
        font-size: 3.646vw;
    }

    .pagination {
        justify-content: space-between;
    }

    .paginate_button {
        padding: 0em !important;
    }
}

/* Medium devices (tablets, 769px and down) */
@media (max-width: 769px) {
    .box-menu__button {
        padding: 0.3em 0.4em;
    }

    .card.restyle .card-body {
        max-width: 700px;
    }

    .data-table tbody,
    .data-table thead {
        font-size: 1.823vw;
    }

    /* Content tables head-body */
    .dataTables_scroll {
        font-size: 1.823vw;
    }

    /* Botton excel-csv*/
    .btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
        font-size: 1.823vw !important;
    }

    .btn-group> :not(.btn-check:first-child)+.btn {
        font-size: 1.823vw !important;
    }

    /* button-paginate length filter info */
    .dataTables_length,
    .dataTables_filter,
    .dataTables_info {
        font-size: 1.823vw;
    }

    .dataTables_wrapper .dataTables_length select {
        width: 7.552vw;
        font-size: 1.823vw;
        height: auto;
    }

    .page-link {
        font-size: 1.823vw !important;
    }

    p {
        font-size: 2vw;
    }

    .next_prev button span {
        font-size: 1.823vw;
    }

    .top-page-title {
        font-size: 3.385vw;
    }

    .pagination {
        justify-content: space-between;
    }

    .paginate_button {
        padding: 0em !important;
    }
}

/* Small devices (landscape phones, 576px and down) */
@media (max-width: 576px) {
    .next_prev.back-btn button {
        margin-bottom: 8px;
    }

    .box-contact-int h2 {
        font-size: 27px;
        font-weight: 600;
    }

    .vh-custom {
        height: auto;
    }

    .navbar-nav .nav-item {
        font-size: 3.721vw;
    }

    /* Content tables head-body */
    .dataTables_scroll {
        font-size: 2.791vw;
    }

    /* Botton excel-csv*/
    .btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
        font-size: 2.791vw !important;
    }

    .btn-group> :not(.btn-check:first-child)+.btn {
        font-size: 2.791vw !important;
    }

    /* button-paginate length filter info */
    .dataTables_length,
    .dataTables_filter,
    .dataTables_info {
        font-size: 2.791vw;
    }

    .dataTables_wrapper .dataTables_length select {
        width: 10.069vw;
        font-size: 2.791vw;
        height: auto;
    }

    .page-link {
        font-size: 2.791vw !important;
    }

    p {
        font-size: 3.256vw;
    }

    .next_prev button span {
        font-size: 3.256vw;
    }

    .top-page-title {
        font-size: 5.116vw;
    }

    .paginate_button {
        padding: 0em !important;
    }

    .pagination {
        justify-content: space-between;
    }

    .form-label,
    .form-control-label {
        font-size: 2.791vw;
    }

    .text-input input {
        font-size: 2.791vw !important;
    }

    .select2-selection__placeholder {
        font-size: 2.791vw !important;
    }

    .select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
        margin-left: 15px;
        font-size: 2.791vw;
    }

    .btn.btn-remove {
        font-size: 2.791vw;
        padding: 4px 12px;
        height: 36px;
    }

    .mini-title {
        font-size: 3.333vw;
    }

    .form-label,
    .form-control-label {
        font-size: 2.326vw;
        letter-spacing: 0.1rem;
    }

    .data-table tbody,
    .data-table thead {
        font-size: 2.791vw;
    }

    .radiofield label {
        font-size: 2.791vw;
    }

    .select2-results__option {
        font-size: 2.791vw !important;
    }
}