article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

*,
*::before,
*::after,
*:before,
*:after {
    box-sizing: border-box
}

input,
button,
textarea {
    color: inherit;
    background: none
}


input[type=color] {
    width: 1em
}

input::-ms-clear {
    display: none
}

details,
summary {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%
}

mark {
    background: none
}

*,
*::before,
*::after,
*:before,
*:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

hr {
    height: 1px;
    margin: 0;
    padding: 0
}

u {
    text-decoration: none
}

table th {
    text-align: left
}

a,
a:link,
a:visited,
a:focus,
a:active {
    color: inherit;
    outline: none;
    text-decoration: none
}

a:hover {
    outline: none;
    text-decoration: none
}

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

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

body {
    background-color: white;
    color: #505050;
    font-family: 'Open Sans', sans-serif;
    overflow: hidden
}

header {
    width: 100vw;
    height: 85px;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #E8E8E8;
    background-color: white
}

header .logoSection {
    width: 185px;
    position: relative
}

header .logoSection img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    max-width: 140px;
    max-height: 50px
}

header .logoSection img.menuIcon {
    display: none;
    width: 40px;
    cursor: pointer;
    transform: translateX(-50%) translateY(-50%) rotate(0deg);
    transition: 0.2s ease-out
}

header .logoSection img.menuIcon.toggle {
    transform: translateX(-50%) translateY(-50%) rotate(90deg)
}

header .mainSection {
    background-color: white;
    width: calc(100% - 185px - 380px - 275px);
    border-left: 1px solid #E8E8E8
}

header .mainSection .brand {
    margin-left: 75px;
    margin-top: 31px;
    color: #8E8E8E;
    font-size: 18px;
    letter-spacing: 0.05em
}

header .helloSection {
    background-color: white;
    width: 380px;
    border-left: 1px solid #E8E8E8
}

header .helloSection .hello {
    text-align: center;
    color: #8E8E8E;
    margin-top: 35px;
    font-size: 14px;
    letter-spacing: 0.025em
}

header .helloSection .hello span {
    font-weight: 600
}

header .disconnectSection {
    background-color: white;
    width: 275px;
    border-left: 1px solid #E8E8E8
}

header .disconnectSection .button {
    display: block;
    margin-top: 23px;
    background-color: #E88F8F;
    color: white;
    width: 160px;
    height: 37px;
    border-radius: 5px;
    margin-left: 35px;
    transition: background 1s;
    position: relative
}

header .disconnectSection .button img {
    width: 18px;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    left: 18%
}

header .disconnectSection .button p {
    font-size: 14px;
    top: 50%;
    left: 58%;
    letter-spacing: 0.025em;
    position: absolute;
    transform: translateX(-50%) translateY(-50%)
}

header .disconnectSection .button:hover {
    background-color: #e66767
}

.content {
    display: -ms-flexbox;
    display: flex;
    width: 100vw;
    height: calc(100vh - 84px);
    position: relative
}

.content .menu {
    width: 185px;
    position: relative;
    background-color: #F3F3F3
}

.content .menu .page {
    height: 167px;
    text-align: center;
    position: relative;
    display: block;
    transition: background 0.3s ease-out
}

.content .menu .page::after {
    position: absolute;
    content: '';
    transform: translateY(-50%);
    top: 50%;
    left: 100%;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent
}

.content .menu .page svg {
    margin-top: 47px;
    margin-bottom: 10px;
    fill: #D1D1D1
}

.content .menu .page p {
    font-size: 14px;
    color: #8E8E8E;
    letter-spacing: 0.025em
}

.content .menu .page:hover {
    background-color: #f7f7f7
}

.content .menu .page:hover svg {
    animation: shake ease-out 0.6s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%
}

.content .menu .page.active {
    transition: filter 0.3s ease-out
}

.content .menu .page.active:hover {
    filter: brightness(1.1)
}

.content .menu .page.active::after {
    border-left: 15px solid white
}

.content .menu .page.active p {
    color: white
}

.content .menu .page.active .notifications {
    background-color: white
}

.content .menu .page.active svg {
    fill: white
}

.content .menu .page .notifications {
    position: absolute;
    top: 28%;
    left: 59%;
    width: 20px;
    height: 20px;
    color: white;
    border-radius: 100px;
    font-size: 12px;
    padding-top: 4px;
    font-weight: 600
}

.content .interface {
    width: calc(100% - 185px);
    background-color: #FDFDFD
}

