* {
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box !important;
    color: var(--primary-font-color);
}
.hidden{
    display: none !important;
}
input {
    height: 36px;
}

.only-desktop {
    display: flex;
}

.only-mobile {
    display: none;
}

.display-none {
    display: none !important;
}

.lang a {
    padding: 4px;
    color: var(--unacive-text-color);
}

.lang a.active {
    color: var(--primary-color);
    font-weight: 900;
}

input[type=text], textarea, input[type=email], input[type=password], input[type=number], input[type=date], input[type=time], input[type=datetime-local] {
    border: 1px solid var(--unacive-text-color);
    border-radius: 8px;
    padding-left: 10px;
    font-size: var(--default-font-size);
}

textarea {
    padding: 10px;
}

textarea::after {
    display: none;
}

input::placeholder {
    color: var(--unacive-text-color);
}

input[disabled=true] {
    opacity: .5;
}

select {
    background: none;
    border: none;
    border-bottom: 1px solid #959CB3;
    height: 30px;
    padding-left: 8px;
    width: 100%;
    font-size: var(--default-font-size);
}

select::-ms-expand {
    display: none;
}

button, input[type=submit], input[type=button], .button, .btn, .pure-button {
    border-radius: 30px;
    color: white;
    border: none;
    margin: 4px;
    min-width: 120px;
    text-align: center;
    padding: 5px 25px;
    cursor: pointer;
    height: 36px;
    width: fit-content;
}

.button:hover {
    opacity: .5;
}

::-webkit-scrollbar {
    /*display: none;*/
    /*opacity: 0;*/
}

p, span, a, text, label {
    font-size: var(--default-font-size);
}

input::placeholder {
    color: var(--gray-text-color);
}

input:focus {
    outline: none;
}

input[type=radio], input[type=checkbox] {
    height: auto;
}

body {
    padding: 0;
    margin: 0;
    background-color: var(--background-color);
}

p {
    margin: 0;
}

a {
    text-decoration: none;
}

body > header {
    height: 90px;
    width: 100%;
    background-color: white;
}

body > header .header-content {
    min-width: 1440px;
    max-width: 1440px;
    height: 100%;
    padding: 5px;
}

fieldset > legend > div {
    color: var(--secondary-font-color);
    font-size: 12px;
}

.find-in-site-input-container {
    position: relative;
    width: 400px;
    height: 32px;
}

.find-in-site-input-container::after {
    content: "";
    clear: both;
    display: table;
}

.find-in-site-input-container input[type=search] {
    padding-left: 10px;
    font-size: var(--default-font-size);
    border: 1px solid var(--gray-text-color);
    border-radius: 16px;
    width: 100%;
    height: 100%;
}

.find-in-site-input-container i {
    position: absolute;
    right: 0;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background: var(--primary-color);
    border: none;
    cursor: pointer;
    text-align: center;
    line-height: 32px;
}

.find-in-site-input-container i {
    color: white !important;
    font-size: var(--default-font-size);
}

.loader {
    z-index: 10;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, .5)
}

.button-container {
    height: 100%;
}

.flex-unset {
    margin-right: 0;
    flex: unset;
}

.schedule-off-case-filter-form * {
    min-width: 250px;
}

.schedule-off-case-filter-form span:nth-child(6) {
    flex: unset !important;
    width: 100%;
}

.remove-in-mobile {
    display: inherit;
}

.w100 {
    width: 100%;
}

body > section {
    padding: 40px 0px 0;
}

body > section .content {
    width: 1440px;
}

body > section .content .services::-webkit-scrollbar {
    /*width: 0;*/
}

body .footer {
    margin-top: 40px;
    width: 1440px;
}

.footer > div {
    width: 50%;
}

.footer > div a {
    margin-bottom: 10px;
}

.footer > div span {
    font-weight: 900;
    margin-bottom: 10px;
}

.scrolled-container {
    width: 100vw;
    overflow: scroll;
}

.services {
    width: 1440px;
}

.services * {
    margin: 8px;
}

.profile {
    position: relative;
    display: block;
    padding: 10px;
}

.profile span {
    background-color: var(--secondary-color);
    font-size: var(--default-lead-font-size);
    color: white;
    line-height: 40px;
    text-align: center;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: block;
}

.profile .profile-context-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 5px;
    background-color: white;
    height: 140px;
    z-index: 2;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, .2);
    transition: .5s all;
    padding: 16px;
}

