
/* General */

.Hidden {
    display: none;
}

.Required {
    vertical-align: super;
    color: lightcoral;
    font-size: 0.8em;
}

.OptionallyRequired {
    color: green;
}


/* Links */

a {
    color: var(--main-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


/* Controls */

input,
button,
textarea,
select {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

select {
    border: 1px solid #8E8E8E;
    border-radius: 7px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url('../img/dropdown_arrow.svg');
    background-repeat: no-repeat;
    background-position: center right 10px;
    padding-left: 10px;
    padding-right: 40px;
}

select.ControlSelectPurple {
    background-image: url('../img/dropdown_arrow_purple.svg');
    color: var(--main-color);
}

input[type="text"],
input[type="password"] {
    border: 1px solid #8E8E8E;
    border-radius: 7px;
    padding-left: 10px;
    padding-right: 10px;
}

input.ControlTextRound {
    border-radius: 25px;
    padding-left: 18px;
    padding-right: 18px;
}

textarea {
    border: 1px solid #8E8E8E;
    border-radius: 25px;
    box-sizing: border-box;
    width: 100%;
    max-width: 275px;
    min-height: 82px;
    padding: 12px 18px;
}

input[type="checkbox"],
input[type=radio] {
    margin-right: 15px;
    width: 35px;
    height: 35px;
    color: #BD9EFF;
}

input[type="checkbox"].ControlCheckboxSmall,
input[type="radio"].ControlRadioSmall {
    margin-right: 10px;
    width: 25px;
    height: 25px;
}

.ControlCheckboxContainer,
.ControlRadioContainer {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ControlButton,
.ControlButtonWhite {
    height: 45px;
    border: 0;
    border-radius: 25px;
    background-color: var(--main-color);
    text-align: center;
    color: white;
    line-height: 45px;
    font-weight: 300;
    cursor: pointer;
}

.ControlButton {
    background-color: var(--main-color);
    color: white;
}

a.ControlButton {
    color: white;
}

a.ControlButton:hover,
a.ControlButtonWhite:hover {
    text-decoration: none;
}

.ControlButtonWhite {
    border: 1px solid var(--main-color);
    background: none;
    color: var(--main-color);
}

.ControlBrowseSelectedFile {
    margin-left: 12px;
}

.ControlError {
    margin: 0px 10px 5px 10px;
    color: #DD0000;
    font-size: 12px;
}


/* Status */

.StatusMessage {
    border-radius: 10px;
    padding: 15px;
    background-color: lightcoral;
    color: white;
}

.home .StatusMessage {
    max-width: 650px;
}

.header-home .StatusMessage {
    position: absolute;
    top: 45px;
	margin-left: 183px;
    width: 100%;
    max-width: 650px;
}

.pass-reset__box-text .StatusMessage {
    margin-bottom: 60px;
}

.user-container .StatusMessage {
    margin-bottom: 2em;
}

@media screen and (max-width: 920px) {

    .header-home .StatusMessage {
        max-width: 590px;
    }

}

@media screen and (max-width: 846px) {

    .header-home .StatusMessage {
        top: 110px;
        margin-left: 135px;
        max-width: 555px;
    }

}

@media screen and (max-width: 767px) {

    .header-home .StatusMessage {
        top: 95px;
        margin-left: 15px;
    }

}

@media screen and (max-width: 600px) {

    .header-home .StatusMessage {
        max-width: 89%;
    }

}

@media screen and (max-width: 400px) {

    .header-home .StatusMessage {
        top: 85px;
        padding: 5px 10px;
    }

}


/* Footer */

.futer__register-item.SurveyBox {
    padding-bottom: 48px;
}

.futer__register-item .SurveyText {
    max-width: 520px;
}

.futer__register-item.LinksBox img {
    vertical-align: middle;
}

.futer-container .contacts a {
    color: white;
}

.futer-container a:hover {
    color: gray;
    text-decoration: none;
}

.FooterLink {
    margin-top: 1.5vh;
}

.ContactCompany {
    margin-bottom: 0.5em;
	font-size: 18px;
    font-weight: 400;
}


/* Cookie Bar Override */

body .cc-window {
    background-color: white;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 300;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

body .cc-message {
    font-size: 1em;
}

body a.cc-link:visited,
body a.cc-link {
	color: var(--main-color);
	opacity: 1;
	text-decoration: none;
}

body a.cc-link:hover {
    text-decoration: underline;
}

/* like control button */
body .cc-btn.cc-dismiss {
    border-radius: 25px;
    border: 0px;
    margin-right: 10px;
    padding: 0;
    width: 180px;
    height: 40px;
    background: #BD9EFF;
    color: #FFFFFF;
    text-align: center;
    font-size: 16px;
    font-weight: normal;
    line-height: 40px;
    cursor: pointer;
    transition: 0.2s;
}

body .cc-btn.cc-dismiss:hover {
    text-decoration: none;
    opacity: 0.7;
}


/* Login */

.LoginForgotPasswordLink,
.LoginRegisterLink {
    text-align: right;
}

.LoginRegisterLink {
    margin-top: 1em;
}

@media screen and (max-width: 767px) {

    .LoginForgotPasswordLink,
    .LoginRegisterLink {
        text-align: center;
    }
}


/* Markup */

.Markup {
    margin-top: 2em;
}

.MarkupCenter {
    text-align: center;
}

div.MarkupLarge {
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-size: 1.5em;
}

ul.MarkupListDotTight,
ul.MarkupListDot {
    /* Remove default bullets */
	list-style: none;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 3em;
}

ul.MarkupListDot > li {
    margin-top: 1em;
    margin-bottom: 1em;
}

ul.MarkupListDotTight > li::before,
ul.MarkupListDot > li::before {
    display: inline-block;
    /* margin-left: -1em; */
    margin-left: 1em;
    width: 1em;
    color: var(--main-color);
    font-weight: bold;
    content: "\2022";
}

ol.MarkupListNumber > li {
    position: relative;
    margin-left: 100px;
    margin-top: 16px;
    margin-bottom: 16px;
    counter-increment: list;
    list-style-type: none;
}

ol.MarkupListNumber > li::before {
    position: absolute;
    left: -32px;
    width: 26px;
    text-align: right;
    color: var(--main-color);
    content: counter(list) ".";
}


/* Introduction */

.RefImageContainer {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 130px;
    height: 130px;
    border-radius: 50%;
}

.RefImageContainer img {
    display: inline;
    margin: 0 auto;
    height: auto;
    width: 100%;
}


/* Position List */

.SearchBarError {
    min-width: 200px;
}

img.CategoryImage {
    clip-path: polygon(25% 25%, 25% 75%, 75% 75%, 75% 25%);
}

.home .card img.logo {
    box-sizing: content-box;
    width: 130px;
    height: 130px;
    margin-top: -30px;
}

.home .card .tags span {
    padding-right: 1em;
}

.card.PositionAlreadyApplied,
.PositionAlreadyAppliedNote {
    background-color: rgba(189, 158, 255, 0.25);
}

.PositionAlreadyAppliedNote {
    display: inline-block;
    border-radius: 5px;
    margin-top: 0.5em;
    padding: 0.25em;
}

.NotesBox {
    margin: 2em 1em 0em 1em;
}

.AllPositionsNote {
    margin-top: 1em;
}


/* Position Details */

.picture-job img {
    box-sizing: content-box;
    width: 150px;
    height: 150px;
    margin-top: -35px;
}

.inf-job__un-list h4 {
    margin-top: 1em;
    margin-bottom: 0.25em;
}

.Disabled .description__apply {
    background-color: var(--main-grey);
}

.ApplyMessageTop {
    margin-top: 1em;
}

.ApplyMessageBottom {
    margin-top: 1em;
}


/* Position Forward */


/* Register */

.user-container h3.SectionTitle {
    margin-top: 2em;
    margin-bottom: 0.5em;
    border-radius: 3px;
    padding: 5px;
    background-color: var(--main-color);
    color: white;
    font-size: 24px;
}

.user-inbox-container h3.SectionTitle:first-child {
    margin-top: 0;
}

.RegisterFooterHeading {
    margin-right: 50px;
    max-width: 700px;
}

.user-left-content .DateYear {
    width: 80px;
    padding-left: 5px;
    padding-right: 30px;
}

.user-left-content .DateMonth {
    width: 115px;
    padding-left: 5px;
    padding-right: 30px;
}

.user-left-content .DateDay {
    width: 70px;
    padding-left: 5px;
    padding-right: 30px;
}

.user__futer a {
    font-weight: 500;
}

.user__futer .DataPolicySmall {
    font-size: 0.875em;
}


/* Data Policy */

.UserNotice {
    padding-bottom: 3em;
}


/* Profile */

.user-inbox-container p.data {
    margin-bottom: 2em;
    padding-left: 1em;
    color: var(--main-black);
}

.user-inbox-container .language input[type="text"] {
    width: 120px;
}

.ProfileComment {
    margin-top: 20px;
}


/* Categories */

.CategorySection {
    margin-top: 20px;
}

.CategorySubmit {
    margin-top: 30px;
}


/* Attachment Upload */

.AttachmentUploadTitle {
    margin-bottom: 1em;
    font-size: 1.5em;
    font-weight: 500;
}

.upload h3 {
    margin-bottom: 1em;
}

.UploadedFiles {
    margin: 2em auto 4em auto;
    width: 65%;
}

@media screen and (max-width: 767px) {

    .UploadedFiles {
        width: 85%;
    }

}

label.upload__button-choosefile {
    display: inline-block;
}

label.upload__button-choosefile input[type="file"] {
    display: none;
}


/* Quickfix */

body nav .dropdown {
    width: 200px;
}

body #error_data_policy {
    display: block;
    margin: 0px 0px 5px;
}

body .jobs .top {
    padding-bottom: 10px;
}

footer .contacts {
    display: flex;
    flex-wrap: wrap;
}

footer .footer-section {
    flex-basis: 33.333%;
}

footer .footer-section.contact-info {
    flex-grow: 3;
    margin-bottom: 20px;
}

footer .footer-break {
    display: none;
}

.futer__register {
    border-right: 2px solid #8E8E8E;
}

.futer__register-item {
    border-right: none;
}

.des-job-time__box {
    margin-top: 10px;
}

.header-home {
    position: relative;
}

.card {
    max-width: 100vw;
}

@media screen and (max-width: 1160px) {

    nav .tabs .tab {
        padding: 0 15px;
    }

    footer .footer-section {
        flex-basis: 50%;
    }

    footer .footer-section.contact-info {
        flex-grow: 2;
    }

    footer .footer-break {
        display: block;
        flex-basis: 50%;
    }
}

@media screen and (max-width: 1024px) {

    body .home header {
        background-image: linear-gradient(#EFEFEF 0%, transparent 50%), url('../img/bg_header.jpg');
    }
}

@media screen and (max-width: 960px) {

    body .jobs {
        margin-top: 20px;
    }

    body nav .tabs .tab:first-child {
        margin-left: 0;
        margin-top: 20px;
    }

    body nav .tabs .tab {
        margin-left: 0;
        margin-right: 0;
    }

    .tab > a {
        font-weight: bold;
    }

    body nav .dropdown {
        position: relative;
        display: block;
        width: 100%;
        box-shadow: none;
    }

    body nav .dropdown a {
        text-align: center;
    }

}

@media screen and (max-width: 767px) {

    footer .footer-section {
        flex-basis: 100%;
    }

    .futer__register {
        border-right: none;
    }
    .pass-reset__box-text {
        padding-left: 0px;
    }
    .pass-reset__box-text {
        text-align: center;
    }
}


@media screen and (max-width: 600px) {

    .home header {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .SearchFiltersBar {
        flex-wrap: wrap;
    }

    .home .SearchFiltersBar > select {
        flex-basis: 100%;
    }

    .user-container, .pass-reset__box {
        width: 90%;
        padding: 20px;
    }

    .cv-box-flex {
        flex-wrap: wrap;
    }

    .UploadedFiles {
        width: 100%;
        margin-left: 4px;
        margin-right: 4px;
        text-align: left;
    }

    .files-box__doc-type {
        width: 140px;
    }
    .files-box__name-lang {
        margin-left: 0;
    }
    .pass-reset__title {
        font-size: 2.5em;
    }
}

@media screen and (max-width: 400px) {
    .user-container, .pass-reset__box {
        width: 95%;
        padding: 10px;
    }
    .pass-reset__title {
        font-size: 2em;
    }
}