@keyframes shake {
    0% {
        transform: rotate(0deg)
    }
    20% {
        transform: rotate(6deg)
    }
    40% {
        transform: rotate(-6deg)
    }
    60% {
        transform: rotate(6deg)
    }
    80% {
        transform: rotate(-6deg)
    }
    100% {
        transform: rotate(0deg)
    }
}

@media screen and (max-width: 1100px) {
    .mainSection {
        display: none
    }
}

@media screen and (max-width: 850px) {
    .helloSection {
        display: none
    }
    .headerSection {
        width: 80px !important
    }
    .headerSection img.logo {
        display: none
    }
    .headerSection img.menuIcon {
        display: block !important
    }
    .disconnectSection {
        width: calc(100vw - 80px) !important
    }
    .disconnectSection .button {
        float: right;
        margin-right: 35px
    }
    .content .menu {
        position: absolute;
        width: 80px !important;
        height: calc(100vh - 84px);
        transform: translateX(-80px);
        transition: transform 0.3s cubic-bezier(0, 0, 0.27, 1);
        z-index: 10
    }
    .content .menu .page {
        height: 100px !important
    }
    .content .menu .page svg {
        height: 33px !important;
        margin-top: 35px !important
    }
    .content .menu .page p {
        display: none
    }
    .content .menu .page::after {
        display: none
    }
    .content .interface {
        position: absolute;
        width: calc(100vw) !important;
        min-height: calc(100vh - 85px);
        transform: translateX(0px);
        transition: transform 0.3s cubic-bezier(0, 0, 0.27, 1)
    }
    .content.toggle .menu {
        transform: translateX(0px)
    }
    .content.toggle .interface {
        transform: translateX(80px)
    }
}

@media screen and (max-height: 750px) {
    .menu {
        overflow-y: scroll
    }
}

.interface {
    padding: 55px calc(75px - 1%) 0 calc(75px - 1%);
    overflow-y: scroll
}

.interface .numberBox {
    background-color: white;
    box-shadow: 0px 2px 4px 0px #d2d2d2;
    width: 31%;
    height: 250px;
    display: inline-block;
    margin: 0 1% 50px 1%;
    border-radius: 5px;
    transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
    position: relative
}

.interface .numberBox img.phoneBg {
    width: 100%;
    height: 85px;
    object-fit: cover;
    object-position: bottom;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-bottom: 15px
}

.interface .numberBox:hover {
    box-shadow: 0px 6px 20px 0px rgba(210, 210, 210, 0.62);
    transform: translateY(-3px)
}

.interface .numberBox .name {
    position: absolute;
    top: 10%;
    color: white;
    font-size: 20px;
    letter-spacing: 0.05em;
    padding: 5px 10px;
    margin-left: 20px
}

.interface .numberBox .name p.textEdit {
    padding: 5px;
    display: inline-block;
    margin: 0;
    transition: background 0.3s ease;
    border-radius: 3px
}

.interface .numberBox .name .icons {
    display: inline-block;
    margin-left: 5px;
    cursor: pointer
}

.interface .numberBox .name .icons img {
    padding: 4px;
    transform: translateY(4px);
    border: 1px solid transparent;
    transition: border 0.3s ease-out, background 0.3s ease-out;
    border-radius: 2px
}

.interface .numberBox .name .icons img:hover {
    border: 1px solid rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.29)
}

.interface .numberBox .name .icons img.cancel,
.interface .numberBox .name .icons img.confirm {
    padding: 4px;
    transform: translateY(2px);
    margin-left: 3px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: background 0.3s ease-out
}

.interface .numberBox .name .icons img.cancel:hover,
.interface .numberBox .name .icons img.confirm:hover {
    background-color: rgba(255, 255, 255, 0.29)
}

.interface .numberBox .name.toggle p.textEdit {
    background-color: rgba(0, 0, 0, 0.15)
}

.interface .numberBox .name.toggle p.textEdit::-moz-selection {
    background: rgba(255, 255, 255, 0.25)
}

.interface .numberBox .name.toggle p.textEdit::selection {
    background: rgba(255, 255, 255, 0.25)
}

.interface .numberBox p {
    margin-left: 20px;
    margin-right: 20px
}

.interface .numberBox .numberInfo {
    margin-bottom: 10px
}

.interface .numberBox .numberInfo .number {
    color: #505050;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em
}

