﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

@font-face {
    font-family: Lato;
    src: url('../fonts/Lato-Regular.ttf');
}

@font-face {
    font-family: Lato;
    font-weight: bold;
    src: url('/fonts/Lato-Bold.ttf');
}
@font-face {
    font-family: "Inter";
    src: url("/fonts/static/Inter-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
body {
    font-size: 1.125rem;
    font-family: "Inter",Helvetica,Arial,"Droid Sans","Arimo",sans-serif;
    letter-spacing: 1.2px;
}
a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
    width: 300px;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #d18140;
    border-color: #d18140;
}

.i {
    text-align: center;
}

.imglogo {
    height: 50px;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    font-family: "Roboto", sans-serif;
    background-color: white;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
    text-align: center;
    background:white;
}

/*for tab control*/
div.login-logout-tab div.card-header {
    padding: 0px 0px -12px 0px;
}

.card-content {
    padding: 15px;
}

div.login-logout-tab li.nav-item {
    width: 50%;
}

div.login-logout-tab a.nav-link {
    font-size: 25px;
    color: #495057;
    text-align: center;
}

#progress-wrp {
    border: 1px solid #0099CC;
    padding: 1px;
    position: relative;
    height: 30px;
    border-radius: 3px;
    margin: 10px;
    text-align: left;
    background: #fff;
    box-shadow: inset 1px 3px 6px rgba(0, 0, 0, 0.12);
}

.progress-bar {
    background-color: white;
    color: black;
}

#progress-wrp .progress-bar {
    height: 100%;
    border-radius: 3px;
    background-color: lime;
    width: 0;
    box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.11);
}

#progress-wrp .status {
    top: 3px;
    left: 50%;
    position: absolute;
    display: inline-block;
    color: #000000;
}

.collapse-class-hide {
    display: none;
    transition: all 0.6s;
}

    .collapse-class-hide.collapse-class-show {
        display: unset;
        transition: all 0.6s;
    }

* {
    box-sizing: border-box;
}

body {
    font: 16px Arial;
}

.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
    min-width: 200px;
    width: 100%
}

input {
    border: 1px solid transparent;
    padding: 10px;
    font-size: 16px;
}

    input[type=text] {
        background-color: #f1f1f1;
        width: 100%;
    }

    input[type=submit] {
        background-color: DodgerBlue;
        color: #fff;
    }

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}

    .autocomplete-items div {
        padding: 10px;
        cursor: pointer;
        background-color: #fff;
        border-bottom: 1px solid #d4d4d4;
    }

        .autocomplete-items div:hover {
            /*when hovering an item:*/
            background-color: #e9e9e9;
        }

.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}

.dt-button {
    padding: 5px 7px 7px 7px;
    border-radius: 7px;
    box-shadow: 1px 1px 1px 1px;
    border: 1px solid lightgray;
    margin-left: 5px;
    /*background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(9,121,19,1) 35%, rgba(0,255,36,1) 100%);*/
    background: white;
    color: black;
    min-width: 70px;
}

    .dt-button:hover {
        font-weight: bold;
        color: black;
        /*background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(9,121,19,1) 50%, rgba(108,249,2,1) 100%);*/
        box-shadow: 2px 2px 1px 1px;
    }

div.form-control {
    background-color: white;
}

.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}


    .upload-btn-wrapper input[type=file] {
        font-size: 100px;
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
    }

.hidden {
    display: none !important;
}

.red {
    color: red;
}

.banner-newsletter {
    margin-top: 30vh;
    background: rgba(0,255,0,0.1);
    margin-left: -50px;
    margin-right: -50px;
}

display-flex {
    display: flex;
    justify-items: normal;
}

.visible-xs, .visible-sm, .visible-md, .visible-lg {
    display: none !important;
}

.visible-xs-block, .visible-xs-inline, .visible-xs-inline-block,
.visible-sm-block, .visible-sm-inline, .visible-sm-inline-block,
.visible-md-block, .visible-md-inline, .visible-md-inline-block,
.visible-lg-block, .visible-lg-inline, .visible-lg-inline-block {
    display: none !important;
}

@media (max-width:575px) {
    table.visible-xs {
        display: table !important;
    }

    tr.visible-xs {
        display: table-row !important;
    }

    th.visible-xs, td.visible-xs {
        display: table-cell !important;
    }

    .visible-xs {
        display: block !important;
    }

    .visible-xs-block {
        display: block !important;
    }

    .visible-xs-inline {
        display: inline !important;
    }

    .visible-xs-inline-block {
        display: inline-block !important;
    }
}