.profile > .profile-context-menu > p, .profile > .profile-context-menu > a {
    display: block;
    padding: 10px;
    font-weight: 400;
}

.profile .profile-context-menu:after {
    content: ' ';
    background-color: white;
    width: 20px;
    height: 20px;
    position: absolute;
    top: -10px;
    right: 20px;
    transform: rotate(45deg);
    border-radius: 4px;
}

.profile:hover .profile-context-menu {
    display: block;
    transition: .5s all;
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-wrapper div {
    flex: 1;
    min-width: 100px;
}

.date > span.input-group-addon {
    display: none;
}

fieldset {
    padding: 24px;
    border: 1px solid #d3dfe9;
    border-radius: 6px;
    margin: 12px;
}

fieldset:hover {
    border: 1px solid #f89580;
}

fieldset > legend > div {
    font-weight: 500;
    font-size: 18px;
    color: #0B2441;
}

fieldset legend {
    float: left;
}

.wizard > a, .step a {
    color: var(--primary-font-color);
    margin: 0 4px;
    padding: 12px 24px;
    border-radius: 20px;
}
.wizard > a.current > span.badge {
    color: white;
}
.wizard > a.current, .step a.current {
    background: var(--secondary-color);
    color: white;
}

.wizard, .step {
    width: fit-content;
    height: 40px;
    border-radius: 20px;
    background: #F3F3F3;
}
.wizard{
    display: flex;
}
.tab__inner-bottom{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.info {
    display: grid;
    grid-template-columns: 1fr 2fr
}
.pure-g{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.pure-g > .form-content{
    flex: 3;
}

.pure-g > .form-sidebar{
    flex: 1;
}
.info > * {
    margin: 8px 0;
}

.info span {
    font-size: 14px;
    color: #59697C;
    font-weight: 400;
}

.info p {
    font-size: 14px;
    color: var(--primary-font-color);
    font-weight: 500;
}

.form-control {
    width: 100%;
}

.form-type-textfield {
    margin-top: 23px;
}

.form-group {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 5px;
}

.pure-button {
    background-color: var(--primary-color);
    padding: 5px 20px;
    width: fit-content;
}

.pure-button[disabled], .pure-button-disabled, .pure-button-disabled:hover, .pure-button-disabled:focus, .pure-button-disabled:active {
    border: 0;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    filter: alpha(opacity=40);
    -khtml-opacity: .4;
    -moz-opacity: .4;
    opacity: .4;
    cursor: not-allowed;
    box-shadow: none;
}

a.button {
    line-height: 26px;
    display: block;
}

.panel-collapse {

}

.my-cases-folders-item {
    box-shadow: 0 0 15px rgba(0, 0, 0, .2);
    padding: 20px;
    border-radius: 8px;
}

.panel-group {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.panel-title {
    padding: 20px 0 0 0;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

.form-sidebar {
    display: none;
}

@media screen and (max-width: 1440px) {
    body header .header-content {
        min-width: inherit;
        max-width: inherit;
        width: 100%;
    }

    body section .footer, body section .content {
        border-radius: unset;
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    div.link-to-system {
        display: none;
    }

    body header .header-content {
        min-width: inherit;
        max-width: inherit;
        width: 100%;
    }

    body .footer {
        width: 100%;
        border-radius: unset;
    }
}

@media screen and (max-width: 768px) {
    body header {
        height: auto;
    }

    body header .header-content {
        flex-wrap: wrap;
    }

    div.link-to-system {
        display: flex;
    }

    .find-in-site-input-container {
        display: none;
    }

    .footer > div {
        width: 100%;
        padding-right: 30px;
    }

    .profile {
        width: 100%;
    }

    .profile .profile-context-menu:after {
        display: none;
    }

    .profile .profile-context-menu {
        top: 0;
        left: 0;
    }

    .only-desktop {
        display: none !important;
    }

    .only-mobile {
        display: block !important;
    }

    button, input[type=submit], input[type=button] {
        width: 100%;
    }
}

@media screen and (max-width: 425px) {
    body header .header-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    button, input, input[type=submit], input[type=button], .button, .btn, .pure-button {
        width: 100%;
    }
}

.success {
    padding: 15px;
    position: relative;
}

.success:after {
    content: "\f046";
    position: absolute;
    top: 15px;
    left: 0px;
    color: green;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}