.interface .numberBox .numberInfo .forfait {
    color: #8E8E8E;
    font-size: 11px;
    letter-spacing: 0.05em;
    margin-left: 10px
}

.interface .numberBox .desc .title {
    color: #8E8E8E;
    font-size: 12px;
    letter-spacing: 0.05em
}

.interface .numberBox .desc .time {
    font-size: 12px;
    color: #8E8E8E;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.05em
}

.interface .numberBox .desc .price {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.05em
}

.interface .numberBox .button {
    display: inline-block;
    width: calc(50% - 25px);
    position: relative;
    border-radius: 5px;
    transition: background 0.5s ease-out;
    margin-top: 15px
}

.interface .numberBox .button img {
    position: absolute;
    transform: translateY(-50%) rotate(0deg);
    top: 50%;
    left: 15px;
    transition: transform 0.6s cubic-bezier(0, 0, 0.35, 1);
    will-change: transform
}

.interface .numberBox .button p {
    display: inline-block;
    color: white;
    font-size: 12px;
    letter-spacing: 0.025em;
    margin: 0;
    padding: 12px 0;
    padding-left: 35px
}

.interface .numberBox .button.history {
    background-color: #AEBAE6;
    margin-left: 20px
}

.interface .numberBox .button.history:hover {
    background-color: #9caade
}

.interface .numberBox .button.configuration {
    background-color: #E6AEAE;
    margin-right: 20px;
    margin-left: 5px
}

.interface .numberBox .button.configuration:hover {
    background-color: #e09898
}

.interface .numberBox .button:hover img {
    transform: translateY(-50%) rotate(-360deg)
}

@media screen and (max-width: 1400px) {
    .interface .numberBox {
        width: 47.5%
    }
}

@media screen and (max-width: 1050px) {
    .interface .numberBox {
        width: 97%
    }
}

@media screen and (max-width: 850px) {
    .interface {
        padding: 25px calc(25px - 1%) 0 calc(25px - 1%)
    }
    .numberBox {
        height: 300px !important
    }
    .overflow {
        display: none
    }
}

.interface {
    padding: 55px calc(75px - 1%) 0 calc(75px - 1%);
    overflow-y: scroll
}

.interface .boxIndex {
    background-color: white;
    box-shadow: 0px 2px 4px 0px #d2d2d2;
    width: 47.5%;
    display: inline-block;
    margin: 0 1% 50px 1%;
    border-radius: 5px;
    transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
    position: relative;
    padding: 25px 25px 5px 25px;
    float: left
}

.interface .boxIndex .info {
    margin-bottom: 20px
}

.interface .boxIndex .info .title {
    color: #8E8E8E;
    letter-spacing: 0.05em;
    font-size: 15px;
    font-style: italic
}

.interface .boxIndex .info .answer {
    color: #505050;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 15px;
    line-height: 21px
}

.interface .boxIndex:hover {
    box-shadow: 0px 6px 20px 0px rgba(210, 210, 210, 0.62);
    transform: translateY(-3px)
}

.interface h3 {
    margin: 0 1% 50px 1%;
    color: #505050;
    font-size: 18px;
    letter-spacing: 0.05em;
    font-weight: 600;
    line-height: 27px
}

@media screen and (max-width: 1050px) {
    .interface .boxIndex {
        width: 97%
    }
}

@media screen and (max-width: 850px) {
    .interface {
        padding: 25px calc(25px - 1%) 0 calc(25px - 1%)
    }
}

.interface {
    padding: 55px calc(75px - 1%) 0 calc(75px - 1%);
    overflow-y: scroll
}

.interface .gridFactures {
    background-color: white;
    box-shadow: 0px 2px 4px 0px #d2d2d2;
    width: 97%;
    display: inline-block;
    margin: 0 1% 50px 1%;
    border-radius: 5px;
    transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
    position: relative
}

