body, html {
    min-height: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

#page-wrapper {
    display: flex;
    justify-content: stretch;
    height: 100%;
}

#left-column {
    width: 50%;
    border-right: 1px solid #d3e0e9;
    background-color: #26326d;
    box-shadow: inset 310px 0 95px -300px rgba(0,0,0,0.2);
}

#right-column {
    width: 50%;
    background-color: #fefefe;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 42px;
    font-size: 14px;
    line-height: 1.6;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    background-color: #3097d1;
    border-color: #2a88bd;
    font-family: Raleway,sans-serif;
    font-family: Roboto;
}

.btn:hover {
    background-color: #2579a9;
    border-color: #1f648b;
}

#listing {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-top: 2%;
}

.list-employ-block {
    min-height: 3.5em;
    width: 44.5%;
    border: 1px solid #d3e0e9;
    box-sizing: border-box;
    margin-top: 2.5%;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
    text-align: center;
    display: inline-flex;
    justify-content: center;
    font-family: Raleway;
    cursor: pointer;
    align-items: center;
    vertical-align: top;
    background-color: #fefefe;
    padding: 6.5% 3%;
    color: #cccaca;
    font-size: 26px;
    font-family: Roboto;
}

.list-employ-block.actif {
    background-color: #46eda8;
    background-image: url(../img/checked.png);
    background-repeat: no-repeat;
    background-position: center left 30px;
    background-size: 35px;
    color: white;
    border-color: transparent;
}

#connect-form {
    width: 70%;
}

#connect-form form {
    text-align: center;
}

#connect-form form > * {
    display: block;
    margin: auto;
}

#connect-form form > select {
    width: 100%;
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
    -webkit-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    font-size: 30px;
    line-height: 1.6;
    font-family: Raleway;
    margin-bottom: 30px;
    color: black;
    border: none;
    outline: 0;
    box-shadow: 0 0 25px 5px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0 0 25px 5px rgba(0,0,0,0.1);
    padding: 30px 0 20px 30px;
    height: auto;
    font-size: 26px;
    font-weight: 600;
    font-family: Roboto;
}

#connect-form form > input[type=number] {
    width: 100%;
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
    -webkit-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    padding: 0;
    box-sizing: border-box;
    font-size: 27px;
    line-height: 1.6;
    font-family: Raleway;
    padding-left: 15px;
    margin-bottom: 30px;
    -webkit-text-security: disc;
    color: black;
    border: none;
    outline: 0;
    box-shadow: 0 0 25px 5px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0 0 25px 5px rgba(0,0,0,0.1);
    padding: 30px 0 20px 30px;
    height: auto;
    font-size: 26px;
    font-weight: 600;
    font-family: Roboto;
}

#connect-form form > input[type=number]::placeholder {
  color: black;
}

#connect-form > form > .btn {
    font-size: 30px;
    width: 100%;
    text-transform: uppercase;
    font-weight: 600;
    padding: 20px 0;
    background-color: #cccaca;
    border: none;
    margin-top: 40px;
    font-family: Roboto;
}

#popup_confirm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

#popup_confirm > #popup_confirm_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);
    background-color: rgba(0,0,0,.6);
    background-image: url(../img/close.png);
    background-repeat: no-repeat;
    background-position: top 11% right 10%;
}

#popup_confirm > #popup_confirm_box {
    position: absolute;
    z-index: 2;
    top: 20%;
    left: 30%;
    width: 40%;
    text-align: center;
    background-color: white;
    border: 1px solid #d3e0e9;
    border-radius: 5px;
    padding: 70px 75px 50px 75px;
    box-sizing: border-box;
    font-weight: 500;
    font-size: 2.1em;
    line-height: 1.5em;
    font-family: Roboto;
}

#popup_confirm_box > img {
    display: block;
    margin: auto;
    margin-bottom: 25px;
}

#popup_confirm .btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    background-color: #cccaca;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
    color: white;
    padding: 20px 0;
    margin-top: 65px;
    margin-bottom: 10px;
    font-family: Roboto;
}

#o-clock {
    text-align: center;
    font-family: Roboto;
    margin: auto;
    background-color: #26326d;
    color: white;
    font-size: 75px;
    font-weight: 600;
    padding: 40px 0;
    border-radius: 7px;
    margin-top: 25px;
    margin-bottom: 25px;
}

#popup_confirm > #popup_confirm_box input[type=checkbox]{
    display: none !important;
}

#popup_confirm_box label {
    min-height: 2.5em;
    width: 45%;
    margin: 0 2%;
    border: 1px solid #d3e0e9;
    box-sizing: border-box;
    margin-top: 4%;
    border-radius: 6px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
    text-align: center;
    display: inline-flex;
    justify-content: center;
    font-family: Raleway;
    padding: 5% 2%;
    background-color: #26326d;
    cursor: pointer;
    align-items: center;
    vertical-align: top;
    text-transform: uppercase;
    font-size: 23px;
    font-weight: 400;
    color: white;
    font-family: Roboto;
}

#popup_confirm_box input:checked + label {
    background-color: #46eda8;
    background-image: url(../img/checked.png);
    background-repeat: no-repeat;
    background-position: center left 30px;
    background-size: 35px;
    font-family: Roboto;
}

#popup_confirm_box > form {
    margin-top: 30px;
}

#pointeuse-logo {
    display: block;
    margin: auto;
    margin-top: 80px;
}

.tk_agenda_btn {
    padding: 10px 20px;
    background-color: #26326d;
    border: none;
}

.tk_agenda_btn:hover {
    background-color: #26326d;
}

.tk_agenda_wrapper {
    position: absolute;
    top: 10px;
    right: 10px;
}

#select_agenda {
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
    color: black;
    border: none;
    outline: 0;
    box-shadow: 0 0 25px 5px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0 0 25px 5px rgba(0,0,0,0.1);
    padding: 13px 10px;
}

#iframe_container, #iframe_container > iframe {
    display: none;
}

#iframe_container {
    position: absolute;
    width: 160%;
    height: 80%;
    left: 20%;
}

.tk_agenda_close_btn {
    padding: 10px 20px;
    background-color: #26326d;
    border: none;
    float: right;
}

.tk_agenda_close_btn:hover {
    background-color: #26326d;
}

.ms_popuptitle {
    font-weight: 900;
    margin-top: 20px;
    margin-bottom: 10px;
}

.ms_popupmsg {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
    box-shadow: -3px 3px 15px rgba(0,0,0,0.2);
    border-radius: 5px;
    padding: 5px;
}
