@font-face {
    font-family: 'Rig Bold Reverse';
    src: url("/fonts/Rig-BoldReverse.5fbb1e1d.woff2") format('woff2');
    font-weight: bold;
    font-style: normal;
}

h1 {
    font-family: 'Rig Bold Reverse';
    line-height: 1.1;
    text-transform: uppercase;
    color: hsl(188, 57%, 37%);
}

.btn-blue {
    background-color: hsl(188, 57%, 37%);
    border-color: hsl(188, 57%, 32%);
    color: white;
}

.btn-blue:hover {
    background-color: hsl(188, 57%, 32%);
    border-color: hsl(188, 57%, 27%);
    color: white;
}

.btn-outline-blue {
    color: hsl(188, 57%, 37%);
    border: 1px solid hsl(188, 57%, 37%);
    background-color: transparent;
    transition: all 0.2s ease-in-out;
}

.btn-outline-blue:hover {
    color: white;
    background-color: hsl(188, 57%, 37%);
    border-color: hsl(188, 57%, 37%);
}

.btn-orange {
    background-color: #e94f35;
    border-color: #e94f35;
    color: white;
}

.btn-orange:hover {
    background-color: #cc3f28;
    border-color: #b53623;
    color: white;
}

.btn-outline-orange {
    color: #e94f35;
    border: 1px solid #e94f35;
    background-color: transparent;
}

.btn-outline-orange:hover {
    color: white;
    background-color: #e94f35;
    border-color: #e94f35;
}

.btn-golden {
    background-color: hsl(38, 100%, 50%);
    border-color: hsl(38, 100%, 40%);
    color: #fff;
}

.btn-golden:hover {
    background-color: hsl(38, 100%, 40%);
    border-color: hsl(38, 100%, 35%);
    color: #fff;
}

.btn-outline-golden {
    color: hsl(38, 100%, 50%);
    border: 2px solid hsl(38, 100%, 50%);
    background-color: transparent;
}

.btn-outline-golden:hover {
    background-color: hsl(38, 100%, 50%);
    color: white;
}

.table-width {
    width: 75%;
}

.buttons-wrap {
    white-space: nowrap
}

.form-width {
    width: 50%;
}

.required-label::after {
    content: " *";
    color: red;
}

#preview-container {
    width: 49%;
}

.custom_checkboxes label {
    margin-right: 20px;
}

.vcenter {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
}

p {
    margin: 0 !important;
}

#preview-container {
    height: fit-content;
    width: fit-content;
}

@media (max-width: 1024px) {
    .table-width {
        width: 100%;
    }
    .buttons-wrap {
        white-space: wrap;
    }
    .button-space {
        margin-bottom: 10px;
    }
    .header-style {
        flex-direction: column;
        gap: 10px !important;
    }   
    .form-margin {
        padding-inline-start: 0 !important;
    }
    .vich-image img {
        max-width: 100%;
        height: auto;
    }
    .form-width {
        width: 100%;
    }
}