.interface .gridFactures .line.topTable {
    color: white;
    font-size: 18px;
    letter-spacing: 0.05em;
    font-weight: 600;
    padding: 25px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.interface .gridFactures .line {
    padding: 20px 25px;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #505050
}

.interface .gridFactures .line:nth-child(even) {
    background-color: #f4f4f4
}

.interface .gridFactures .cell {
    display: inline-block;
    width: 19%
}

.interface .gridFactures .cell .download {
    background-color: #83C6E4;
    text-align: center;
    color: white;
    border-radius: 5px;
    padding: 10px;
    font-size: 10px;
    text-transform: uppercase;
    transition: background 1s ease-out
}

.interface .gridFactures .cell .download:hover {
    background-color: #60aacb
}

@media screen and (max-width: 850px) {
    .interface {
        padding: 25px calc(25px - 1%) 0 calc(25px - 1%)
    }
    .gridFactures {
        width: 600px !important
    }
}

.interface {
    padding: 55px calc(75px - 1%) 0 calc(75px - 1%);
    overflow-y: scroll
}

.interface .interfaceMenu {
    background-color: #F4F4F4;
    border: 1px solid #DEDEDE;
    border-radius: 10px;
    position: relative
}

.interface .interfaceMenu img {
    position: absolute;
    padding: 18px 25px;
    transition: transform 0.5s ease-out
}

.interface .interfaceMenu img:hover {
    transform: translateX(-5px)
}

.interface .interfaceMenu p {
    margin-left: 60px;
    border-left: 1px solid #DEDEDE;
    padding: 20px 30px;
    display: inline-block;
    color: #505050;
    letter-spacing: 0.1em;
    font-size: 14px;
    font-weight: 600
}

.interface div.tabBar {
    margin: 40px 0;
    width: auto
}

.interface div.tabBar .category {
    display: inline-block;
    text-transform: uppercase;
    color: #C4C4C4;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid #C4C4C4;
    margin-bottom: 5px
}

.interface div.tabBar .category:hover {
    background-color: #f5f5f5;
    color: #bcbcbc
}

.interface div.tabBar .category.active {
    color: white;
    transition: filter 0.3s ease-out
}

.interface div.tabBar .category.active:hover {
    filter: brightness(1.1)
}

.interface .boxInfo {
    margin-bottom: 30px
}

.interface .boxInfo h3 {
    font-size: 18px;
    margin-bottom: 10px
}

.interface .boxInfo p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px
}

.interface .boxInfo p span {
    font-weight: 600
}

.interface .boxInfo {
    background-color: white;
    box-shadow: 0px 2px 4px 0px #d2d2d2;
    display: inline-block;
    margin: 0 1% 50px 1%;
    border-radius: 5px;
    transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
    position: relative;
    padding: 25px 25px;
    float: left
}

.interface .boxInfo.grid {
    width: 100%;
}

.interface .boxInfo.grid .infoTime {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 90%;
    height: 10px;
    margin-left: 10%;
    margin-top : 20px;
}

.interface .boxInfo.grid .infoTime .hour {
    position: relative;
    height: 100%;
    border-left: 1px solid #e0e0e0
}

.interface .boxInfo.grid .infoTime .hour .txt {
    position: absolute;
    transform: translateX(-50%) translateY(-20px);
    color: #afafaf
}

.interface .boxInfo.grid .dayLine {
    position: relative;
    width: 100%;
    height: 70px;
    background-color: #fafafa;
    border: 1px solid #e0e0e0
}

.interface .boxInfo.grid .dayLine .dayName {
    font-weight: 600;
    background-color: #efefef;
    text-align: center;
    width: 10%;
    height: 100%;
    padding-top: 25px;
    display: inline-block;
    float: left;
    overflow: hidden;
    text-overflow: clip
}

.interface .boxInfo.grid .dayLine .daySelect {
    position: absolute;
    width: 90%;
    height: 100%;
    display: inline-block;
    cursor: pointer;
    right: 0;
}

.interface .boxInfo.grid .dayLine .daySelect .line {
    height: 100%;
    width: 4.1667%;
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    border-right: 1px solid rgba(0, 0, 0, 0.04);
    display: inline-block;
    float: left;
}

.interface .boxInfo.grid .dayLine .daySelect:hover {
    background-color: #f0f0f0
}

.interface .boxInfo.grid .dayLine .time {
    position: relative;
    width: 90%;
    height: 100%;
    display: inline-block;
    float: left;
    cursor: pointer;
    pointer-events: none
}

.interface .boxInfo.grid .dayLine .time .slot {
    position: absolute;
    height: 100%;
    transition: filter 0.3s ease-out;
    border: 1px solid rgba(82, 82, 82, 0.31);
    pointer-events: auto
}

.interface .boxInfo.grid .dayLine .time .slot.available, .dispo {
    background-color: #0099cc
}

.interface .boxInfo.grid .dayLine .time .slot.slot1 {
    background-color: #f1c40f
}

.interface .boxInfo.grid .dayLine .time .slot.slot2 {
    background-color: #2ecc71
}