@media (min-width:576px) and (max-width:767px) {
    table.visible-sm {
        display: table !important;
    }

    tr.visible-sm {
        display: table-row !important;
    }

    th.visible-sm,
    td.visible-sm {
        display: table-cell !important;
    }

    .visible-sm {
        display: block !important;
    }

    .visible-sm-block {
        display: block !important;
    }

    .visible-sm-inline {
        display: inline !important;
    }

    .visible-sm-inline-block {
        display: inline-block !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    table.visible-md {
        display: table !important;
    }

    tr.visible-md {
        display: table-row !important;
    }

    th.visible-md,
    td.visible-md {
        display: table-cell !important;
    }

    .visible-md {
        display: block !important;
    }

    .visible-md-block {
        display: block !important;
    }

    .visible-md-inline {
        display: inline !important;
    }

    .visible-md-inline-block {
        display: inline-block !important;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    table.visible-lg {
        display: table !important;
    }

    tr.visible-lg {
        display: table-row !important;
    }

    th.visible-lg,
    td.visible-lg {
        display: table-cell !important;
    }

    .visible-lg {
        display: block !important;
    }

    .visible-lg-block {
        display: block !important;
    }

    .visible-lg-inline {
        display: inline !important;
    }

    .visible-lg-inline-block {
        display: inline-block !important;
    }
}

@media (min-width:1200px) {
    table.visible-xl {
        display: table !important;
    }

    tr.visible-xl {
        display: table-row !important;
    }

    th.visible-xl,
    td.visible-xl {
        display: table-cell !important;
    }

    .visible-xl {
        display: block !important;
    }

    .visible-xl-block {
        display: block !important;
    }

    .visible-xl-inline {
        display: inline !important;
    }

    .visible-xl-inline-block {
        display: inline-block !important;
    }
}

@media (max-width:575px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width:576px) and (max-width:767px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .hidden-lg {
        display: none !important;
    }
}

@media (min-width:1200px) {
    .hidden-xl {
        display: none !important;
    }
}

.btn.booknow {
    background: none;
    background-color: #FF703F;
    color: #fff;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 15px;
    min-width: 100px;
    font-size: 14px;
    text-shadow: none;
    border: 0;
    font-family: 'Inter';
    font-weight: 700;
    letter-spacing: 0.2em;
}

.text-left {
    text-align: left;
}

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

.text-right {
    text-align: right;
}


.content-wrapper .rectangle {
    background: #386097;
}

.content-wrapper.animating-in .rectangle {
    transform: skewX(45deg) translateX(255%);
    opacity: .5;
}

.content-wrapper .rectangle {
    top: 77px;
    z-index: auto;
    width: 100%;
    height: calc(100% - 138px);
    position: absolute;
    left: -300%;
    background: #386097;
    transform: skewX(45deg);
    opacity: .5;
    z-index: 0;
    transition: opacity .85s cubic-bezier(.755,.05,.855,.06);
}


.content-wrapper .rectangle2 {
    background: linear-gradient(#386097,#1c3e6b);
}

.content-wrapper.animating-in .rectangle2 {
    transform: skewX(45deg) translateX(255%);
    opacity: 1;
}

.content-wrapper div.rectangle2 {
    background: #386097;
}

.content-wrapper .rectangle2 {
    transform: skewX(45deg) translateX(259%);
    opacity: 1;
}

.content-wrapper .rectangle2 {
    transform: skewX(45deg) translateX(-90px);
}

.content-wrapper .rectangle2 {
    top: 100px;
    width: 100%;
    height: calc(100% - 160px);
    position: absolute;
    left: -306%;
    background: linear-gradient(#386097,#1c3e6b);
    transform: skewX(45deg) translateX(-90px);
    opacity: 1;
    z-index: 0;
    transition: opacity .85s cubic-bezier(.755,.05,.855,.06);
}

.content-wrapper .rectangle2 {
    top: 77px;
    width: 100%;
    height: calc(100% - 138px);
    position: absolute;
    left: -300%;
    background: linear-gradient(#386097,#273a77);
    transform: skewX(45deg) translateX(-90px);
    opacity: 1;
    z-index: 0;
    transition: opacity .85s cubic-bezier(.755,.05,.855,.06);
}

.content-wrapper .rectangle2 {
    left: -306% !important;
    background: linear-gradient(#386097,#1c3e6b);
}

.content-wrapper .container {
    display: -moz-flex;
    display: flex;
    align-content: center;
    height: 100%;
}

.content-wrapper .container {
    display: -moz-flex;
    display: flex;
    align-content: center;
    height: 100%;
}

@media screen and (min-width: 1048px) .content-wrapper .container {
    margin-left: 90px;
}

@media (min-width: 992px) .container, .container-lg, .container-md, .container-sm {
    max-width: 960px;
}

@media (min-width: 768px) .container, .container-md, .container-sm {
    max-width: 720px;
}

@media (min-width: 576px) .container, .container-sm {
    max-width: 540px;
}

@media (min-width: 992px) .container {
    max-width: 960px;
}

@media (min-width: 768px) .container {
    max-width: 720px;
}

@media (min-width: 576px) .container {
    max-width: 540px;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1200px) .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px;
}

@media (min-width: 992px) .container, .container-lg, .container-md, .container-sm {
    max-width: 960px;
}

@media (min-width: 768px) .container, .container-md, .container-sm {
    max-width: 720px;
}


.container * {
    z-index: 200;
}

.content-wrapper .container .content .primary-button:hover {
    background: #d18140;
    border-color: #d18140;
    color: #fff !important;
}

.content-wrapper .container .content .primary-button {
    margin: 16px 0;
    font-size: 1.125rem;
    font-family: "Inter",Helvetica,Arial,"Droid Sans","Arimo",sans-serif;
    letter-spacing: 1.2px;
    color: #fff;
    text-transform: uppercase;
    background: #c25700 0 0 no-repeat padding-box;
    border: 2px solid #c25700;
    opacity: 1;
    padding: 10px;
    border-radius: 50px;
}

.banner-section.standard .primary-button:hover {
    background-color: #d18140;
    border-color: #d18140;
}

.banner-section.standard .primary-button {
    margin: 1.5rem 0 0;
    color: #fff;
    background-color: #c25700;
}

.primary-button.reversed:hover {
    background-color: #fff;
    color: #c25700 !important;
}

.main-container a:hover {
    text-decoration: none;
}

.primary-button.reversed {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.primary-button:hover {
    background-color: #c25700;
    color: #fff !important;
    opacity: 1;
}

.home .content-wrapper .container .content .primary-button .arrow-icon {
    width: 22px;
    height: 13px;
    background-size: 22px 13px;
    margin-left: 10px;
    transition: .25s cubic-bezier(.215,.61,.355,1);
    position: relative;
    display: inline-block;
    background-repeat: no-repeat;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMTciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTS44MDQgOS4zMjRoMjUuMjZsLTUuNDcgNS42MDRhLjgxLjgxIDAgMDAwIDEuMTU0Ljg2Ljg2IDAgMDAuNTY0LjI0OC44Ni44NiAwIDAwLjU2My0uMjQ4bDYuODM4LTcuMDA1YS44MS44MSAwIDAwMC0xLjE1NEwyMS43Mi45MThhLjc2NS43NjUgMCAwMC0xLjEyNyAwIC44MS44MSAwIDAwMCAxLjE1NGw1LjQ3IDUuNjA0SC44MDVjLS40ODIgMC0uODA0LjMzLS44MDQuODI0IDAgLjQ5NC4zMjIuODI0LjgwNC44MjR6IiBmaWxsPSIjRkZGIi8+PC9zdmc+);
}

.banner-section.standard .primary-button .arrow-icon {
    display: none;
}

.primary-button.reversed .arrow-icon {
    width: 22px;
    height: 13px;
    background-size: 22px 13px;
    margin-left: 10px;
    transition: .25s cubic-bezier(.215,.61,.355,1);
    position: relative;
    display: inline-block;
    background-repeat: no-repeat;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMTciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTS44MDQgOS4zMjRoMjUuMjZsLTUuNDcgNS42MDRhLjgxLjgxIDAgMDAwIDEuMTU0Ljg2Ljg2IDAgMDAuNTY0LjI0OC44Ni44NiAwIDAwLjU2My0uMjQ4bDYuODM4LTcuMDA1YS44MS44MSAwIDAwMC0xLjE1NEwyMS43Mi45MThhLjc2NS43NjUgMCAwMC0xLjEyNyAwIC44MS44MSAwIDAwMCAxLjE1NGw1LjQ3IDUuNjA0SC44MDVjLS40ODIgMC0uODA0LjMzLS44MDQuODI0IDAgLjQ5NC4zMjIuODI0LjgwNC44MjR6IiBmaWxsPSIjRkZGIi8+PC9zdmc+);
}

.primary-button .arrow-icon {
    margin-left: 10px;
    transition: .25s cubic-bezier(.215,.61,.355,1);
    position: relative;
    display: inline-block;
    background-repeat: no-repeat;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMTciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTS44MDQgOS4zMjRoMjUuMjZsLTUuNDcgNS42MDRhLjgxLjgxIDAgMDAwIDEuMTU0Ljg2Ljg2IDAgMDAuNTY0LjI0OC44Ni44NiAwIDAwLjU2My0uMjQ4bDYuODM4LTcuMDA1YS44MS44MSAwIDAwMC0xLjE1NEwyMS43Mi45MThhLjc2NS43NjUgMCAwMC0xLjEyNyAwIC44MS44MSAwIDAwMCAxLjE1NGw1LjQ3IDUuNjA0SC44MDVjLS40ODIgMC0uODA0LjMzLS44MDQuODI0IDAgLjQ5NC4zMjIuODI0LjgwNC44MjR6IiBmaWxsPSIjQzI1NzAwIi8+PC9zdmc+);
    width: 22px;
    height: 13px;
    background-size: 22px 13px;
}

.arrow-icon {
    margin-left: 10px;
    transition: .25s cubic-bezier(.215,.61,.355,1);
    position: relative;
    display: inline-block;
    background-repeat: no-repeat;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMTciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTS44MDQgOS4zMjRoMjUuMjZsLTUuNDcgNS42MDRhLjgxLjgxIDAgMDAwIDEuMTU0Ljg2Ljg2IDAgMDAuNTY0LjI0OC44Ni44NiAwIDAwLjU2My0uMjQ4bDYuODM4LTcuMDA1YS44MS44MSAwIDAwMC0xLjE1NEwyMS43Mi45MThhLjc2NS43NjUgMCAwMC0xLjEyNyAwIC44MS44MSAwIDAwMCAxLjE1NGw1LjQ3IDUuNjA0SC44MDVjLS40ODIgMC0uODA0LjMzLS44MDQuODI0IDAgLjQ5NC4zMjIuODI0LjgwNC44MjR6IiBmaWxsPSIjQzI1NzAwIi8+PC9zdmc+);
    width: 22px;
    height: 13px;
    background-size: 22px 13px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 22px;
    background: none;
    border: none;
    z-index: 200;
    padding: 5px;
}
form row > label {
    opacity: .65;
    font-size: 0.85rem;
}


.normal-table tr td,
.normal-table tr th {
    border: 1px solid black;
    padding: 5px;
}

.normal-table tr th {
    background-color: #d18140;
    color: white;
}

.normal-table tr td:nth-child(1) {
    text-align: center;
    padding: 15px;
    font-weight: bold;
}

#zoom {
    position: fixed;
    z-index: 3000;
    bottom: 0;
    left: calc(50% - 60px);
    width: 120px;
    text-align: center;
}
.torna-alla-mappa {
    position:absolute;
}

@media(min-width:933px) {
    .jobposition {
        width: 300px !important;
        max-width: 300px !important;
        min-width: 300px !important;
    }
}
@media(max-width:932px) {
 
    .jobposition .body-position {
        padding: 7px !important;
    }
    .title-col-job {
        height: 90px;
    }
}
.body-container {
    margin-left:10px;
    margin-right:10px;
}
@media(max-width:700px) {
    .jobposition .body-position {
        padding: 2px !important;
        word-break: break-word !important;
        min-height: 170px !important;
    }

    .jobposition .header-position {
        word-break: break-word !important;
        min-height: 60px !important;
        height: 60px !important;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .jobposition {
        margin-left: 1px !important;
        margin-right: 1px !important;
        max-width: 95% !important;
        min-width: 95% !important;
    }

    .title-col-job {
        word-break: break-word !important;
        font-size: 11px !important;
        min-height: 70px !important;
    }

    .navbar-light .navbar-brand {
        color: rgba(0,0,0,.9);
        max-width: 60px;
        max-height: 60px;
    }
    .navbar {
        z-index:201;
    }
        #zoom {
            position: absolute;
            z-index: 3000;
            bottom: 0px;
            left: 0px;
            width: 100vw;
            text-align: center;
            right: 0px;
        }

        .head-detail {
        margin-top:20px;
        }
    .torna-alla-mappa {
        position: unset;
    }
}