.interface .boxInfo.grid .dayLine .time .slot.slot3 {
    background-color: #e74c3c
}

.interface .boxInfo.grid .dayLine .time .slot:hover {
    filter: brightness(1.1)
}

.interface .boxInfo:hover {
    box-shadow: 0px 6px 20px 0px rgba(210, 210, 210, 0.62);
    transform: translateY(-3px)
}

.interface .boxConfig {
    background-color: white;
    box-shadow: 0px 2px 4px 0px #d2d2d2;
    width: 47.5%;
    display: inline-block;
    margin: 0 1% 50px 1%;
    border-radius: 5px;
    transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
    position: relative;
    padding: 5px 25px;
    float: left
}

.interface .boxConfig:hover {
    box-shadow: 0px 6px 20px 0px rgba(210, 210, 210, 0.62);
    transform: translateY(-3px)
}

.interface .boxConfig input[type=file] {
    border-radius: 5px !important;
    height: auto !important;
    padding: 0 !important;
    margin-top: 10px;
    display: none
}

.interface .boxConfig input[type=file].display {
    display: block
}

.interface .boxConfig .spacer {
    background-color: #e3e3e3;
    width: 100%;
    height: 1px;
    margin: 40px 0
}

.interface .boxConfig .option {
    margin: 20px 0
}

.interface .boxConfig .option .info {
    display: inline-block;
    width: 45%;
    font-size: 14px;
    letter-spacing: 0.025em;
    line-height: 21px;
    color: #505050
}

.boxConfig .holidays {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    border: 1px solid rgba(82, 82, 82, 0.31);
    background-color: #fafafa;
    transform: translateY(3px)
}


.boxConfig .dispo {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    border: 1px solid rgba(82, 82, 82, 0.31);
    background-color: #0099cc;
    transform: translateY(3px)
}

.boxConfig .creneau1 {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    border: 1px solid rgba(82, 82, 82, 0.31);
    background-color: #f1c40f;
    transform: translateY(3px)
}

.boxConfig .creneau2 {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    border: 1px solid rgba(82, 82, 82, 0.31);
    background-color: #2ecc71;
    transform: translateY(3px)
}

.boxConfig .creneau3 {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    border: 1px solid rgba(82, 82, 82, 0.31);
    background-color: #e74c3c;
    transform: translateY(3px)
}

.interface .boxConfig .option .answer {
    display: inline-block;
    width: 45%
}

.interface .boxConfig .option .answer select {
    /*width: 135px*/
}

.interface .boxConfig .option .answer .button {
    border: 1px solid #C4C4C4;
    border-radius: 100px;
    text-transform: uppercase;
    color: #C4C4C4;
    display: inline-block;
    padding: 10px;
    min-width: 60px;
    text-align: center;
    font-size: 14px;
    margin-right: 10px;
    cursor: pointer
}

.interface .boxConfig .option .answer .button.toggle {
    color: white
}

.interface .boxConfig .option .answer .button:hover {
    background-color: #f5f5f5
}

.interface .boxConfig .option .answer input {
    border-radius: .25rem;
    border: 1px solid #C4C4C4;
    height: 34px;
    padding: 0 15px;
    font-size: 14px;
    outline: none
}

.interface .boxConfig .option .answer input::-webkit-input-placeholder {
    color: #dbdbdb
}

.interface .boxConfig .option .answer input:-ms-input-placeholder {
    color: #dbdbdb
}

.interface .boxConfig .option .answer input::placeholder {
    color: #dbdbdb
}

.interface .boxConfig .option .answer input.disable {
    background-color: #f5f5f5;
    color: #d4d4d4
}

.interface .boxConfig .option .answer input.disable::-webkit-input-placeholder {
    color: #afafaf
}

.interface .boxConfig .option .answer input.disable:-ms-input-placeholder {
    color: #afafaf
}

.interface .boxConfig .option .answer input.disable::placeholder {
    color: #afafaf
}

.interface .boxConfig .option .answer input[type=checkbox] {
    display: none
}

.interface .boxConfig .option .answer select.disabled,
.interface .boxConfig .option .answer #nameExpeditor.disabled,
.interface .boxConfig .option .answer #mailExpeditor.disabled {
    cursor: not-allowed;
    background-color: #d1d1d1
}

.interface .boxConfig .send {
        text-align: right;
    margin-right: 40px;
    margin-bottom: 15px;
}

.interface .boxConfig .send input.submit {
    border: 1px solid;
    padding: 0 10px;
    height: 30px;
    margin-bottom: 20px;
    cursor: pointer
}

.interface .boxConfig .send input.submit:hover {
    background-color: #f5f5f5
}

.boxConfig h3
{
    margin: 10px 1% 10px 1%;
    color: #505050;
    font-size: 18px;
    letter-spacing: 0.05em;
    font-weight: 600;
    line-height: 27px;
}

.boxConfig .table td
{
    vertical-align: middle;
}

.boxConfig .table td.center
{
    text-align: center;
}


.modal .error p {
    background-color: #ffebeb;
    border: 1px solid #ffcfcf;
    color: rgba(128, 54, 54, 0.9);
    border-radius: 20px;
    padding: 10px
}


.modal p.underline {
    text-decoration: underline
}

.modal p span {
    font-weight: 600;
    text-transform: capitalize
}

.modal input {
    border: 1px solid #c1c1c1;
    margin: 0 auto;
    display: block
}

.modal select {
    display: block;
    margin: 0 auto
}

.modal input[type=submit] {
    display: block;
    margin-top: 30px;
    color: white;
    height: 30px;
    padding: 0 10px;
    cursor: pointer;
    border: none
}

.modal button {
    cursor: pointer
}

.modal input[type=time] {
    border-radius: 100px;
    border: 1px solid #C4C4C4;
    height: 34px;
    padding: 0 15px;
    font-size: 14px;
    outline: none
}


@media screen and (max-width: 1050px) {
    .interface .boxConfig {
        width: 97%
    }
    .hideResp {
        display: none !important
    }
}

@media screen and (max-width: 850px) {
    .interface {
        padding: 25px calc(25px - 1%) 0 calc(25px - 1%)
    }
}

.interface {
    padding: 55px calc(75px - 1%) 0 calc(75px - 1%);
    overflow-y: scroll
}

.interface .interfaceMenu {
    background-color: #F4F4F4;
    border: 1px solid #DEDEDE;
    border-radius: 10px;
    position: relative
}

.interface .interfaceMenu img {
    position: absolute;
    padding: 18px 25px;
    transition: transform 0.5s ease-out
}

.interface .interfaceMenu img:hover {
    transform: translateX(-5px)
}

.interface .interfaceMenu p {
    margin-left: 60px;
    margin-bottom: 0px;
    border-left: 1px solid #DEDEDE;
    padding: 20px 30px;
    display: inline-block;
    color: #505050;
    letter-spacing: 0.1em;
    font-size: 14px;
    font-weight: 600
}

.interface .gridHistory {
    background-color: white;
    box-shadow: 0px 2px 4px 0px #d2d2d2;
    width: 97%;
    display: inline-block;
    margin: 0px 1% 50px 1%;
    border-radius: 5px;
    transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
    position: relative
}

.interface .gridHistory .line.topTable {
    color: white;
    font-size: 18px;
    letter-spacing: 0.05em;
    font-weight: 600;
    padding: 25px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.interface .gridHistory .line {
    padding: 20px 25px;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #505050
}

.interface .gridHistory .line:nth-child(even) {
    background-color: #f4f4f4
}

.interface .gridHistory .cell {
    display: inline-block;
    width: 18%;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 2px
}

.interface .gridHistory .cell .download {
    background-color: #83C6E4;
    text-align: center;
    color: white;
    border-radius: 5px;
    padding: 10px;
    font-size: 10px;
    text-transform: uppercase;
    transition: background 1s ease-out
}

.interface .gridHistory .cell .download:hover {
    background-color: #60aacb
}

@media screen and (max-width: 850px) {
    .interface {
        padding: 25px calc(25px - 1%) 0 calc(25px - 1%)
    }
    .gridHistory {
        width: 900px !important
    }
}

.interface.support {
    padding: 55px calc(75px - 1%) 0 calc(75px - 1%);
    overflow-y: scroll
}

.interface.support .button {
    color: white;
    display: inline-block;
    margin: 0 1% 40px 1%;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.025em
}

.interface.support .boxSupport {
    display: block;
    background-color: white;
    box-shadow: 0px 2px 4px 0px #d2d2d2;
    width: 47.5%;
    display: inline-block;
    margin: 0 1% 50px 1%;
    border-radius: 5px;
    transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
    position: relative;
    padding: 25px 25px 20px 25px;
    float: left;
    line-height: 24px
}

.interface.support .boxSupport:hover {
    box-shadow: 0px 6px 20px 0px rgba(210, 210, 210, 0.62);
    transform: translateY(-3px)
}

.interface.support .boxSupport:hover img {
    transform: translateY(-50%) translateX(5px)
}

.interface.support .boxSupport img {
    position: absolute;
    right: 25px;
    transform: translateY(-50%);
    top: 50%;
    transition: transform 0.5s ease-out
}

.interface.support h3 {
    margin: 0 1% 30px 1%;
    color: #505050;
    font-size: 18px;
    letter-spacing: 0.05em;
    font-weight: 600;
    line-height: 27px
}

@media screen and (max-width: 1050px) {
    .interface.support .boxSupport {
        width: 97%
    }
}

@media screen and (max-width: 850px) {
    .interface.support {
        padding: 25px calc(25px - 1%) 0 calc(25px - 1%)
    }
}

.interface {
    padding: 55px calc(75px - 1%) 0 calc(75px - 1%);
    overflow-y: scroll
}

.interface .boxTicket {
    background-color: white;
    box-shadow: 0px 2px 4px 0px #d2d2d2;
    width: 97%;
    display: inline-block;
    margin: 0 1% 50px 1%;
    border-radius: 5px;
    transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
    position: relative;
    padding: 15px 25px;
    float: left
}

.interface .boxTicket:hover {
    box-shadow: 0px 6px 20px 0px rgba(210, 210, 210, 0.62);
    transform: translateY(-3px)
}

.interface .boxTicket .option {
    margin: 20px 0
}

.interface .boxTicket .option .info {
    display: inline-block;
    width: 80px;
    margin-right: 20px;
    margin-top: 5px;
    font-size: 14px;
    letter-spacing: 0.025em;
    line-height: 21px;
    color: #505050;
    float: left;
    text-align: right
}

.interface .boxTicket .option .answer {
    display: inline-block;
    width: calc(99% - 100px)
}

.interface .boxTicket .option .answer input {
    border-radius: 5px;
    border: 1px solid #C4C4C4;
    height: 34px;
    padding: 0 15px;
    font-size: 14px;
    width: 100%
}

.interface .boxTicket .option .answer input::-webkit-input-placeholder {
    color: #dbdbdb
}

.interface .boxTicket .option .answer input:-ms-input-placeholder {
    color: #dbdbdb
}

.interface .boxTicket .option .answer input::placeholder {
    color: #dbdbdb
}

.interface .boxTicket .option .answer textarea {
    border-radius: 5px;
    border: 1px solid #C4C4C4;
    height: 34px;
    padding: 0 15px;
    font-size: 14px;
    width: 100%;
    padding-top: 10px;
    min-height: 150px;
    max-width: 100%
}

.interface .boxTicket .option .answer textarea::-webkit-input-placeholder {
    color: #dbdbdb
}

.interface .boxTicket .option .answer textarea:-ms-input-placeholder {
    color: #dbdbdb
}

.interface .boxTicket .option .answer textarea::placeholder {
    color: #dbdbdb
}

.interface .boxTicket .button {
    display: block;
    color: white;
    padding: 10px 15px;
    width: 150px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin: auto;
    letter-spacing: 0.1em;
    margin-bottom: 20px
}

@media screen and (max-width: 850px) {
    .interface {
        padding: 25px calc(25px - 1%) 0 calc(25px - 1%)
    }
    .info {
        width: 100% !important;
        text-align: left !important;
        margin-bottom: 10px !important
    }
    .answer {
        width: 100% !important
    }
}

.interface {
    padding: 55px calc(75px - 1%) 0 calc(75px - 1%);
    overflow-y: scroll
}

.interface .chatTicket {
    background-color: white;
    box-shadow: 0px 2px 4px 0px #d2d2d2;
    width: 97%;
    display: inline-block;
    margin: 0 1% 50px 1%;
    border-radius: 5px;
    transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
    position: relative;
    padding: 35px 45px;
    float: left
}

.interface .chatTicket:hover {
    box-shadow: 0px 6px 20px 0px rgba(210, 210, 210, 0.62);
    transform: translateY(-3px)
}

.interface .chatTicket .title {
    color: #505050;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.025em;
    margin-left: 20px;
    margin-bottom: 20px
}

.interface .chatTicket .spacer {
    height: 1px;
    background-color: #E0E0E0
}

.interface .chatTicket .chatBox {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    height: 450px;
    margin: 20px;
    overflow-y: scroll
}

.interface .chatTicket .chatBox .message {
    margin-top: 10px
}

.interface .chatTicket .chatBox .message.right {
    text-align: right
}

.interface .chatTicket .chatBox .message p {
    display: inline-block;
    width: 55%;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 21px;
    text-align: left
}

.interface .chatTicket .chatBox .message p.send {
    background-color: #F9F7F7
}

.interface .chatTicket .chatBox .message p.receive {
    color: white;
    font-weight: 600
}

.interface .chatTicket .messageGroup {
    margin: 20px 0
}

.interface .chatTicket .messageGroup .info {
    display: inline-block;
    width: 80px;
    margin-right: 20px;
    margin-top: 5px;
    font-size: 14px;
    letter-spacing: 0.025em;
    line-height: 21px;
    color: #505050;
    float: left
}

.interface .chatTicket .messageGroup .answer {
    display: inline-block;
    width: calc(99% - 100px)
}

.interface .chatTicket .messageGroup .answer input {
    border-radius: 5px;
    border: 1px solid #C4C4C4;
    height: 34px;
    padding: 0 15px;
    font-size: 14px;
    width: 100%
}

.interface .chatTicket .messageGroup .answer input::-webkit-input-placeholder {
    color: #dbdbdb
}

.interface .chatTicket .messageGroup .answer input:-ms-input-placeholder {
    color: #dbdbdb
}

.interface .chatTicket .messageGroup .answer input::placeholder {
    color: #dbdbdb
}

.interface .chatTicket .messageGroup .answer textarea {
    border-radius: 5px;
    border: 1px solid #C4C4C4;
    height: 34px;
    padding: 0 15px;
    font-size: 14px;
    width: 100%;
    padding-top: 10px;
    min-height: 70px;
    max-width: 100%
}

.interface .chatTicket .messageGroup .answer textarea::-webkit-input-placeholder {
    color: #dbdbdb
}

.interface .chatTicket .messageGroup .answer textarea:-ms-input-placeholder {
    color: #dbdbdb
}

.interface .chatTicket .messageGroup .answer textarea::placeholder {
    color: #dbdbdb
}

.interface .chatTicket .button {
    display: block;
    color: white;
    padding: 10px 15px;
    width: 150px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin: auto;
    letter-spacing: 0.1em;
    margin-bottom: 20px
}

@media screen and (max-width: 850px) {
    .interface {
        padding: 25px calc(25px - 1%) 0 calc(25px - 1%);
        min-height: 100px !important;
        height: calc(100vh - 85px) !important
    }
    .interface .chatTicket {
        margin-bottom: 0 !important
    }
    .interface .chatTicket .chatBox {
        height: 320px !important
    }
    .info {
        width: 100% !important;
        text-align: left !important;
        margin-bottom: 10px !important
    }
    .answer {
        width: 100% !important
    }
    .message p {
        width: 90% !important
    }
}

body {
    position: relative;
    background-color: #f8f8f8
}

body .loginBox {
    background-color: white;
    box-shadow: 0px 2px 4px 0px #d2d2d2;
    display: inline-block;
    border-radius: 5px;
    transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
    position: relative;
    padding: 35px 45px;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    top: 50vh;
    left: 50vw
}

body .loginBox:hover {
    box-shadow: 0px 6px 20px 0px rgba(210, 210, 210, 0.62);
    transform: translateX(-50%) translateY(calc(-50% - 3px))
}

body .loginBox h1 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase
}

body .loginBox .spacer {
    height: 1px;
    width: 300px;
    background-color: #d9d9d9;
    margin: 30px 0
}

body .loginBox p {
    margin-left: 20px;
    margin-bottom: 10px;
    margin-top: 25px;
    color: #8E8E8E
}

body .loginBox input {
    width: 100%;
    border-radius: 100px;
    border: 1px solid #C4C4C4;
    height: 34px;
    padding: 0 15px;
    font-size: 14px
}

body .loginBox input::-webkit-input-placeholder {
    color: #dbdbdb
}

body .loginBox input:-ms-input-placeholder {
    color: #dbdbdb
}

body .loginBox input::placeholder {
    color: #dbdbdb
}

body .loginBox input[type=submit] {
    margin-top: 50px;
    background-color: #74b56e;
    border-color: #74b56e;
    color: white;
    transition: background 0.3s
}

body .loginBox input[type=submit]:hover {
    background-color: #6bac65
}