.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

.animated.bounceIn {
  animation-duration: .7s; }

.animated.bounceOut {
  animation-duration: .5s; }

.animated.bounceIn {
  animation-name: bounceIn; }

.animated.bounceOut {
  animation-name: bounceOut; }

.animated.fadeIn {
  animation-name: fadeIn;
  animation-duration: .7s; }

.animated.fadeOut {
  animation-name: fadeOut;
  animation-duration: .3s; }

.animated.bounceInDown {
  animation-name: bounceInDown; }

.animated.bounceOutUp {
  animation-name: bounceOutUp; }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.confirm-holder {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999; }

.confirm-holder .shadow {
  width: 100%;
  height: 100%;
  background-color: rgba(50, 58, 68, 0.8); }

.confirm-holder .confirm {
  width: 320px;
  background-color: white;
  position: absolute;
  z-index: 9;
  top: 20%;
  left: 50%;
  margin-left: -160px;
  box-shadow: 3px 3px 20px #333;
  border-radius: 4px;
  overflow: hidden; }

.confirm-holder .confirm .message {
  width: 100%;
  padding: 5%;
  min-height: 50px;
  font-size: 1em;
  background-color: white;
  text-align: center;
  font-family: 'open-sanscondensed-light', sans-serif;
  clear: both; }

.confirm-holder .confirm button {
  width: 50%;
  height: 50px;
  text-transform: capitalize;
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  float: left;
  border-top: 1px solid #f0f0f0;
  font-size: 14px;
  overflow: hidden;
  cursor: pointer; }

.confirm-holder .confirm button:hover {
  background-color: #f5f5f5; }

.confirm-holder .confirm button.ok-btn:active {
  background-color: #fff;
  color: white; }

.confirm-holder .confirm button.cancel-btn:active {
  background-color: #fff;
  color: white; }

.confirm-holder .confirm button.full-width {
  width: 100%; }

.confirm-holder .confirm button:focus {
  outline: none; }

body.toastr-confirm-active {
  overflow: hidden; }

.redux-toastr *, .redux-toastr *:before, .redux-toastr *:after {
  box-sizing: border-box; }

.redux-toastr .top-left, .redux-toastr .top-right, .redux-toastr .top-center, .redux-toastr .bottom-left, .redux-toastr .bottom-right, .redux-toastr .bottom-center {
  width: 450px;
  position: fixed;
  z-index: 99999999;
  padding: 0 10px; }

.redux-toastr .top-left, .redux-toastr .top-right, .redux-toastr .top-center {
  top: 0; }

.redux-toastr .top-right, .redux-toastr .bottom-right {
  right: 0; }

.redux-toastr .bottom-left, .redux-toastr .bottom-right, .redux-toastr .bottom-center {
  bottom: 0; }

.redux-toastr .top-left, .redux-toastr .bottom-left {
  left: 0; }

.redux-toastr .top-center, .redux-toastr .bottom-center {
  left: 50%;
  margin-left: -225px; }

@media (max-width: 320px) {
  .redux-toastr .top-left, .redux-toastr .top-right, .redux-toastr .top-center, .redux-toastr .bottom-left, .redux-toastr .bottom-right, .redux-toastr .bottom-center {
    width: 420px; }
  .redux-toastr .top-center, .redux-toastr .bottom-center {
    margin-left: -210px; } }

.redux-toastr .toastr {
  background-color: #fcfcfc;
  width: 100%;
  min-height: 70px;
  overflow: hidden;
  margin: 10px 0;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  color: #333;
  opacity: .94;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4); }

.redux-toastr .toastr:hover:not(.message) {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
  opacity: 1; }

.redux-toastr .toastr .toastr-status {
  width: 100%;
  height: 5px; }

.redux-toastr .toastr .toastr-status.success {
  background-color: #fff; }

.redux-toastr .toastr .toastr-status.warning {
  background-color: #f7a336; }

.redux-toastr .toastr .toastr-status.info {
  background-color: #58abc3; }

.redux-toastr .toastr .toastr-status.error {
  background-color: #fff; }

.redux-toastr .toastr .toastr-left-container, .redux-toastr .toastr .toastr-right-container {
  float: left;
  text-align: center;
  overflow: hidden; }

.redux-toastr .toastr .toastr-left-container {
  width: 80px;
  top: 0;
  left: 0;
  position: absolute;
  bottom: 0; }

.redux-toastr .toastr .toastr-left-container .holder {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  margin-top: -35px;
  left: 5px;
  line-height: 60px; }

.redux-toastr .toastr .toastr-left-container .toastr-icon {
  fill: white;
  vertical-align: middle;
  margin-top: 5px; }

.redux-toastr .toastr .toastr-middle-container {
  width: 65%;
  margin-left: 80px;
  position: relative;
  float: left;
  font-family: Arial, Helvetica, sans-serif, sans-serif;
  font-size: 1em;
  text-align: left;
  padding: 10px 5px; }

.redux-toastr .toastr .toastr-middle-container .title {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 5px; }

.redux-toastr .toastr .toastr-right-container {
  width: 10%; }

.redux-toastr .toastr .close-toastr {
  width: 10%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  font-size: 22px;
  border: none;
  outline: none;
  opacity: 0.5;
  cursor: pointer;
  font-family: "Helvetica Neue", Helvetica, Arial sans-serif; }

.redux-toastr .toastr .close-toastr:hover {
  opacity: 1; }

.redux-toastr .toastr .close-toastr:focus {
  outline: none; }

.redux-toastr .toastr.info, .redux-toastr .toastr.success, .redux-toastr .toastr.warning, .redux-toastr .toastr.error {
  color: white; }

.redux-toastr .toastr.info {
  background-color: #58abc3; }

.redux-toastr .toastr.info .toastr-progressbar {
  background-color: #378298; }

.redux-toastr .toastr.success {
  background-color: #fff; }

.redux-toastr .toastr.success .toastr-progressbar {
  background-color: #d9d9d9; }

.redux-toastr .toastr.warning {
  background-color: #f7a336; }

.redux-toastr .toastr.warning .toastr-progressbar {
  background-color: #d87e09; }

.redux-toastr .toastr.error {
  background-color: #fff; }

.redux-toastr .toastr.error .toastr-progressbar {
  background-color: #d9d9d9; }

.redux-toastr .toastr.light .toastr-progressbar {
  background-color: #ccc; }

.redux-toastr .toastr.light .toastr-icon {
  fill: #333 !important; }

.redux-toastr .toastr.message {
  opacity: 1;
  border: 1px solid #dbdbdb; }

.redux-toastr .toastr.message .title {
  width: 90%;
  height: 50px;
  text-align: center;
  overflow: hidden;
  font-size: 1.2em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 50px;
  padding: 0 20px; }

.redux-toastr .toastr.message .message {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  overflow-y: auto;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  background-color: white;
  padding: 15px;
  font-size: 1.1em;
  margin-bottom: 20px; }

.redux-toastr .toastr.message .message img {
  display: block;
  margin: 10px auto;
  max-width: 100%; }

.redux-toastr .toastr.message .close-toastr {
  height: 50px; }

.redux-toastr .toastr .toastr-progress-container {
  height: 5px;
  margin: 0 -20px -20px -60px;
  position: absolute;
  bottom: 20px;
  width: 100%; }

.redux-toastr .toastr .toastr-progress-container .toastr-progressbar {
  border-radius: 0 0 0 4px;
  height: 100%; }

.redux-toastr .toastr-attention {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1; }

.toastr.success {
  background-color: #fff; }

.toastr.success .toastr-progressbar {
  background-color: #068c00; }

.toastr.success .toastr-left-container {
  background-color: #0AD800; }

.toastr.success .toastr-middle-container {
  padding: 20px; }

.toastr.success .toastr-middle-container.no-close {
  width: calc(100% - 80px); }

.toastr.success .title {
  color: #0AD800; }

.toastr.success .message {
  color: #959595;
  font-weight: bold; }

.toastr.error {
  background-color: #fff; }

.toastr.error .toastr-progressbar {
  background-color: #8c0000; }

.toastr.error .toastr-left-container {
  background-color: #D80000; }

.toastr.error .toastr-middle-container {
  padding: 20px; }

.toastr.error .toastr-middle-container.no-close {
  width: calc(100% - 80px); }

.toastr.error .title {
  color: #D80000; }

.toastr.error .message {
  color: #959595;
  font-weight: bold; }

.react-tel-input {
  font-family: 'Roboto',sans-serif;
  font-size: 15px;
  position: relative;
  width: 100%; }

.react-tel-input :disabled {
  cursor: not-allowed; }

.react-tel-input .flag {
  width: 16px;
  height: 11px;
  background: url(data:image/png;base64,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); }

.react-tel-input .ad {
  background-position: -16px 0; }

.react-tel-input .ae {
  background-position: -32px 0; }

.react-tel-input .af {
  background-position: -48px 0; }

.react-tel-input .ag {
  background-position: -64px 0; }

.react-tel-input .ai {
  background-position: -80px 0; }

.react-tel-input .al {
  background-position: -96px 0; }

.react-tel-input .am {
  background-position: -112px 0; }

.react-tel-input .ao {
  background-position: -128px 0; }

.react-tel-input .ar {
  background-position: -144px 0; }

.react-tel-input .as {
  background-position: -160px 0; }

.react-tel-input .at {
  background-position: -176px 0; }

.react-tel-input .au {
  background-position: -192px 0; }

.react-tel-input .aw {
  background-position: -208px 0; }

.react-tel-input .az {
  background-position: -224px 0; }

.react-tel-input .ba {
  background-position: -240px 0; }

.react-tel-input .bb {
  background-position: 0 -11px; }

.react-tel-input .bd {
  background-position: -16px -11px; }

.react-tel-input .be {
  background-position: -32px -11px; }

.react-tel-input .bf {
  background-position: -48px -11px; }

.react-tel-input .bg {
  background-position: -64px -11px; }

.react-tel-input .bh {
  background-position: -80px -11px; }

.react-tel-input .bi {
  background-position: -96px -11px; }

.react-tel-input .bj {
  background-position: -112px -11px; }

.react-tel-input .bm {
  background-position: -128px -11px; }

.react-tel-input .bn {
  background-position: -144px -11px; }

.react-tel-input .bo {
  background-position: -160px -11px; }

.react-tel-input .br {
  background-position: -176px -11px; }

.react-tel-input .bs {
  background-position: -192px -11px; }

.react-tel-input .bt {
  background-position: -208px -11px; }

.react-tel-input .bw {
  background-position: -224px -11px; }

.react-tel-input .by {
  background-position: -240px -11px; }

.react-tel-input .bz {
  background-position: 0 -22px; }

.react-tel-input .ca {
  background-position: -16px -22px; }

.react-tel-input .cd {
  background-position: -32px -22px; }

.react-tel-input .cf {
  background-position: -48px -22px; }

.react-tel-input .cg {
  background-position: -64px -22px; }

.react-tel-input .ch {
  background-position: -80px -22px; }

.react-tel-input .ci {
  background-position: -96px -22px; }

.react-tel-input .ck {
  background-position: -112px -22px; }

.react-tel-input .cl {
  background-position: -128px -22px; }

.react-tel-input .cm {
  background-position: -144px -22px; }

.react-tel-input .cn {
  background-position: -160px -22px; }

.react-tel-input .co {
  background-position: -176px -22px; }

.react-tel-input .cr {
  background-position: -192px -22px; }

.react-tel-input .cu {
  background-position: -208px -22px; }

.react-tel-input .cv {
  background-position: -224px -22px; }

.react-tel-input .cw {
  background-position: -240px -22px; }

.react-tel-input .cy {
  background-position: 0 -33px; }

.react-tel-input .cz {
  background-position: -16px -33px; }

.react-tel-input .de {
  background-position: -32px -33px; }

.react-tel-input .dj {
  background-position: -48px -33px; }

.react-tel-input .dk {
  background-position: -64px -33px; }

.react-tel-input .dm {
  background-position: -80px -33px; }

.react-tel-input .do {
  background-position: -96px -33px; }

.react-tel-input .dz {
  background-position: -112px -33px; }

.react-tel-input .ec {
  background-position: -128px -33px; }

.react-tel-input .ee {
  background-position: -144px -33px; }

.react-tel-input .eg {
  background-position: -160px -33px; }

.react-tel-input .er {
  background-position: -176px -33px; }

.react-tel-input .es {
  background-position: -192px -33px; }

.react-tel-input .et {
  background-position: -208px -33px; }

.react-tel-input .fi {
  background-position: -224px -33px; }

.react-tel-input .fj {
  background-position: -240px -33px; }

.react-tel-input .fk {
  background-position: 0 -44px; }

.react-tel-input .fm {
  background-position: -16px -44px; }

.react-tel-input .fo {
  background-position: -32px -44px; }

.react-tel-input .fr, .react-tel-input .bl, .react-tel-input .mf {
  background-position: -48px -44px; }

.react-tel-input .ga {
  background-position: -64px -44px; }

.react-tel-input .gb {
  background-position: -80px -44px; }

.react-tel-input .gd {
  background-position: -96px -44px; }

.react-tel-input .ge {
  background-position: -112px -44px; }

.react-tel-input .gf {
  background-position: -128px -44px; }

.react-tel-input .gh {
  background-position: -144px -44px; }

.react-tel-input .gi {
  background-position: -160px -44px; }

.react-tel-input .gl {
  background-position: -176px -44px; }

.react-tel-input .gm {
  background-position: -192px -44px; }

.react-tel-input .gn {
  background-position: -208px -44px; }

.react-tel-input .gp {
  background-position: -224px -44px; }

.react-tel-input .gq {
  background-position: -240px -44px; }

.react-tel-input .gr {
  background-position: 0 -55px; }

.react-tel-input .gt {
  background-position: -16px -55px; }

.react-tel-input .gu {
  background-position: -32px -55px; }

.react-tel-input .gw {
  background-position: -48px -55px; }

.react-tel-input .gy {
  background-position: -64px -55px; }

.react-tel-input .hk {
  background-position: -80px -55px; }

.react-tel-input .hn {
  background-position: -96px -55px; }

.react-tel-input .hr {
  background-position: -112px -55px; }

.react-tel-input .ht {
  background-position: -128px -55px; }

.react-tel-input .hu {
  background-position: -144px -55px; }

.react-tel-input .id {
  background-position: -160px -55px; }

.react-tel-input .ie {
  background-position: -176px -55px; }

.react-tel-input .il {
  background-position: -192px -55px; }

.react-tel-input .in {
  background-position: -208px -55px; }

.react-tel-input .io {
  background-position: -224px -55px; }

.react-tel-input .iq {
  background-position: -240px -55px; }

.react-tel-input .ir {
  background-position: 0 -66px; }

.react-tel-input .is {
  background-position: -16px -66px; }

.react-tel-input .it {
  background-position: -32px -66px; }

.react-tel-input .jm {
  background-position: -48px -66px; }

.react-tel-input .jo {
  background-position: -64px -66px; }

.react-tel-input .jp {
  background-position: -80px -66px; }

.react-tel-input .ke {
  background-position: -96px -66px; }

.react-tel-input .kg {
  background-position: -112px -66px; }

.react-tel-input .kh {
  background-position: -128px -66px; }

.react-tel-input .ki {
  background-position: -144px -66px; }

.react-tel-input .xk {
  background-position: -128px -154px; }

.react-tel-input .km {
  background-position: -160px -66px; }

.react-tel-input .kn {
  background-position: -176px -66px; }

.react-tel-input .kp {
  background-position: -192px -66px; }

.react-tel-input .kr {
  background-position: -208px -66px; }

.react-tel-input .kw {
  background-position: -224px -66px; }

.react-tel-input .ky {
  background-position: -240px -66px; }

.react-tel-input .kz {
  background-position: 0 -77px; }

.react-tel-input .la {
  background-position: -16px -77px; }

.react-tel-input .lb {
  background-position: -32px -77px; }

.react-tel-input .lc {
  background-position: -48px -77px; }

.react-tel-input .li {
  background-position: -64px -77px; }

.react-tel-input .lk {
  background-position: -80px -77px; }

.react-tel-input .lr {
  background-position: -96px -77px; }

.react-tel-input .ls {
  background-position: -112px -77px; }

.react-tel-input .lt {
  background-position: -128px -77px; }

.react-tel-input .lu {
  background-position: -144px -77px; }

.react-tel-input .lv {
  background-position: -160px -77px; }

.react-tel-input .ly {
  background-position: -176px -77px; }

.react-tel-input .ma {
  background-position: -192px -77px; }

.react-tel-input .mc {
  background-position: -208px -77px; }

.react-tel-input .md {
  background-position: -224px -77px; }

.react-tel-input .me {
  background-position: -112px -154px;
  height: 12px; }

.react-tel-input .mg {
  background-position: 0 -88px; }

.react-tel-input .mh {
  background-position: -16px -88px; }

.react-tel-input .mk {
  background-position: -32px -88px; }

.react-tel-input .ml {
  background-position: -48px -88px; }

.react-tel-input .mm {
  background-position: -64px -88px; }

.react-tel-input .mn {
  background-position: -80px -88px; }

.react-tel-input .mo {
  background-position: -96px -88px; }

.react-tel-input .mp {
  background-position: -112px -88px; }

.react-tel-input .mq {
  background-position: -128px -88px; }

.react-tel-input .mr {
  background-position: -144px -88px; }

.react-tel-input .ms {
  background-position: -160px -88px; }

.react-tel-input .mt {
  background-position: -176px -88px; }

.react-tel-input .mu {
  background-position: -192px -88px; }

.react-tel-input .mv {
  background-position: -208px -88px; }

.react-tel-input .mw {
  background-position: -224px -88px; }

.react-tel-input .mx {
  background-position: -240px -88px; }

.react-tel-input .my {
  background-position: 0 -99px; }

.react-tel-input .mz {
  background-position: -16px -99px; }

.react-tel-input .na {
  background-position: -32px -99px; }

.react-tel-input .nc {
  background-position: -48px -99px; }

.react-tel-input .ne {
  background-position: -64px -99px; }

.react-tel-input .nf {
  background-position: -80px -99px; }

.react-tel-input .ng {
  background-position: -96px -99px; }

.react-tel-input .ni {
  background-position: -112px -99px; }

.react-tel-input .nl, .react-tel-input .bq {
  background-position: -128px -99px; }

.react-tel-input .no {
  background-position: -144px -99px; }

.react-tel-input .np {
  background-position: -160px -99px; }

.react-tel-input .nr {
  background-position: -176px -99px; }

.react-tel-input .nu {
  background-position: -192px -99px; }

.react-tel-input .nz {
  background-position: -208px -99px; }

.react-tel-input .om {
  background-position: -224px -99px; }

.react-tel-input .pa {
  background-position: -240px -99px; }

.react-tel-input .pe {
  background-position: 0 -110px; }

.react-tel-input .pf {
  background-position: -16px -110px; }

.react-tel-input .pg {
  background-position: -32px -110px; }

.react-tel-input .ph {
  background-position: -48px -110px; }

.react-tel-input .pk {
  background-position: -64px -110px; }

.react-tel-input .pl {
  background-position: -80px -110px; }

.react-tel-input .pm {
  background-position: -96px -110px; }

.react-tel-input .pr {
  background-position: -112px -110px; }

.react-tel-input .ps {
  background-position: -128px -110px; }

.react-tel-input .pt {
  background-position: -144px -110px; }

.react-tel-input .pw {
  background-position: -160px -110px; }

.react-tel-input .py {
  background-position: -176px -110px; }

.react-tel-input .qa {
  background-position: -192px -110px; }

.react-tel-input .re {
  background-position: -208px -110px; }

.react-tel-input .ro {
  background-position: -224px -110px; }

.react-tel-input .rs {
  background-position: -240px -110px; }

.react-tel-input .ru {
  background-position: 0 -121px; }

.react-tel-input .rw {
  background-position: -16px -121px; }

.react-tel-input .sa {
  background-position: -32px -121px; }

.react-tel-input .sb {
  background-position: -48px -121px; }

.react-tel-input .sc {
  background-position: -64px -121px; }

.react-tel-input .sd {
  background-position: -80px -121px; }

.react-tel-input .se {
  background-position: -96px -121px; }

.react-tel-input .sg {
  background-position: -112px -121px; }

.react-tel-input .sh {
  background-position: -128px -121px; }

.react-tel-input .si {
  background-position: -144px -121px; }

.react-tel-input .sk {
  background-position: -160px -121px; }

.react-tel-input .sl {
  background-position: -176px -121px; }

.react-tel-input .sm {
  background-position: -192px -121px; }

.react-tel-input .sn {
  background-position: -208px -121px; }

.react-tel-input .so {
  background-position: -224px -121px; }

.react-tel-input .sr {
  background-position: -240px -121px; }

.react-tel-input .ss {
  background-position: 0 -132px; }

.react-tel-input .st {
  background-position: -16px -132px; }

.react-tel-input .sv {
  background-position: -32px -132px; }

.react-tel-input .sx {
  background-position: -48px -132px; }

.react-tel-input .sy {
  background-position: -64px -132px; }

.react-tel-input .sz {
  background-position: -80px -132px; }

.react-tel-input .tc {
  background-position: -96px -132px; }

.react-tel-input .td {
  background-position: -112px -132px; }

.react-tel-input .tg {
  background-position: -128px -132px; }

.react-tel-input .th {
  background-position: -144px -132px; }

.react-tel-input .tj {
  background-position: -160px -132px; }

.react-tel-input .tk {
  background-position: -176px -132px; }

.react-tel-input .tl {
  background-position: -192px -132px; }

.react-tel-input .tm {
  background-position: -208px -132px; }

.react-tel-input .tn {
  background-position: -224px -132px; }

.react-tel-input .to {
  background-position: -240px -132px; }

.react-tel-input .tr {
  background-position: 0 -143px; }

.react-tel-input .tt {
  background-position: -16px -143px; }

.react-tel-input .tv {
  background-position: -32px -143px; }

.react-tel-input .tw {
  background-position: -48px -143px; }

.react-tel-input .tz {
  background-position: -64px -143px; }

.react-tel-input .ua {
  background-position: -80px -143px; }

.react-tel-input .ug {
  background-position: -96px -143px; }

.react-tel-input .us {
  background-position: -112px -143px; }

.react-tel-input .uy {
  background-position: -128px -143px; }

.react-tel-input .uz {
  background-position: -144px -143px; }

.react-tel-input .va {
  background-position: -160px -143px; }

.react-tel-input .vc {
  background-position: -176px -143px; }

.react-tel-input .ve {
  background-position: -192px -143px; }

.react-tel-input .vg {
  background-position: -208px -143px; }

.react-tel-input .vi {
  background-position: -224px -143px; }

.react-tel-input .vn {
  background-position: -240px -143px; }

.react-tel-input .vu {
  background-position: 0 -154px; }

.react-tel-input .wf {
  background-position: -16px -154px; }

.react-tel-input .ws {
  background-position: -32px -154px; }

.react-tel-input .ye {
  background-position: -48px -154px; }

.react-tel-input .za {
  background-position: -64px -154px; }

.react-tel-input .zm {
  background-position: -80px -154px; }

.react-tel-input .zw {
  background-position: -96px -154px; }

.react-tel-input * {
  box-sizing: border-box;
  -moz-box-sizing: border-box; }

.react-tel-input .hide {
  display: none; }

.react-tel-input .v-hide {
  visibility: hidden; }

.react-tel-input .form-control {
  position: relative;
  font-size: 14px;
  letter-spacing: .01rem;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-left: 48px;
  margin-left: 0;
  background: #FFFFFF;
  border: 1px solid #CACACA;
  border-radius: 5px;
  line-height: 25px;
  height: 35px;
  width: 300px;
  outline: none; }

.react-tel-input .form-control.invalid-number {
  border: 1px solid #d79f9f;
  background-color: #FAF0F0;
  border-left-color: #cacaca; }

.react-tel-input .form-control.invalid-number:focus {
  border: 1px solid #d79f9f;
  border-left-color: #cacaca;
  background-color: #FAF0F0; }

.react-tel-input .form-control.open {
  z-index: 2; }

.react-tel-input .flag-dropdown {
  outline: none;
  position: absolute;
  top: 0;
  bottom: 0;
  padding: 0;
  background-color: #f5f5f5;
  border: 1px solid #cacaca;
  border-radius: 3px 0 0 3px; }

.react-tel-input .flag-dropdown.open {
  z-index: 2;
  background: #fff;
  border-radius: 3px 0 0 0; }

.react-tel-input .flag-dropdown.open .selected-flag {
  background: #fff;
  border-radius: 3px 0 0 0; }

.react-tel-input .flag-dropdown:hover, .react-tel-input .flag-dropdown:focus {
  cursor: pointer; }

.react-tel-input .flag-dropdown:hover .selected-flag, .react-tel-input .flag-dropdown:focus .selected-flag {
  background-color: #fff; }

.react-tel-input input[disabled] + .flag-dropdown:hover {
  cursor: default; }

.react-tel-input input[disabled] + .flag-dropdown:hover .selected-flag {
  background-color: transparent; }

.react-tel-input .selected-flag {
  position: relative;
  width: 38px;
  height: 100%;
  padding: 0 0 0 8px;
  border-radius: 3px 0 0 3px; }

.react-tel-input .selected-flag .flag {
  position: absolute;
  top: 50%;
  margin-top: -5px; }

.react-tel-input .selected-flag .arrow {
  position: relative;
  top: 50%;
  margin-top: -2px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555; }

.react-tel-input .selected-flag .arrow.up {
  border-top: none;
  border-bottom: 4px solid #555; }

.react-tel-input .country-list {
  z-index: 1;
  list-style: none;
  position: absolute;
  padding: 0;
  margin: 10px 0 10px -1px;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.35);
  background-color: white;
  width: 300px;
  max-height: 200px;
  overflow-y: scroll;
  border-radius: 0 0 3px 3px; }

.react-tel-input .country-list .flag {
  display: inline-block; }

.react-tel-input .country-list .divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc; }

.react-tel-input .country-list .country {
  padding: 7px 9px; }

.react-tel-input .country-list .country .dial-code {
  color: #6b6b6b; }

.react-tel-input .country-list .country:hover {
  background-color: #f1f1f1; }

.react-tel-input .country-list .country.highlight {
  background-color: #f1f1f1; }

.react-tel-input .country-list .flag {
  margin-right: 7px;
  margin-top: 2px; }

.react-tel-input .country-list .country-name {
  margin-right: 6px; }

.react-tel-input .country-list .search {
  position: sticky;
  top: 0;
  background-color: #fff;
  padding: 10px 0 6px 10px; }

.react-tel-input .country-list .search-emoji {
  font-size: 15px; }

.react-tel-input .country-list .search-box {
  border: 1px solid #cacaca;
  border-radius: 3px;
  font-size: 15px;
  line-height: 15px;
  margin-left: 6px;
  padding: 3px 8px 5px;
  outline: none; }

.react-tel-input .country-list .no-entries-message {
  padding: 7px 10px 11px;
  opacity: .7; }

.react-toggle {
  touch-action: pan-x;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  padding: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent; }

.react-toggle-screenreader-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.react-toggle--disabled {
  cursor: not-allowed;
  opacity: 0.5;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s; }

.react-toggle-track {
  width: 50px;
  height: 24px;
  padding: 0;
  border-radius: 30px;
  background-color: #4D4D4D;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease; }

.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track {
  background-color: #000000; }

.react-toggle--checked .react-toggle-track {
  background-color: #19AB27; }

.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track {
  background-color: #128D15; }

.react-toggle-track-check {
  position: absolute;
  width: 14px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  left: 8px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease; }

.react-toggle--checked .react-toggle-track-check {
  opacity: 1;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease; }

.react-toggle-track-x {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  right: 10px;
  opacity: 1;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease; }

.react-toggle--checked .react-toggle-track-x {
  opacity: 0; }

.react-toggle-thumb {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  position: absolute;
  top: 1px;
  left: 1px;
  width: 22px;
  height: 22px;
  border: 1px solid #4D4D4D;
  border-radius: 50%;
  background-color: #FAFAFA;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  transition: all 0.25s ease; }

.react-toggle--checked .react-toggle-thumb {
  left: 27px;
  border-color: #19AB27; }

.react-toggle--focus .react-toggle-thumb {
  -webkit-box-shadow: 0px 0px 3px 2px #0099E0;
  -moz-box-shadow: 0px 0px 3px 2px #0099E0;
  box-shadow: 0px 0px 2px 3px #0099E0; }

.react-toggle:active:not(.react-toggle--disabled) .react-toggle-thumb {
  -webkit-box-shadow: 0px 0px 5px 5px #0099E0;
  -moz-box-shadow: 0px 0px 5px 5px #0099E0;
  box-shadow: 0px 0px 5px 5px #0099E0; }

/*!
 * 
 *    jodit - Jodit is awesome and usefully wysiwyg editor with filebrowser
 *    Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/)
 *    Version: v3.2.10
 *    Url: https://xdsoft.net/jodit/
 *    License(s): GPL-2.0-or-later
 * 
 */
.jodit, .jodit *, .jodit_container, .jodit_container * {
  box-sizing: border-box; }

.jodit .jodit_workplace, .jodit_container .jodit_workplace {
  position: relative;
  overflow: auto; }

.jodit .jodit_workplace .jodit_wysiwyg, .jodit .jodit_workplace .jodit_wysiwyg_iframe, .jodit_container .jodit_workplace .jodit_wysiwyg, .jodit_container .jodit_workplace .jodit_wysiwyg_iframe {
  height: 100%;
  width: 100%; }

.jodit_container:not(.jodit_inline) {
  background: #fff;
  font-size: 14px;
  font-family: Helvetica,sans-serif; }

.jodit_container:not(.jodit_inline) .jodit_workplace {
  border: 1px solid #ccc; }

.jodit_disabled {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important; }

.jodit_hidden {
  display: none !important; }

.jodit_wysiwyg {
  outline: 0; }

.jodit_wysiwyg::-moz-selection, .jodit_wysiwyg ::-moz-selection {
  background: #b5d6fd;
  color: #000; }

.jodit_wysiwyg::selection, .jodit_wysiwyg ::selection {
  background: #b5d6fd;
  color: #000; }

.jodit_container:not(.jodit_inline) .jodit_wysiwyg {
  margin: 0;
  padding: 10px;
  outline: 0;
  overflow-x: auto;
  position: relative; }

.jodit_container:not(.jodit_inline) .jodit_wysiwyg img {
  position: relative;
  max-width: 100%; }

.jodit_container:not(.jodit_inline) .jodit_wysiwyg p, .jodit_container:not(.jodit_inline) .jodit_wysiwyg pre {
  margin: 0 0 10px; }

.jodit_container:not(.jodit_inline) .jodit_wysiwyg h1, .jodit_container:not(.jodit_inline) .jodit_wysiwyg h2, .jodit_container:not(.jodit_inline) .jodit_wysiwyg h3, .jodit_container:not(.jodit_inline) .jodit_wysiwyg h4, .jodit_container:not(.jodit_inline) .jodit_wysiwyg h5 {
  margin-top: 0; }

.jodit_container:not(.jodit_inline) .jodit_wysiwyg blockquote {
  border-left: 2px solid #222;
  margin-left: 0;
  padding-left: 5px;
  color: #222; }

.jodit_clearfix:after, .jodit_clearfix:before {
  content: " ";
  display: table; }

.jodit_clearfix:after {
  clear: both; }

.jodit_dark_theme.jodit_container {
  background-color: #575757; }

.jodit_dark_theme .jodit_workplace {
  border-color: rgba(87, 87, 87, 0.8); }

.jodit_dark_theme .jodit_statusbar {
  background-color: rgba(95, 92, 92, 0.8);
  border-color: rgba(87, 87, 87, 0.8); }

.jodit_dark_theme .jodit_statusbar, .jodit_dark_theme .jodit_statusbar .jodit_statusbar_item span {
  color: #d1cccc; }

.jodit_dark_theme .jodit_toolbar_popup, .jodit_dark_theme .jodit_toolbar_popup-inline, .jodit_dark_theme .jodit_toolbar_popup-inline:before, .jodit_dark_theme .jodit_toolbar_popup:before {
  background: #575757; }

.jodit_dark_theme .jodit_toolbar {
  background: #5f5c5c;
  border-color: rgba(87, 87, 87, 0.8); }

.jodit_dark_theme .jodit_toolbar li.jodit_toolbar_btn > a {
  color: #d1cccc; }

.jodit_dark_theme .jodit_toolbar li.jodit_toolbar_btn > a:hover {
  background-color: #575757; }

.jodit_dark_theme .jodit_toolbar li.jodit_toolbar_btn.jodit_toolbar_btn-break {
  border-top-color: #686767; }

.jodit_dark_theme .jodit_toolbar li.jodit_toolbar_btn.jodit_toolbar_btn-separator {
  border-right-color: #686767; }

.jodit_dark_theme .jodit_toolbar li.jodit_toolbar_btn.active, .jodit_dark_theme .jodit_toolbar li.jodit_toolbar_btn.jodit_active, .jodit_dark_theme .jodit_toolbar li.jodit_toolbar_btn:active, .jodit_dark_theme .jodit_toolbar li.jodit_toolbar_btn:hover {
  background-color: #575757; }

.jodit_dark_theme .jodit_toolbar li.jodit_toolbar_btn.jodit_with_dropdownlist .jodit_with_dropdownlist-trigger {
  border-top-color: silver; }

.jodit_dark_theme .jodit_icon {
  fill: silver; }

.jodit_dark_theme .jodit_wysiwyg, .jodit_dark_theme .jodit_wysiwyg_iframe {
  background-color: #575757;
  color: #d1cccc; }

.jodit_dark_theme .jodit_wysiwyg [data-jodit-selected-cell], .jodit_dark_theme .jodit_wysiwyg_iframe [data-jodit-selected-cell] {
  border-color: #152f5f; }

.jodit_dark_theme .jodit_dropdownlist {
  background: #5f5c5c; }

.jodit_dark_theme .jodit_tabs .jodit_tabs_buttons > a {
  background-color: #686767;
  color: #d1cccc; }

.jodit_dark_theme .jodit_tabs .jodit_tabs_buttons > a:hover {
  background-color: rgba(105, 105, 105, 0.8);
  color: #d1cccc;
  border-color: rgba(105, 105, 105, 0.9); }

.jodit_dark_theme .jodit_tabs .jodit_tabs_buttons > a.active {
  background: rgba(81, 81, 81, 0.41);
  border-color: #686767; }

.jodit_dark_theme .jodit_tabs .jodit_tabs_buttons > a svg {
  fill: silver; }

.jodit_dark_theme .jodit_form input[type=text], .jodit_dark_theme .jodit_form input[type=url], .jodit_dark_theme .jodit_form textarea {
  background-color: rgba(81, 81, 81, 0.41);
  border-color: #686767;
  color: #d1cccc; }

.jodit_dark_theme .jodit_form button {
  background-color: rgba(105, 105, 105, 0.75);
  color: #d1cccc; }

.jodit_dark_theme .jodit_placeholder {
  color: rgba(209, 204, 204, 0.8); }

.jodit_dark_theme .jodit_draganddrop_file_box, .jodit_dark_theme .jodit_uploadfile_button {
  color: #d1cccc; }

.jodit_dark_theme .jodit_draganddrop_file_box:hover, .jodit_dark_theme .jodit_uploadfile_button:hover {
  background-color: rgba(105, 105, 105, 0.75); }

.jodit_dark_theme .jodit-add-new-line:before {
  border-top-color: #686767; }

.jodit_dark_theme .jodit-add-new-line span {
  background: rgba(105, 105, 105, 0.75);
  border-color: #686767; }

.jodit_dark_theme .jodit-add-new-line span svg {
  fill: #d1cccc; }

.jodit_dark_theme .jodit_resizer > i {
  background: rgba(105, 105, 105, 0.75);
  border-color: silver; }

.jodit_btn {
  border: 1px solid;
  border-radius: 0;
  background-color: #f5f5f5;
  background-image: linear-gradient(180deg, #fff, #e6e6e6);
  border-color: #ccc;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  color: #333;
  background-repeat: repeat-x;
  outline: 0;
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.jodit_btn:hover {
  background-color: #e6e6e6;
  background-position: 0 -15px;
  text-decoration: none; }

.jodit_btn.jodit_btn_success {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #5bb75b;
  background-image: linear-gradient(180deg, #62c462, #51a351);
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #fff; }

.jodit_btn.jodit_btn_success svg {
  fill: #fff; }

.jodit_btn.jodit_btn_success:hover {
  background-color: #51a351; }

.jodit_btn.jodit_btn_danger {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #da4f49;
  background-image: linear-gradient(180deg, #ee5f5b, #bd362f);
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #fff; }

.jodit_btn.jodit_btn_danger svg {
  fill: #fff; }

.jodit_btn.jodit_btn_danger:hover {
  background-color: #bd362f; }

.jodit_btn.jodit_btn_inverse {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #363636;
  background-image: linear-gradient(180deg, #444, #222);
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #fff; }

.jodit_btn.jodit_btn_inverse svg {
  fill: #fff; }

.jodit_btn.jodit_btn_inverse:hover {
  background-color: #222; }

.jodit_btn.active, .jodit_btn:active {
  background-image: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); }

.jodit_btn_group {
  font-size: 0;
  vertical-align: middle; }

.jodit_btn_group input {
  display: none; }

.jodit_btn_group button {
  float: left; }

.jodit_btn_group button + button {
  margin-left: -1px; }

.jodit_btn_group button:first-child, .jodit_btn_group input:first-child + button {
  border-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.jodit_btn_group button:last-child, .jodit_btn_group input:last-child + button {
  border-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.jodit_btn_group:after {
  content: "";
  clear: both;
  float: none;
  display: table; }

.jodit_context_menu {
  font-family: Helvetica,sans-serif;
  display: none;
  background: #fff;
  position: absolute;
  min-width: 150px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.24);
  z-index: 15; }

.jodit_context_menu a {
  display: block;
  border-bottom: 1px solid rgba(204, 204, 204, 0.24);
  text-decoration: none !important;
  color: #727272; }

.jodit_context_menu a svg {
  float: left;
  display: block;
  width: 18px;
  height: 28px;
  margin: 0 4.5px;
  fill: #727272; }

.jodit_context_menu a span {
  margin-left: 27px;
  display: block;
  padding: 5px;
  border-left: 1px solid rgba(204, 204, 204, 0.24);
  line-height: 18px; }

.jodit_context_menu a:hover {
  background-color: #e3e3e3;
  color: #000; }

.jodit_context_menu a:hover .jodit_icon {
  fill: #000; }

.jodit_context_menu a:last-child {
  border: 0; }

.jodit_context_menu-show {
  display: block; }

.jodit_dialog_box {
  box-sizing: border-box;
  display: none;
  width: 0;
  height: 0;
  border: 0;
  position: absolute;
  will-change: left,top,width,height; }

.jodit_dialog_box.jodit_dialog_box-moved {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.jodit_dialog_box * {
  box-sizing: border-box; }

.jodit_dialog_box .jodit_elfinder, .jodit_dialog_box .jodit_elfinder * {
  box-sizing: initial; }

.jodit_dialog_box .jodit_dialog_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 13;
  text-align: center;
  white-space: nowrap;
  overflow: auto;
  display: none;
  background-color: rgba(0, 0, 0, 0.5); }

.jodit_dialog_box.active, .jodit_dialog_box.jodit_modal .jodit_dialog_overlay {
  display: block; }

.jodit_dialog_box .jodit_dialog {
  z-index: 14;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  text-align: left;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  min-width: 200px;
  min-height: 100px; }

@media (max-width: 480px) {
  .jodit_dialog_box .jodit_dialog {
    max-width: 100%;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important; } }

.jodit_dialog_box .jodit_dialog .jodit_promt {
  max-width: 300px;
  min-width: 200px;
  padding: 10px;
  word-break: break-all; }

.jodit_dialog_box .jodit_dialog .jodit_promt label {
  margin-bottom: 5px;
  display: block; }

.jodit_dialog_box .jodit_dialog .jodit_promt input[type=text] {
  display: block;
  border: 1px solid #ccc;
  background: #fff;
  width: 100%;
  height: 28px;
  line-height: 16px;
  padding: 3px 6px;
  outline: 0; }

.jodit_dialog_box .jodit_dialog .jodit_alert {
  max-width: 300px;
  min-width: 200px;
  padding: 10px;
  word-break: break-all; }

.jodit_dialog_box .jodit_dialog .jodit_button {
  padding: 0;
  margin: 0;
  border: 0;
  display: inline-block;
  vertical-align: top;
  width: 32px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  cursor: pointer;
  text-decoration: none; }

.jodit_dialog_box .jodit_dialog .jodit_button:not(.disabled):hover {
  background-color: #ecebe9; }

.jodit_dialog_box .jodit_dialog .jodit_button.disabled {
  opacity: .7; }

.jodit_dialog_box .jodit_dialog .jodit_input {
  border: 1px solid #ccc;
  padding: 5px;
  background-color: #fff;
  outline: 0;
  width: 120px;
  margin-left: 10px;
  font: 13px Arial;
  height: 28px;
  vertical-align: middle; }

.jodit_dialog_box .jodit_dialog select.jodit_input {
  width: 75px; }

.jodit_dialog_box .jodit_dialog .jodit_button .jodit_icon, .jodit_dialog_box .jodit_dialog .jodit_button svg, .jodit_dialog_box .jodit_dialog .jodit_dialog_header .jodit_icon, .jodit_dialog_box .jodit_dialog .jodit_dialog_header svg {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: left;
  color: #222;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16), 0 1px 2px rgba(0, 0, 0, 0.23);
  cursor: move;
  height: 48px;
  overflow: hidden; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_header .jodit_dialog_header-title, .jodit_dialog_box .jodit_dialog .jodit_dialog_header .jodit_dialog_header-toolbar {
  -ms-flex-negative: 3;
  flex-shrink: 3;
  font-size: 18px;
  margin: 0;
  font-weight: 400;
  line-height: 48px;
  vertical-align: top;
  padding: 0 10px; }

@media (max-width: 480px) {
  .jodit_dialog_box .jodit_dialog .jodit_dialog_header .jodit_dialog_header-title, .jodit_dialog_box .jodit_dialog .jodit_dialog_header .jodit_dialog_header-toolbar {
    padding-left: 0; } }

.jodit_dialog_box .jodit_dialog .jodit_dialog_header button {
  margin-right: 10px; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_header .jodit_dialog_header-button {
  color: #222;
  font-size: 28px;
  transition: background-color .2s ease 0s;
  -ms-flex-preferred-size: 48px;
  flex-basis: 48px;
  height: 48px;
  line-height: 48px;
  text-decoration: none;
  text-align: center; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_header .jodit_dialog_header-button:hover {
  background-color: #ecebe9; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_header .jodit_toolbar {
  background: 0 0;
  display: block;
  height: 100%;
  border: 0; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_header .jodit_toolbar > li.jodit_toolbar_btn {
  vertical-align: middle; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_header .jodit_toolbar > li.jodit_toolbar_btn input[type=number], .jodit_dialog_box .jodit_dialog .jodit_dialog_header .jodit_toolbar > li.jodit_toolbar_btn input[type=text], .jodit_dialog_box .jodit_dialog .jodit_dialog_header .jodit_toolbar > li.jodit_toolbar_btn input[type=url], .jodit_dialog_box .jodit_dialog .jodit_dialog_header .jodit_toolbar > li.jodit_toolbar_btn select {
  margin: 0 5px;
  padding-left: 10px;
  width: auto; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_content {
  height: calc(100% - 48px);
  overflow: auto; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group {
  margin-bottom: 10px;
  padding: 0 10px; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group:first-child {
  margin-top: 10px; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group input.select, .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group input[type=number], .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group input[type=text], .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group input[type=url], .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group select.select, .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group select[type=number], .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group select[type=text], .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group select[type=url] {
  display: block;
  height: 34px;
  padding: 6px 4px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group input.select:focus, .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group input[type=number]:focus, .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group input[type=text]:focus, .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group input[type=url]:focus, .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group select.select:focus, .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group select[type=number]:focus, .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group select[type=text]:focus, .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group select[type=url]:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }

.jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group input.select[disabled], .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group input[type=number][disabled], .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group input[type=text][disabled], .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group input[type=url][disabled], .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group select.select[disabled], .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group select[type=number][disabled], .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group select[type=text][disabled], .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group select[type=url][disabled] {
  background-color: #f0f0f0;
  color: #ccc; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group input.select:not([class*=col-]), .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group input[type=number]:not([class*=col-]), .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group input[type=text]:not([class*=col-]), .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group input[type=url]:not([class*=col-]), .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group select.select:not([class*=col-]), .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group select[type=number]:not([class*=col-]), .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group select[type=text]:not([class*=col-]), .jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group select[type=url]:not([class*=col-]) {
  width: 100%; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group .jodit_input_group {
  display: table;
  border-collapse: separate;
  width: 100%; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group .jodit_input_group > * {
  vertical-align: middle;
  display: table-cell;
  height: 34px; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group .jodit_input_group > input {
  float: left;
  margin: 0 !important; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group .jodit_input_group > input:not([class*=col-]) {
  width: 100%; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group .jodit_input_group-buttons {
  width: 1%;
  font-size: 0;
  white-space: nowrap;
  vertical-align: middle; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_content .jodit_form_group .jodit_input_group-buttons > a {
  text-align: center;
  display: inline-block;
  border: 1px solid #ccc;
  margin-left: -1px;
  position: relative;
  height: 34px;
  line-height: 34px; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_footer {
  padding: 0 10px;
  padding-top: 10px;
  text-align: center;
  height: 48px;
  display: none; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_footer .jodit_button {
  width: auto;
  margin-bottom: 10px;
  height: 32px;
  line-height: 100%;
  padding: 0 15px;
  background-color: #ccc;
  border: 1px solid #ccc;
  color: #000;
  font-size: 0; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_footer .jodit_button:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_footer .jodit_button svg {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_footer .jodit_button span {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  margin-left: 5px; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_footer .jodit_button:focus {
  border: 1px solid #8bade4;
  outline: 1px solid #82b2e8; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_footer .jodit_button:nth-child(n+2) {
  margin-left: 10px; }

.jodit_dialog_box .jodit_dialog.with_footer .jodit_dialog_content {
  height: calc(100% - 96px); }

.jodit_dialog_box .jodit_dialog.with_footer .jodit_dialog_footer {
  display: block; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_resizer {
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: se-resize;
  width: 7px;
  height: 7px;
  display: inline-block;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADFJREFUeNpilJGRYcACIoB4ORMuCSCOZMIlga4TRQJZJ4YETCdWCSBmZMIlATIOIMAAEyAPt4RnNx0AAAAASUVORK5CYII=); }

.jodit_dialog_box .jodit_dialog .jodit_dialog_resizer:hover {
  border-color: rgba(0, 0, 0, 0.6); }

@media (max-width: 480px) {
  .jodit_dialog_box .jodit_dialog .jodit_dialog_resizer {
    display: none; } }

.jodit_dialog_box.jodit_fullsize .jodit_dialog {
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 100% !important; }

.jodit_dialog_box.jodit_fullsize .jodit_dialog .jodit_dialog_resizer {
  display: none; }

@media (max-width: 768px) {
  .jodit_dialog_header .jodit_input, .jodit_dialog_header .jodit_toolbar_btn-filter, .jodit_dialog_header .jodit_toolbar_btn-separator, .jodit_dialog_header .jodit_toolbar_btn-sort, .jodit_dialog_header_fullsize, .jodit_dialog_header_title {
    display: none !important; } }

.jodit_toolbar_list > .jodit_toolbar {
  max-height: 400px;
  overflow: auto;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  padding: 0;
  margin: auto;
  text-align: left;
  box-sizing: border-box;
  transition: max-height .2s ease 0s;
  margin-top: 0 !important;
  list-style-type: none;
  font-size: 16px;
  z-index: 8;
  position: absolute;
  left: 0;
  top: 100%; }

.jodit_toolbar_list > .jodit_toolbar, .jodit_toolbar_list > .jodit_toolbar .jodit_toolbar {
  background: #f9f9f9; }

.jodit_toolbar_list > .jodit_toolbar blockquote, .jodit_toolbar_list > .jodit_toolbar h1, .jodit_toolbar_list > .jodit_toolbar h2, .jodit_toolbar_list > .jodit_toolbar h3, .jodit_toolbar_list > .jodit_toolbar h4, .jodit_toolbar_list > .jodit_toolbar h5, .jodit_toolbar_list > .jodit_toolbar p, .jodit_toolbar_list > .jodit_toolbar pre {
  font-family: Helvetica,sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 400; }

.jodit_toolbar_list > .jodit_toolbar h5 {
  font-size: .8em;
  line-height: 1.4; }

.jodit_toolbar_list > .jodit_toolbar h3 {
  font-size: 1.31em;
  line-height: 1.4; }

.jodit_toolbar_list > .jodit_toolbar h4, .jodit_toolbar_list > .jodit_toolbar p {
  font-size: 1em;
  line-height: 1.5em; }

.jodit_toolbar_list > .jodit_toolbar h2 {
  font-size: 1.74em;
  line-height: 1.4; }

.jodit_toolbar_list > .jodit_toolbar h1 {
  font-size: 2.17em;
  line-height: 1.4; }

.jodit_toolbar_list > .jodit_toolbar blockquote, .jodit_toolbar_list > .jodit_toolbar pre {
  font-family: monospace; }

.jodit_toolbar_list > .jodit_toolbar li.jodit_toolbar_btn {
  display: block;
  cursor: pointer;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  text-align: left; }

.jodit_toolbar_list > .jodit_toolbar li.jodit_toolbar_btn > a {
  background-image: none;
  padding: 7px 24px;
  cursor: pointer;
  line-height: 100%;
  width: auto;
  height: auto;
  display: block; }

.jodit_toolbar_list > .jodit_toolbar li.jodit_toolbar_btn > a > span {
  display: inline-block; }

.jodit_toolbar_list > .jodit_toolbar li.jodit_toolbar_btn > a:hover {
  background-color: #f3f0f0; }

.jodit_toolbar_list > .jodit_toolbar li.jodit_toolbar_btn > a:after {
  display: none; }

.jodit_filebrowser {
  font-family: Helvetica,sans-serif;
  font-size: 0;
  height: 100%; }

.jodit_filebrowser .jodit_filebrowser_loader {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0; }

.jodit_filebrowser .jodit_filebrowser_loader i {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -64px;
  margin-left: -64px; }

.jodit_filebrowser .jodit_filebrowser_status {
  position: absolute;
  font-size: 10px;
  padding: 2px 3px;
  border-top: 1px solid rgba(128, 128, 128, 0.4);
  left: 31%;
  right: 0;
  bottom: 0;
  background-color: #4a4a4a;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s linear;
  color: #b38888;
  word-break: break-all; }

.jodit_filebrowser .jodit_filebrowser_status.success {
  color: #c5c5c5; }

.jodit_filebrowser .jodit_filebrowser_status.active {
  visibility: visible;
  opacity: 1; }

.jodit_filebrowser .jodit_filebrowser_files, .jodit_filebrowser .jodit_filebrowser_tree {
  display: none;
  vertical-align: top;
  height: 100%;
  position: relative; }

.jodit_filebrowser .jodit_filebrowser_files.active, .jodit_filebrowser .jodit_filebrowser_tree.active {
  display: inline-block; }

.jodit_filebrowser .jodit_filebrowser_files::-webkit-scrollbar, .jodit_filebrowser .jodit_filebrowser_tree::-webkit-scrollbar {
  width: 5px; }

.jodit_filebrowser .jodit_filebrowser_files::-webkit-scrollbar-track, .jodit_filebrowser .jodit_filebrowser_tree::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

.jodit_filebrowser .jodit_filebrowser_files::-webkit-scrollbar-thumb, .jodit_filebrowser .jodit_filebrowser_tree::-webkit-scrollbar-thumb {
  background-color: #a9a9a9;
  outline: 1px solid #708090; }

.jodit_filebrowser .jodit_filebrowser_tree.active {
  width: 31%;
  background-color: #3f3f3f;
  overflow-y: auto; }

@media (max-width: 480px) {
  .jodit_filebrowser .jodit_filebrowser_tree.active {
    display: none; } }

.jodit_filebrowser .jodit_filebrowser_tree.active::-webkit-scrollbar {
  width: 5px; }

.jodit_filebrowser .jodit_filebrowser_tree.active::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

.jodit_filebrowser .jodit_filebrowser_tree.active::-webkit-scrollbar-thumb {
  background-color: rgba(128, 128, 128, 0.5);
  outline: 1px solid #708090; }

.jodit_filebrowser .jodit_filebrowser_tree.active .jodit_filebrowser_source_title {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  padding: 10px;
  color: #969696;
  border-bottom: 1px solid #484848;
  line-height: 17px;
  min-height: 38px;
  position: relative;
  word-break: break-all;
  background: #5a5a5a;
  font-size: 16px; }

.jodit_filebrowser .jodit_filebrowser_tree.active a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #b1b1b1;
  font-weight: 600;
  transition: background-color .2s ease 0s;
  border-bottom: 1px solid #474747;
  line-height: 17px;
  min-height: 38px;
  position: relative;
  word-break: break-all;
  font-size: 16px; }

.jodit_filebrowser .jodit_filebrowser_tree.active a i.remove {
  height: 16px;
  width: 16px;
  line-height: 17px;
  font-size: 16px;
  position: absolute;
  right: 5px;
  top: 11px;
  opacity: 0;
  padding-left: 3px;
  display: inline-block; }

.jodit_filebrowser .jodit_filebrowser_tree.active a i.remove:hover {
  background: #696969; }

.jodit_filebrowser .jodit_filebrowser_tree.active a:hover {
  color: #222;
  background-color: #ecebe9; }

.jodit_filebrowser .jodit_filebrowser_tree.active a:hover i.remove {
  opacity: .6; }

.jodit_filebrowser .jodit_filebrowser_tree.active a.jodit_button {
  cursor: pointer;
  background: #696969;
  text-align: center;
  width: auto;
  height: 38px;
  color: #333; }

.jodit_filebrowser .jodit_filebrowser_tree.active a.jodit_button svg {
  vertical-align: top; }

.jodit_filebrowser .jodit_filebrowser_tree.active a.jodit_button:not(.disabled):hover {
  background-color: #ecebe9; }

.jodit_filebrowser .jodit_filebrowser_tree.active a.jodit_button.disabled, .jodit_filebrowser .jodit_filebrowser_tree.active a.jodit_button:hover i {
  opacity: .7; }

.jodit_filebrowser .jodit_filebrowser_files.active {
  width: 100%;
  overflow-y: auto;
  padding: 10px; }

.jodit_filebrowser .jodit_filebrowser_files.active .jodit_filebrowser_source_title {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: -10px -10px 0;
  display: block;
  padding: 10px;
  line-height: 17px;
  min-height: 38px;
  position: relative;
  word-break: break-all;
  background: #5a5a5a;
  font-size: 16px;
  color: #969696; }

.jodit_filebrowser .jodit_filebrowser_files.active a + .jodit_filebrowser_source_title {
  margin-top: 10px; }

.jodit_filebrowser .jodit_filebrowser_files.active a {
  vertical-align: top;
  display: inline-block;
  width: 150px;
  height: 150px;
  line-height: 150px;
  text-align: center;
  border: 1px solid #ccc;
  margin: 5px 5px 10px;
  font-size: 0;
  overflow: hidden;
  transition: border .1s linear,bottom .1s linear;
  box-sizing: content-box;
  position: relative; }

.jodit_filebrowser .jodit_filebrowser_files.active a img {
  max-width: 100%;
  vertical-align: middle; }

.jodit_filebrowser .jodit_filebrowser_files.active a:hover {
  border-color: #433b5c; }

.jodit_filebrowser .jodit_filebrowser_files.active a.active {
  border-color: #1e88e5;
  background-color: #b5b5b5; }

.jodit_filebrowser .jodit_filebrowser_files.active a .jodit_filebrowser_files_item-info {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  white-space: normal;
  opacity: .85;
  overflow: visible;
  padding: .3em .6em;
  transition: opacity .4s ease;
  background-color: #e9e9e9;
  color: #333;
  text-shadow: #eee 0 1px 0;
  font-size: 14px;
  line-height: 16px;
  text-align: left; }

.jodit_filebrowser .jodit_filebrowser_files.active a .jodit_filebrowser_files_item-info > span {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: .75em; }

.jodit_filebrowser .jodit_filebrowser_files.active a .jodit_filebrowser_files_item-info > span.jodit_filebrowser_files_item-info-filename {
  font-weight: 700;
  font-size: .9em; }

.jodit_filebrowser .jodit_filebrowser_files.active a.active .jodit_filebrowser_files_item-info {
  background-color: #b5b5b5;
  color: #fff;
  text-shadow: none; }

.jodit_filebrowser .jodit_filebrowser_files.active a:hover .jodit_filebrowser_files_item-info {
  bottom: -100px; }

.jodit_filebrowser .jodit_filebrowser_files.active.jodit_filebrowser_files_view-list {
  scroll-behavior: smooth; }

.jodit_filebrowser .jodit_filebrowser_files.active.jodit_filebrowser_files_view-list a {
  display: block;
  width: 100%;
  height: 26px;
  line-height: 26px;
  margin: 0;
  border-width: 0 0 1px;
  text-align: left;
  white-space: nowrap; }

.jodit_filebrowser .jodit_filebrowser_files.active.jodit_filebrowser_files_view-list a img {
  min-width: 16px;
  max-width: 16px;
  vertical-align: middle;
  display: inline-block;
  margin-left: 4px; }

.jodit_filebrowser .jodit_filebrowser_files.active.jodit_filebrowser_files_view-list a .jodit_filebrowser_files_item-info {
  padding: 0;
  position: static;
  display: inline-block;
  width: calc(100% - 20px);
  margin-left: 4px;
  background-color: transparent;
  height: 100%;
  line-height: inherit;
  vertical-align: middle;
  font-size: 0; }

.jodit_filebrowser .jodit_filebrowser_files.active.jodit_filebrowser_files_view-list a .jodit_filebrowser_files_item-info > span {
  display: inline-block;
  height: 100%;
  font-size: 12px; }

.jodit_filebrowser .jodit_filebrowser_files.active.jodit_filebrowser_files_view-list a .jodit_filebrowser_files_item-info > span.jodit_filebrowser_files_item-info-filename {
  width: 50%; }

.jodit_filebrowser .jodit_filebrowser_files.active.jodit_filebrowser_files_view-list a .jodit_filebrowser_files_item-info > span.jodit_filebrowser_files_item-info-filechanged, .jodit_filebrowser .jodit_filebrowser_files.active.jodit_filebrowser_files_view-list a .jodit_filebrowser_files_item-info > span.jodit_filebrowser_files_item-info-filesize {
  width: 25%; }

.jodit_filebrowser .jodit_filebrowser_files.active.jodit_filebrowser_files_view-list a:hover {
  background-color: #433b5c; }

.jodit_filebrowser .jodit_filebrowser_files.active.jodit_filebrowser_files_view-list a:hover .jodit_filebrowser_files_item-info {
  color: #fff;
  text-shadow: none; }

.jodit_filebrowser .jodit_filebrowser_files.active.jodit_filebrowser_files_view-list a:before {
  height: 100%;
  content: "";
  vertical-align: middle;
  display: inline-block; }

.jodit_filebrowser .jodit_filebrowser_tree.active + .jodit_filebrowser_files.active {
  width: 69%; }

@media (max-width: 480px) {
  .jodit_filebrowser .jodit_filebrowser_tree.active + .jodit_filebrowser_files.active {
    width: auto;
    display: block; } }

.jodit_filebrowser_preview {
  text-align: center;
  min-width: 300px;
  max-width: 900px;
  max-height: 700px;
  position: relative; }

.jodit_filebrowser_preview .jodit_filebrowser_preview_navigation {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0; }

.jodit_filebrowser_preview .jodit_filebrowser_preview_navigation-next {
  left: auto;
  right: 0; }

.jodit_filebrowser_preview .jodit_filebrowser_preview_navigation svg {
  width: 45px;
  height: 45px;
  position: relative;
  top: 50%;
  margin-top: -22px;
  transition: fill .3s linear;
  fill: #9e9ba7; }

.jodit_filebrowser_preview .jodit_filebrowser_preview_navigation:hover svg {
  fill: #000; }

.jodit_filebrowser_preview img {
  max-width: 100%;
  max-height: 100%; }

.jodit_draghover {
  background-color: #ecebe9; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_header .jodit_dialog_header-title .jodit_upload_button {
  position: relative;
  width: 220px;
  border: 0;
  padding: 25px 0;
  margin: 10px 0;
  overflow: hidden; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_header .jodit_dialog_header-title .jodit_upload_button input {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0 -10px 0 0;
  padding: 0;
  opacity: 0;
  font-size: 400px; }

.jodit_dialog_box .jodit_dialog .jodit_dialog_header .jodit_dialog_header-title.jodit_filebrowser_title_box {
  padding-left: 10px; }

.jodit_grid {
  width: 100%; }

.jodit_grid [class*=jodit_col-] {
  display: block;
  float: left; }

.jodit_grid .jodit_col-lg-5-5 {
  width: 100%; }

.jodit_grid .jodit_col-lg-4-5 {
  width: 80%; }

.jodit_grid .jodit_col-lg-3-5 {
  width: 60%; }

.jodit_grid .jodit_col-lg-2-5 {
  width: 40%; }

.jodit_grid .jodit_col-lg-1-5 {
  width: 20%; }

.jodit_grid .jodit_col-lg-4-4 {
  width: 100%; }

.jodit_grid .jodit_col-lg-3-4 {
  width: 75%; }

.jodit_grid .jodit_col-lg-2-4 {
  width: 50%; }

.jodit_grid .jodit_col-lg-1-4 {
  width: 25%; }

.jodit_grid:after, .jodit_grid:before {
  content: " ";
  display: table; }

.jodit_grid:after {
  clear: both; }

@keyframes a {
  to {
    transform: rotate(1turn); } }

.jodit_icon-loader {
  background: url(data:image/png;base64,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) no-repeat 50%;
  background-size: 100% 100%;
  width: 128px;
  height: 128px;
  will-change: transform;
  animation: a 2s ease-out 0s infinite; }

.jodit_icon, .jodit_icon-loader {
  display: inline-block;
  vertical-align: middle; }

.jodit_icon {
  font-style: normal;
  width: 14px;
  font-size: 8px;
  fill: #222;
  transform-origin: 0 0 !important;
  overflow: visible; }

.jodit_text_icon {
  font-size: 14px; }

.jodit_toolbar_size-small .jodit_icon {
  min-width: 12px;
  height: 12px;
  line-height: 12px; }

.jodit_toolbar_size-large .jodit_icon {
  min-width: 16px;
  height: 16px;
  line-height: 16px; }

.jodit_image_editor {
  width: 100%;
  height: 100%;
  padding: 10px;
  overflow: hidden; }

@media (max-width: 768px) {
  .jodit_image_editor {
    height: auto; } }

.jodit_image_editor > div, .jodit_image_editor > div > div {
  height: 100%; }

@media (max-width: 768px) {
  .jodit_image_editor > div, .jodit_image_editor > div > div {
    height: auto;
    min-height: 200px; } }

.jodit_image_editor * {
  box-sizing: border-box; }

.jodit_image_editor .jodit_image_editor_slider-title {
  text-shadow: #f3f3f3 0 1px 0;
  color: #333;
  border-bottom: 1px solid rgba(158, 158, 158, 0.31);
  background-color: #f9f9f9;
  padding: .8em 1em;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 700;
  line-height: 1em; }

.jodit_image_editor .jodit_image_editor_slider-title svg {
  margin-right: 10px;
  width: 16px;
  display: inline-block;
  vertical-align: middle; }

.jodit_image_editor .jodit_image_editor_slider-content {
  display: none; }

.jodit_image_editor .jodit_image_editor_slider.active .jodit_image_editor_slider-title {
  background-color: #5d5d5d;
  color: #fff;
  text-shadow: #000 0 1px 0; }

.jodit_image_editor .jodit_image_editor_slider.active .jodit_image_editor_slider-title svg {
  fill: #fff; }

.jodit_image_editor .jodit_image_editor_slider.active .jodit_image_editor_slider-content {
  display: block; }

.jodit_image_editor_area {
  background-color: #eee;
  background-image: linear-gradient(45deg, #ccc 25%, transparent 0, transparent 75%, #ccc 0, #ccc), linear-gradient(45deg, #ccc 25%, transparent 0, transparent 75%, #ccc 0, #ccc);
  background-size: 30px 30px;
  background-position: 0 0,15px 15px;
  height: 100%;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  display: none; }

.jodit_image_editor_area.active {
  display: block; }

.jodit_image_editor_area .jodit_image_editor_box {
  overflow: hidden;
  position: relative;
  z-index: 1;
  pointer-events: none;
  height: 100%; }

.jodit_image_editor_area .jodit_image_editor_box img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100%;
  max-height: 100%; }

.jodit_image_editor_area .jodit_image_editor_croper, .jodit_image_editor_area .jodit_image_editor_resizer {
  z-index: 2;
  width: 100px;
  height: 100px;
  position: absolute;
  box-shadow: 0 0 11px #000;
  border: 1px solid #fff;
  background-repeat: no-repeat;
  top: 10px;
  left: 20px;
  pointer-events: none; }

.jodit_image_editor_area .jodit_image_editor_croper i.jodit_bottomright, .jodit_image_editor_area .jodit_image_editor_resizer i.jodit_bottomright {
  position: absolute;
  display: inline-block;
  border: 1px solid #383838;
  z-index: 4;
  background-color: #8c7878;
  cursor: se-resize;
  border-radius: 10px;
  height: 20px;
  width: 20px;
  right: -10px;
  bottom: -10px;
  box-shadow: 0 0 11px #000;
  pointer-events: all; }

.jodit_image_editor_area .jodit_image_editor_croper i.jodit_bottomright:active, .jodit_image_editor_area .jodit_image_editor_resizer i.jodit_bottomright:active {
  border: 1px solid #ff0; }

.jodit_image_editor_area.jodit_image_editor_area_crop {
  height: 100%;
  background: #eee;
  text-align: center;
  line-height: 100%;
  position: relative; }

.jodit_image_editor_area.jodit_image_editor_area_crop:before {
  content: "";
  line-height: 100%;
  vertical-align: middle;
  height: 100%;
  display: inline-block; }

.jodit_image_editor_area.jodit_image_editor_area_crop .jodit_image_editor_box {
  height: 100%;
  overflow: visible;
  display: inline-block;
  vertical-align: middle;
  pointer-events: all;
  font-size: 0;
  text-align: left;
  line-height: 100%; }

.jodit_image_editor_area.jodit_image_editor_area_crop .jodit_image_editor_box img {
  max-width: 100%;
  max-height: 100%; }

.jodit_image_editor_area.jodit_image_editor_area_crop .jodit_image_editor_box:before {
  content: "";
  line-height: 100%;
  vertical-align: middle;
  height: 100%;
  display: inline-block; }

.jodit_image_editor_area.jodit_image_editor_area_crop .jodit_image_editor_box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1; }

.jodit_image_editor_area.jodit_image_editor_area_crop .jodit_image_editor_box .jodit_image_editor_croper {
  pointer-events: all;
  cursor: move; }

.jodit_image_editor_area.jodit_image_editor_area_crop .jodit_image_editor_box .jodit_image_editor_croper i.jodit_sizes {
  font-size: 12px;
  white-space: pre;
  position: absolute;
  bottom: -30px;
  left: 100%;
  text-align: center;
  color: #fff;
  text-shadow: none;
  background: rgba(0, 0, 0, 0.2);
  border-radius: .4em;
  padding: 9px 6px;
  display: block; }

.jodit_properties svg {
  font-style: normal;
  display: inline-block;
  width: 14px;
  height: 14px;
  line-height: 14px;
  font-size: 8px;
  overflow: hidden;
  vertical-align: middle;
  fill: #222;
  transform-origin: 0 0 !important; }

.jodit_properties #tabsbox {
  padding: 10px; }

.jodit_properties #tabsbox .jodit_form_group {
  padding: 0; }

.jodit_properties .jodit_properties_view_box {
  padding: 10px; }

.jodit_properties .jodit_properties_view_box .jodit_properties_image_view {
  height: 150px;
  text-align: center;
  line-height: 1;
  vertical-align: middle;
  padding: 0;
  background-color: #f6f6f6;
  margin: 0;
  vertical-align: baseline;
  font-size: 100%;
  margin-bottom: 10px; }

.jodit_properties .jodit_properties_view_box .jodit_properties_image_view:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%; }

.jodit_properties .jodit_properties_view_box .jodit_properties_image_view img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle; }

.jodit_properties .jodit_properties_view_box .jodit_properties_image_sizes.jodit_form_group {
  padding: 0 !important;
  margin: 0 !important; }

.jodit_properties .jodit_properties_view_box .jodit_properties_image_sizes.jodit_form_group a {
  display: inline-block;
  cursor: pointer; }

.jodit_properties .jodit_properties_view_box .jodit_properties_image_sizes.jodit_form_group input[type=number] {
  display: inline-block !important;
  width: calc(50% - 8px) !important; }

.jodit_toolbar, .jodit_toolbar * {
  box-sizing: border-box; }

.jodit_toolbar {
  position: relative;
  left: 0;
  top: 0;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  font-size: 0;
  background: #f9f9f9;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.14);
  border: 1px solid #ccc;
  border-bottom: 0;
  min-height: 16px !important; }

.jodit_toolbar + .jodit_toolbar_dummy {
  display: none; }

.jodit_toolbar.jodit_fly {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
  background: #fff; }

.jodit_toolbar.jodit_sticky {
  position: fixed;
  position: -webkit-sticky;
  position: sticky;
  z-index: 3;
  top: 0;
  left: auto; }

.jodit_toolbar.jodit_sticky + .jodit_toolbar_dummy {
  display: block; }

.jodit_toolbar .jodit_toolbar_btn > a {
  color: #000;
  text-decoration: none;
  display: block;
  background: no-repeat 50%; }

.jodit_toolbar > li.jodit_toolbar_btn {
  display: inline-block;
  vertical-align: top;
  margin: 0 !important;
  padding: 0;
  list-style: none !important;
  outline: 0;
  position: relative;
  text-align: center;
  cursor: pointer;
  transition: background-color .2s linear,opacity .1s linear; }

.jodit_toolbar > li.jodit_toolbar_btn.jodit_disabled {
  background-color: transparent !important;
  opacity: .3;
  cursor: default; }

.jodit_toolbar > li.jodit_toolbar_btn.jodit_disabled a {
  cursor: default; }

.jodit_toolbar > li.jodit_toolbar_btn.jodit_toolbar_btn-separator {
  border-left: 0;
  border-right: 1px solid #e6e6e6;
  padding: 0;
  margin: 2px 3px 0 !important;
  cursor: default; }

.jodit_toolbar > li.jodit_toolbar_btn.jodit_toolbar_btn-break {
  display: block !important;
  width: auto;
  border-top: 1px solid #e6e6e6;
  height: 0;
  margin: 0 3px !important; }

.jodit_toolbar > li.jodit_toolbar_btn .jodit_toolbar_btn > a, .jodit_toolbar > li.jodit_toolbar_btn > a {
  width: 100%;
  height: 100%;
  display: inline-block;
  outline: 0;
  text-decoration: none; }

.jodit_toolbar > li.jodit_toolbar_btn .jodit_toolbar_btn > a:after, .jodit_toolbar > li.jodit_toolbar_btn > a:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.jodit_toolbar > li.jodit_toolbar_btn .jodit_toolbar_btn > a:active + .jodit_tooltip, .jodit_toolbar > li.jodit_toolbar_btn > a:active + .jodit_tooltip {
  visibility: hidden !important; }

.jodit_toolbar > li.jodit_toolbar_btn.jodit_disabled .jodit_tooltip {
  display: none !important; }

.jodit_toolbar > li.jodit_toolbar_btn > a {
  line-height: 100%; }

.jodit_toolbar > li.jodit_toolbar_btn.jodit_dropdown_open .jodit_tooltip, .jodit_toolbar > li.jodit_toolbar_btn .jodit_popap_open, .jodit_toolbar > li.jodit_toolbar_btn.jodit_popup_open .jodit_tooltip {
  visibility: hidden !important; }

.jodit_toolbar > li.jodit_toolbar_btn:not(.jodit_toolbar-input):hover {
  background-color: #dde4ef;
  outline: 0; }

.jodit_toolbar > li.jodit_toolbar_btn.jodit_active, .jodit_toolbar > li.jodit_toolbar_btn:not(.jodit_toolbar-input):active {
  background-color: rgba(222, 222, 222, 0.4);
  outline: 0; }

.jodit_toolbar > li.jodit_toolbar_btn.jodit-btn-hidden {
  display: none !important; }

.jodit_toolbar > li.jodit_toolbar_btn.jodit_with_dropdownlist .jodit_with_dropdownlist-trigger {
  width: 0;
  height: 0;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  border-top: 3px solid #4c4c4c;
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px; }

.jodit_toolbar > li.jodit_toolbar_btn.jodit_toolbar-input input, .jodit_toolbar > li.jodit_toolbar_btn.jodit_toolbar-input select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 100%;
  border-radius: 0;
  outline: 0;
  line-height: 100%; }

.jodit_toolbar > li.jodit_toolbar_btn.jodit_toolbar-input select {
  padding-right: 20px;
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 98% 50% !important; }

.jodit_toolbar > li {
  min-width: 32px;
  height: 32px;
  line-height: 32px; }

.jodit_toolbar > li.jodit_toolbar_btn-separator {
  height: 28px;
  width: 0;
  min-width: 0; }

.jodit_tooltip {
  position: absolute;
  background: #727171;
  color: #fff;
  font-size: 12px;
  line-height: 15px;
  padding: 4px 5px;
  font-family: Arial,sans-serif;
  z-index: 9;
  width: 90px;
  transition: opacity .3s linear; }

@media (max-width: 768px) {
  .jodit_tooltip {
    display: none; } }

.jodit_toolbar_size-small .jodit_toolbar {
  min-height: 12px !important; }

.jodit_toolbar_size-small .jodit_toolbar > li {
  min-width: 24px;
  height: 24px;
  line-height: 24px; }

.jodit_toolbar_size-small .jodit_toolbar > li.jodit_toolbar_btn-separator {
  height: 20px;
  width: 0;
  min-width: 0; }

.jodit_toolbar_size-large .jodit_toolbar {
  min-height: 18px !important; }

.jodit_toolbar_size-large .jodit_toolbar > li {
  min-width: 36px;
  height: 36px;
  line-height: 36px; }

.jodit_toolbar_size-large .jodit_toolbar > li.jodit_toolbar_btn-separator {
  height: 32px;
  width: 0;
  min-width: 0; }

.jodit_toolbar_popup {
  position: absolute;
  z-index: 7;
  top: 100%;
  margin-top: 10px;
  padding-top: 0;
  left: 0;
  font-size: 14px;
  line-height: 14px !important;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.2); }

.jodit_toolbar_popup .jodit_toolbar {
  box-shadow: none;
  border-width: 0;
  background-color: transparent; }

.jodit_toolbar_popup .jodit_toolbar .jodit_toolbar {
  background-color: #f9f9f9;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.14);
  border: 1px solid #ccc; }

.jodit_toolbar_popup > * {
  margin: 10px; }

.jodit_toolbar_popup .jodit_popup_triangle {
  padding: 0;
  margin: 0;
  width: 8px;
  height: 8px;
  position: absolute;
  top: -5px;
  left: 9px;
  display: inline-block;
  transform: rotate(45deg);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-width: 1px 0 0 1px;
  z-index: 5; }

.jodit_toolbar_popup.jodit_right {
  left: auto;
  right: 0; }

.jodit_toolbar_popup.jodit_right:before {
  left: auto;
  right: 14px; }

.jodit_toolbar .jodit_toolbar_btn > svg {
  max-width: 50%;
  vertical-align: middle;
  font-smoothing: antialiased; }

.jodit_container > .jodit_toolbar > li:first-child {
  margin-left: 2px !important; }

.jodit_draganddrop_file_box, .jodit_uploadfile_button {
  position: relative;
  width: 220px;
  border: 1px dashed #ccc;
  padding: 25px 0;
  margin: 10px 0;
  text-align: center;
  overflow: hidden; }

.jodit_draganddrop_file_box:hover, .jodit_uploadfile_button:hover {
  background-color: #ecebe9; }

.jodit_draganddrop_file_box input, .jodit_uploadfile_button input {
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  font-size: 400px; }

@media (max-width: 768px) {
  .jodit_draganddrop_file_box {
    width: auto;
    max-width: 100%;
    min-width: 120px; } }

.jodit_statusbar {
  border: 1px solid #ccc;
  border-top: 0;
  font-size: 0;
  background-color: #f9f9f9;
  padding: 0 5px; }

.jodit_statusbar .jodit_statusbar_item {
  font-size: 11px;
  float: left;
  line-height: 1.57142857em;
  margin: 0 10px 0 0;
  padding: 0;
  vertical-align: middle; }

.jodit_statusbar .jodit_statusbar_item.jodit_statusbar_item-right {
  float: right;
  margin: 0 0 0 10px; }

.jodit_statusbar .jodit_statusbar_item li, .jodit_statusbar .jodit_statusbar_item ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  vertical-align: top;
  position: relative; }

.jodit_statusbar .jodit_statusbar_item li li, .jodit_statusbar .jodit_statusbar_item ul li {
  margin-right: 5px; }

.jodit_statusbar .jodit_statusbar_item a, .jodit_statusbar .jodit_statusbar_item span {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  vertical-align: baseline;
  text-align: left;
  white-space: nowrap;
  padding: 2px 3px;
  line-height: 10px;
  outline: 0;
  border: 0;
  color: #222; }

.jodit_statusbar .jodit_statusbar_item a span, .jodit_statusbar .jodit_statusbar_item span span {
  padding: 0; }

.jodit_statusbar .jodit_statusbar_item svg {
  width: 11px;
  height: 11px;
  display: inline-block;
  vertical-align: top; }

.jodit_statusbar .jodit_statusbar_item a {
  text-decoration: none;
  cursor: default;
  border-radius: 3px; }

.jodit_statusbar .jodit_statusbar_item a:hover {
  background-color: rgba(224, 224, 224, 0.99);
  text-decoration: none;
  color: #222; }

.jodit_statusbar:after {
  content: " ";
  display: block;
  visibility: hidden;
  font-size: 0;
  height: 0;
  float: none;
  clear: both; }

.jodit_form {
  color: #000; }

.jodit_form input[type=text], .jodit_form input[type=url], .jodit_form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  display: block;
  outline: 0;
  border: 1px solid #b5b5b5;
  height: 28px;
  line-height: 28px;
  padding: 0 5px;
  min-width: 220px;
  margin-top: 10px; }

.jodit_form input[type=text].jodit_error, .jodit_form input[type=url].jodit_error, .jodit_form textarea.jodit_error {
  border-color: #f7d1d1;
  box-shadow: inset 0 0 3px 0 rgba(189, 189, 189, 0.3); }

@media (max-width: 768px) {
  .jodit_form input[type=text], .jodit_form input[type=url], .jodit_form textarea {
    min-width: 150px; } }

.jodit_form textarea {
  height: 128px; }

.jodit_form button {
  height: 36px;
  line-height: 1;
  color: #000;
  padding: 10px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  background: #d6d6d6;
  font-size: 16px;
  outline: 0;
  transition: background .2s ease 0s;
  margin-top: 10px;
  margin-bottom: 10px; }

.jodit_form button:hover {
  background-color: #ecebe9;
  color: #000; }

.jodit_form button:active {
  background: #ecebe9;
  color: #000; }

.jodit_form input[type=checkbox] {
  display: inline-block;
  z-index: 2;
  border: 0 none;
  cursor: pointer;
  height: 16px;
  margin: 0;
  padding: 0;
  width: 16px;
  position: relative;
  outline: 0;
  top: 3px; }

.jodit_form input[type=checkbox]:after {
  content: "";
  background: #fff;
  border: 1px solid rgba(224, 224, 224, 0.99);
  border-radius: 2px;
  background-clip: padding-box;
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  transition: background .2s ease 0s,border-color .2s ease 0s; }

.jodit_form input[type=checkbox]:checked:after {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M27 4L12 19l-7-7-5 5 12 12L32 9z' fill='%23FFF'/%3E%3C/svg%3E") no-repeat 50%;
  background-color: #b5b5b5;
  border-color: #b5b5b5; }

.jodit_form label {
  margin-top: 10px;
  display: block;
  text-align: left; }

.jodit_form form:after {
  content: "";
  display: table;
  clear: both; }

.jodit_about {
  padding: 20px; }

.jodit_about a {
  color: #459ce7;
  text-decoration: none; }

.jodit_about a:focus, .jodit_about a:hover {
  color: #23527c;
  text-decoration: underline;
  outline: 0; }

.jodit_about div {
  margin-bottom: 5px; }

.jodit_colorpicker {
  min-width: 180px;
  text-align: left;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.jodit_colorpicker .jodit_colorpicker_group {
  margin-bottom: 5px;
  white-space: normal; }

.jodit_colorpicker a {
  width: 18px;
  height: 18px;
  line-height: 16px;
  display: inline-block;
  text-decoration: none;
  vertical-align: middle;
  text-align: center; }

.jodit_colorpicker a.jodit_text_icon {
  width: auto;
  text-decoration: none;
  color: #000; }

.jodit_colorpicker a:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  width: 0; }

.jodit_colorpicker a svg {
  display: inline-block;
  vertical-align: middle;
  font-smoothing: antialiased;
  max-width: 14px; }

.jodit_colorpicker a:hover {
  border-color: #000; }

.jodit_colorpicker a:active {
  background: #d6d6d6;
  color: #b5b5b5; }

@keyframes b {
  30% {
    opacity: .6; }
  60% {
    opacity: 0; }
  to {
    opacity: .6; } }

.jodit_progress_bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  z-index: 16;
  border-radius: 1px;
  display: none; }

.jodit_progress_bar div {
  position: relative;
  background: #b91f1f;
  height: 2px;
  transition: width .5s ease-out,opacity .5s linear;
  will-change: width,opacity; }

.jodit_progress_bar div:after, .jodit_progress_bar div:before {
  animation: b 2s ease-out 0s infinite;
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  height: 2px;
  box-shadow: 1px 0 6px 1px #b91f1f;
  border-radius: 100%;
  opacity: .6; }

.jodit_progress_bar div:before {
  width: 180px;
  right: -80px;
  clip: rect(-6px, 90px, 14px, -6px); }

.jodit_progress_bar div:after {
  width: 20px;
  right: 0;
  clip: rect(-6px, 22px, 14px, 10px); }

.jodit_tabs .jodit_tabs_buttons {
  line-height: 18px;
  margin-bottom: 5px;
  margin-top: 4px; }

.jodit_tabs .jodit_tabs_buttons > a {
  display: inline-block;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  height: 29px;
  line-height: 27px;
  position: relative;
  vertical-align: middle;
  transition: background .1s linear;
  text-overflow: ellipsis;
  overflow: hidden;
  box-shadow: none;
  background-color: #f5f5f5;
  color: #737373;
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: 0; }

@media (max-width: 768px) {
  .jodit_tabs .jodit_tabs_buttons > a {
    width: 100% !important;
    border-radius: 0 !important; } }

.jodit_tabs .jodit_tabs_buttons > a + a {
  margin-left: -1px; }

.jodit_tabs .jodit_tabs_buttons > a i, .jodit_tabs .jodit_tabs_buttons > a svg {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: sub;
  margin-right: 5px;
  fill: #737373; }

.jodit_tabs .jodit_tabs_buttons > a:hover {
  border: 1px solid #c6c6c6;
  color: #111;
  box-shadow: none;
  background-color: #f8f8f8;
  outline: 0; }

.jodit_tabs .jodit_tabs_buttons > a:hover i, .jodit_tabs .jodit_tabs_buttons > a:hover svg {
  fill: #111; }

.jodit_tabs .jodit_tabs_buttons > a.active, .jodit_tabs .jodit_tabs_buttons > a:active {
  outline: 0;
  background: #fff;
  border: 1px solid #ccc;
  color: #333; }

.jodit_tabs .jodit_tabs_buttons > a.active i, .jodit_tabs .jodit_tabs_buttons > a.active svg, .jodit_tabs .jodit_tabs_buttons > a:active i, .jodit_tabs .jodit_tabs_buttons > a:active svg {
  fill: #333; }

.jodit_tabs .jodit_tabs_wrapper .jodit_tab {
  display: none; }

.jodit_tabs .jodit_tabs_wrapper .jodit_tab.active {
  display: block; }

.jodit_tabs .jodit_tabs_wrapper .jodit_tab .jodit_tab_empty {
  min-width: 220px;
  min-height: 100px; }

.jodit-add-new-line {
  z-index: 1;
  position: absolute;
  height: 20px;
  line-height: 100%;
  vertical-align: middle;
  font-size: 0;
  top: 0;
  outline: 0;
  margin-top: -10px;
  display: none; }

.jodit-add-new-line, .jodit-add-new-line * {
  box-sizing: border-box; }

.jodit-add-new-line:before {
  height: 100%; }

.jodit-add-new-line:after, .jodit-add-new-line:before {
  display: inline-block;
  vertical-align: middle;
  content: ""; }

.jodit-add-new-line:after {
  box-sizing: border-box;
  border-top: 1px solid #ccc;
  height: 1px;
  width: calc(100% - 30px); }

.jodit-add-new-line span {
  right: 0;
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 20px;
  background: rgba(236, 235, 233, 0.3);
  vertical-align: top;
  border: 1px solid #ccc;
  padding: 0 5px;
  cursor: pointer; }

.jodit-add-new-line span:hover {
  background: #ecebe9; }

.jodit-add-new-line svg {
  width: 16px;
  fill: #ccc;
  vertical-align: top; }

.jodit_source_mode .jodit-add-new-line {
  display: none !important; }

.jodit_error_box_for_messages {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  overflow: visible;
  z-index: 3; }

.jodit_error_box_for_messages > * {
  position: absolute;
  right: 5px;
  bottom: 0;
  display: block;
  transition: opacity .1s linear,bottom .3s linear;
  opacity: 0;
  background: rgba(255, 0, 0, 0.29);
  color: #e02b2b;
  padding: 2px 7px;
  border: 1px solid rgba(226, 116, 116, 0.44);
  font-size: 14px;
  white-space: pre; }

.jodit_error_box_for_messages > .active {
  opacity: 1; }

.jodit_error_box_for_messages > .info {
  background: rgba(204, 229, 247, 0.71);
  color: #776565;
  border: 1px solid rgba(153, 153, 153, 0.44); }

.jodit_error_box_for_messages > .success {
  background: rgba(77, 236, 112, 0.29);
  color: #5d5a5a;
  border: 1px solid rgba(148, 148, 148, 0.44); }

.jodit_fullsize_box {
  z-index: 11 !important;
  position: static !important;
  overflow: visible !important; }

body.jodit_fullsize_box, html.jodit_fullsize_box {
  height: 0 !important;
  width: 0 !important;
  overflow: initial !important; }

html.jodit_fullsize_box {
  position: fixed !important; }

.jodit_fullsize {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 11;
  max-width: none !important; }

.jodit_fullsize .toolbar {
  width: 100% !important; }

.jodit_fullsize .jodit_area, .jodit_fullsize .jodit_editor {
  height: 100%; }

.jodit_fullsize .jodit_workflow {
  height: calc(100% - 16px * 1.5);
  overflow: auto; }

.jodit_fullsize.jodit_toolbar_size-small .jodit_workflow {
  height: calc(100% - 12px * 1.5); }

.jodit_fullsize.jodit_toolbar_size-large .jodit_workflow {
  height: calc(100% - 18px * 1.5); }

.jodit_placeholder {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  top: 0;
  left: 0;
  display: block;
  position: absolute;
  padding: 10px;
  color: rgba(0, 0, 0, 0.35);
  z-index: 1;
  pointer-events: none; }

.jodit_toolbar_popup-inline-target {
  position: absolute;
  width: 0;
  height: 0; }

.jodit_toolbar_popup-inline-target.jodit_toolbar_popup-inline-target-hidden {
  display: none; }

.jodit_toolbar_popup-inline {
  display: inline-block !important;
  position: relative !important; }

.jodit_toolbar_popup-inline > div {
  color: rgba(224, 224, 224, 0.99);
  background: #fff;
  box-shadow: none;
  background-clip: padding-box;
  font-family: Helvetica,sans-serif;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 12 !important;
  text-align: left;
  border: 1px solid rgba(224, 224, 224, 0.99);
  display: inline-block;
  vertical-align: top; }

.jodit_toolbar_popup-inline .jodit_toolbar {
  z-index: 6;
  border: 0;
  white-space: normal; }

.jodit_toolbar_popup-inline > div > .jodit_toolbar {
  white-space: nowrap;
  box-shadow: none;
  vertical-align: top; }

.jodit_toolbar_popup-inline > .jodit_popup_triangle {
  padding: 0;
  margin: 0;
  width: 8px;
  height: 8px;
  position: absolute;
  top: -4px;
  margin-left: -4px;
  display: inline-block;
  transform: rotate(45deg);
  background: #fff;
  border: 1px solid rgba(224, 224, 224, 0.99);
  border-width: 1px 0 0 1px;
  z-index: 5; }

.jodit_toolbar_popup-inline.jodit_toolbar_popup-inline-top > .jodit_popup_triangle {
  top: auto;
  bottom: -4px;
  border-width: 0 1px 1px 0; }

.jodit_toolbar_popup-inline .buttons {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 0 2px;
  white-space: nowrap;
  line-height: 0;
  border-bottom: 0; }

[data-jodit_iframe_wrapper] {
  display: block;
  clear: both;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative; }

[data-jodit_iframe_wrapper]:after {
  position: absolute;
  content: "";
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  display: block;
  background: transparent; }

.jodit_resizer {
  width: 100px;
  height: 100px;
  position: absolute;
  border: 1px solid rgba(3, 14, 82, 0.92);
  top: 0;
  left: 0;
  display: none;
  pointer-events: none;
  font-size: 0; }

.jodit_resizer * {
  box-sizing: border-box; }

.jodit_resizer > span {
  opacity: 0;
  transition: opacity .2s linear;
  left: 50%;
  top: 50%;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  width: 70px;
  margin-left: -35px;
  margin-top: -12px;
  text-align: center;
  overflow: visible;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.35);
  max-width: 100%; }

.jodit_resizer > i, .jodit_resizer > span {
  position: absolute;
  display: inline-block; }

.jodit_resizer > i {
  z-index: 4;
  pointer-events: all;
  border: 1px solid rgba(3, 14, 82, 0.92);
  background-color: rgba(224, 224, 224, 0.99);
  width: 10px;
  height: 10px; }

.jodit_resizer > i:hover {
  background-color: #f8f8f8; }

.jodit_resizer > i:first-child {
  left: -5px;
  top: -5px;
  cursor: nw-resize; }

.jodit_resizer > i:nth-child(2) {
  right: -5px;
  top: -5px;
  cursor: ne-resize; }

.jodit_resizer > i:nth-child(3) {
  right: -5px;
  bottom: -5px;
  cursor: se-resize; }

.jodit_resizer > i:nth-child(4) {
  left: -5px;
  bottom: -5px;
  cursor: sw-resize; }

@media (max-width: 768px) {
  .jodit_resizer > i {
    width: 20px;
    height: 20px; }
  .jodit_resizer > i:first-child {
    left: -10px;
    top: -10px;
    cursor: nw-resize; }
  .jodit_resizer > i:nth-child(2) {
    right: -10px;
    top: -10px;
    cursor: ne-resize; }
  .jodit_resizer > i:nth-child(3) {
    right: -10px;
    bottom: -10px;
    cursor: se-resize; }
  .jodit_resizer > i:nth-child(4) {
    left: -10px;
    bottom: -10px;
    cursor: sw-resize; } }

.jodit_container {
  min-height: 100px; }

.jodit_container .jodit_workplace {
  display: -ms-flexbox;
  display: flex;
  height: auto;
  min-height: 50px;
  overflow: hidden; }

.jodit_editor_resize {
  position: relative; }

.jodit_editor_resize a {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 0;
  height: 0;
  overflow: hidden;
  border-width: 7px 7px 0 0;
  border-color: transparent #ccc transparent transparent;
  border-style: dashed solid dashed dashed;
  cursor: se-resize; }

.jodit_source {
  display: none;
  position: relative;
  background-color: #f8f8f8;
  font-size: 0;
  -ms-flex: 1;
  flex: 1;
  overflow: auto; }

.jodit_source, .jodit_source .jodit_source_mirror-fake {
  min-height: 100%; }

.jodit_container.jodit_source_mode .jodit_wysiwyg, .jodit_container.jodit_source_mode .jodit_wysiwyg_iframe {
  display: none !important; }

.jodit_container.jodit_source_mode .jodit_source {
  display: block !important; }

.jodit_container.jodit_split_mode .jodit_source, .jodit_container.jodit_split_mode .jodit_wysiwyg, .jodit_container.jodit_split_mode .jodit_wysiwyg_iframe {
  display: block !important;
  width: 50%;
  -ms-flex: 1;
  flex: 1; }

.jodit_source_mirror {
  border: 0;
  width: 100%;
  background: #3f3f3f;
  margin: 0;
  height: 100%;
  box-shadow: none;
  resize: none;
  box-sizing: border-box;
  color: #f0f0f0;
  outline: 0;
  font-family: Menlo,Monaco,monospace,sans-serif;
  font-size: 13px;
  line-height: 1.3em;
  z-index: 2;
  padding: 10px;
  overflow: auto;
  white-space: pre-wrap;
  -moz-tab-size: 2em;
  -o-tab-size: 2em;
  tab-size: 2em;
  min-height: 100%; }

.jodit_source_mirror::-moz-selection {
  background: #bdbdbd; }

.jodit_source_mirror::selection {
  background: #bdbdbd; }

.jodit_table_resizer {
  cursor: col-resize;
  position: absolute;
  z-index: 3;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: -5px; }

.jodit_table_resizer:after {
  content: "";
  display: block;
  height: 100%;
  width: 0;
  border: 1px solid transparent;
  border-width: 0 1px 0 0; }

.jodit_table_resizer-moved {
  z-index: 2; }

.jodit_table_resizer-moved:after {
  border-color: #1e88e5; }

.jodit_wysiwyg table {
  width: 100%;
  border: none;
  border-collapse: collapse;
  table-layout: fixed;
  empty-cells: show;
  max-width: 100%; }

.jodit_wysiwyg table tr {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.jodit_wysiwyg table tr td, .jodit_wysiwyg table tr th {
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: middle;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text; }

.jodit_wysiwyg table tr td[data-jodit-selected-cell], .jodit_wysiwyg table tr th[data-jodit-selected-cell] {
  border: 1px double #1e88e5; }

.jodit_form_inserter .jodit_form-table-creator-box {
  font-size: 0; }

.jodit_form_inserter .jodit_form-table-creator-box .jodit_form-container {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin: 0;
  min-width: 180px;
  font-size: 0; }

.jodit_form_inserter .jodit_form-table-creator-box .jodit_form-container > div {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  vertical-align: top; }

.jodit_form_inserter .jodit_form-table-creator-box .jodit_form-container > div:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1px solid #ccc; }

.jodit_form_inserter .jodit_form-table-creator-box .jodit_form-container > div.hovered:after {
  background: #7a450f;
  border: 1px solid #b5b5b5; }

.jodit_form_inserter .jodit_form-table-creator-box .jodit_form-options {
  font-size: 14px;
  display: inline-block;
  vertical-align: top; }

.jodit_form_inserter .jodit_form-table-creator-box .jodit_form-options label {
  text-align: left;
  padding-top: 0; }

.jodit_form_inserter .jodit_form-table-creator-box .jodit_form-options label input {
  margin-right: 10px; }

.jodit_form_inserter label {
  text-align: center;
  font-size: 14px;
  padding: 8px;
  display: block;
  margin: 0; }

.jodit_text_icons .jodit_icon {
  width: auto;
  font-size: 14px; }

.jodit_text_icons .jodit_icon:first-letter {
  text-transform: uppercase; }

.jodit_text_icons .jodit_tabs .jodit_tabs_buttons > a {
  font-family: Helvetica,sans-serif;
  width: auto; }

.jodit_text_icons .jodit_tabs .jodit_tabs_buttons > a i, .jodit_text_icons .jodit_toolbar > li {
  width: auto; }

.jodit_text_icons .jodit_toolbar > li > a {
  text-decoration: none; }

.jodit_text_icons.jodit_dialog_box .jodit_dialog .jodit_button, .jodit_text_icons.jodit_dialog_box .jodit_dialog .jodit_dialog_header a, .jodit_text_icons .jodit_toolbar > li > a {
  padding: 0 12px;
  font-family: Helvetica,sans-serif;
  width: auto;
  color: rgba(0, 0, 0, 0.75); }

.jodit_text_icons.jodit_dialog_box .jodit_dialog .jodit_button .jodit_icon, .jodit_text_icons.jodit_dialog_box .jodit_dialog .jodit_dialog_header a .jodit_icon {
  width: auto; }

.jodit_widget, .jodit_widget * {
  box-sizing: border-box; }

.jodit_search {
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0; }

.jodit_search.jodit_search-active {
  visibility: visible; }

.jodit_search .jodit_search_box {
  width: 320px;
  position: absolute;
  right: 0;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-width: 0 0 1px 1px;
  padding: 5px; }

.jodit_search .jodit_search_box input {
  margin: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background-color: transparent;
  outline: 0;
  padding: 0 10px; }

.jodit_search .jodit_search_box input.jodit_search-replace {
  display: none; }

.jodit_search .jodit_search_box .jodit_search_buttons, .jodit_search .jodit_search_box .jodit_search_counts, .jodit_search .jodit_search_box .jodit_search_inputs {
  height: 30px;
  display: inline-block;
  vertical-align: top; }

.jodit_search .jodit_search_box .jodit_search_inputs {
  width: 60%;
  padding-right: 5px; }

.jodit_search .jodit_search_box .jodit_search_counts {
  width: 15%;
  line-height: 100%;
  text-align: center;
  color: #ccc;
  border-left: 1px solid #ccc; }

.jodit_search .jodit_search_box .jodit_search_counts:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%; }

.jodit_search .jodit_search_box .jodit_search_counts span {
  display: inline-block;
  vertical-align: middle; }

.jodit_search .jodit_search_box .jodit_search_buttons {
  padding-left: 0;
  width: 25%; }

.jodit_search .jodit_search_box .jodit_search_buttons button {
  outline: 0;
  width: 32%;
  padding: 1px 5px;
  margin-right: 1%;
  transition: transform .1s linear;
  height: 100%;
  border: 1px solid transparent;
  background-color: transparent; }

.jodit_search .jodit_search_box .jodit_search_buttons button.jodit_search_buttons-replace {
  width: 100%;
  border: 1px solid #ccc;
  margin-top: 2px;
  display: none; }

.jodit_search .jodit_search_box .jodit_search_buttons button:hover {
  background-color: #ecebe9; }

.jodit_search .jodit_search_box .jodit_search_buttons button:focus {
  border: 1px solid rgba(181, 214, 253, 0.5); }

.jodit_search .jodit_search_box .jodit_search_buttons button:active {
  border: 1px solid #b5d6fd;
  transform: scale(0.95); }

.jodit_search.jodit_search-and-replace .jodit_search_counts, .jodit_search.jodit_search-and-replace .jodit_search_inputs {
  height: 60px; }

.jodit_search.jodit_search-and-replace .jodit_search_counts input, .jodit_search.jodit_search-and-replace .jodit_search_inputs input {
  height: 50%;
  transition: background-color .1s linear; }

.jodit_search.jodit_search-and-replace .jodit_search_counts input:focus, .jodit_search.jodit_search-and-replace .jodit_search_inputs input:focus {
  box-shadow: inset 0 0 3px 0 rgba(204, 204, 204, 0.58); }

.jodit_search.jodit_search-and-replace .jodit_search_buttons button.jodit_search_buttons-replace, .jodit_search.jodit_search-and-replace .jodit_search_inputs input.jodit_search-replace {
  display: block; }

@media (max-width: 320px) {
  .jodit_search, .jodit_search .jodit_search_box {
    width: 100%; } }

.jodit_symbols {
  width: 460px;
  padding: 10px; }

.jodit_symbols .jodit_symbols-container_preview, .jodit_symbols .jodit_symbols-container_table {
  display: inline-block;
  vertical-align: top; }

.jodit_symbols .jodit_symbols-container_table {
  width: 88%; }

.jodit_symbols .jodit_symbols-container_preview {
  width: 12%; }

.jodit_symbols .jodit_symbols-container_preview .jodit_symbols-preview {
  font-size: 34px;
  text-align: center;
  padding: 20px 0;
  border: 1px solid #ccc; }

.jodit_symbols table {
  border: 0;
  border-spacing: 0;
  table-layout: fixed; }

.jodit_symbols table td {
  padding: 0; }

.jodit_symbols table td a {
  font-size: 16px;
  text-decoration: none;
  color: #000;
  display: inline-block;
  box-sizing: border-box;
  width: 21.6px;
  height: 21.6px;
  border: 1px solid transparent;
  text-align: center;
  line-height: 21.6px;
  vertical-align: top; }

.jodit_symbols table td a:focus, .jodit_symbols table td a:hover {
  border: 1px solid #1e88e5; }

.jodit_sticky-dummy_toolbar {
  display: none; }

.jodit_sticky > .jodit_toolbar {
  position: fixed;
  z-index: 3;
  top: 0;
  left: auto; }

.jodit_sticky .jodit_sticky-dummy_toolbar {
  display: block; }

.jodit_paste_storage {
  padding: 10px;
  max-width: 600px; }

@media (max-width: 768px) {
  .jodit_paste_storage {
    max-width: 100%; } }

.jodit_paste_storage > div {
  max-width: 100%;
  max-height: 300px;
  border: 1px solid #ccc; }

.jodit_paste_storage > div:first-child {
  margin-bottom: 10px; }

.jodit_paste_storage > div:first-child a {
  outline: 0;
  box-sizing: border-box;
  display: block;
  max-width: 100%;
  white-space: pre;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 5px;
  margin: 0;
  border: 1px solid transparent;
  text-decoration: none;
  color: #000; }

.jodit_paste_storage > div:first-child a.jodit_active {
  color: #fff;
  background-color: #575757; }

.jodit_paste_storage > div:first-child a:focus {
  outline: 0; }

.jodit_paste_storage > div:last-child {
  padding: 10px;
  overflow: auto; }

.jodit_paste_storage > div:last-child li, .jodit_paste_storage > div:last-child ul {
  margin: 0; }

.image-gallery {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent; }

.image-gallery.fullscreen-modal {
  background: #000;
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 5; }

.image-gallery.fullscreen-modal .image-gallery-content {
  top: 50%;
  transform: translateY(-50%); }

.image-gallery-content {
  position: relative;
  line-height: 0;
  top: 0; }

.image-gallery-content.fullscreen {
  background: #000; }

.image-gallery-content.fullscreen .image-gallery-slide {
  background: #000; }

.image-gallery-slide-wrapper {
  position: relative; }

.image-gallery-slide-wrapper.left, .image-gallery-slide-wrapper.right {
  display: inline-block;
  width: calc(100% - 113px); }

@media (max-width: 768px) {
  .image-gallery-slide-wrapper.left, .image-gallery-slide-wrapper.right {
    width: calc(100% - 84px); } }

.image-gallery-slide-wrapper.image-gallery-rtl {
  direction: rtl; }

.image-gallery-fullscreen-button,
.image-gallery-play-button,
.image-gallery-left-nav,
.image-gallery-right-nav {
  appearance: none;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  outline: none;
  position: absolute;
  z-index: 4; }

.image-gallery-fullscreen-button,
.image-gallery-play-button {
  bottom: 0; }

.image-gallery-fullscreen-button {
  right: 0; }

.image-gallery-play-button {
  left: 0; }

.image-gallery-left-nav,
.image-gallery-right-nav {
  color: #fff;
  font-size: 5em;
  padding: 50px 15px;
  top: 50%;
  transform: translateY(-50%); }

.image-gallery-left-nav[disabled],
.image-gallery-right-nav[disabled] {
  cursor: disabled;
  opacity: .6;
  pointer-events: none; }

@media (max-width: 768px) {
  .image-gallery-left-nav,
  .image-gallery-right-nav {
    font-size: 3.4em;
    padding: 20px 15px; } }

@media (max-width: 480px) {
  .image-gallery-left-nav,
  .image-gallery-right-nav {
    font-size: 2.4em;
    padding: 0 15px; } }

.image-gallery-left-nav {
  left: 0; }

.image-gallery-right-nav {
  right: 0; }

.image-gallery-slides {
  line-height: 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap; }

.image-gallery-slide {
  background: #fff;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%; }

.image-gallery-slide.center {
  position: relative; }

.image-gallery-slide img {
  width: 100%; }

.image-gallery-slide .image-gallery-description {
  background: rgba(0, 0, 0, 0.4);
  bottom: 70px;
  color: #fff;
  left: 0;
  line-height: 1;
  padding: 10px 20px;
  position: absolute;
  white-space: normal; }

@media (max-width: 768px) {
  .image-gallery-slide .image-gallery-description {
    bottom: 45px;
    font-size: .8em;
    padding: 8px 15px; } }

.image-gallery-bullets {
  bottom: 20px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 80%;
  z-index: 4; }

.image-gallery-bullets .image-gallery-bullets-container {
  margin: 0;
  padding: 0;
  text-align: center; }

.image-gallery-bullets .image-gallery-bullet {
  appearance: none;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 0 #1a1a1a;
  cursor: pointer;
  display: inline-block;
  margin: 0 5px;
  outline: none;
  padding: 5px; }

@media (max-width: 768px) {
  .image-gallery-bullets .image-gallery-bullet {
    margin: 0 3px;
    padding: 3px; } }

@media (max-width: 480px) {
  .image-gallery-bullets .image-gallery-bullet {
    padding: 2.7px; } }

.image-gallery-bullets .image-gallery-bullet.active {
  background: #fff; }

.image-gallery-thumbnails-wrapper {
  position: relative; }

.image-gallery-thumbnails-wrapper.thumbnails-wrapper-rtl {
  direction: rtl; }

.image-gallery-thumbnails-wrapper.left, .image-gallery-thumbnails-wrapper.right {
  display: inline-block;
  vertical-align: top;
  width: 108px; }

@media (max-width: 768px) {
  .image-gallery-thumbnails-wrapper.left, .image-gallery-thumbnails-wrapper.right {
    width: 81px; } }

.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails, .image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails {
  height: 100%;
  width: 100%;
  left: 0;
  padding: 0;
  position: absolute;
  top: 0; }

.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail, .image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail {
  display: block;
  margin-right: 0;
  padding: 0; }

.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail + .image-gallery-thumbnail, .image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail + .image-gallery-thumbnail {
  margin-left: 0; }

.image-gallery-thumbnails-wrapper.left {
  margin-right: 5px; }

@media (max-width: 768px) {
  .image-gallery-thumbnails-wrapper.left {
    margin-right: 3px; } }

.image-gallery-thumbnails-wrapper.right {
  margin-left: 5px; }

@media (max-width: 768px) {
  .image-gallery-thumbnails-wrapper.right {
    margin-left: 3px; } }

.image-gallery-thumbnails {
  overflow: hidden;
  padding: 5px 0; }

@media (max-width: 768px) {
  .image-gallery-thumbnails {
    padding: 3px 0; } }

.image-gallery-thumbnails .image-gallery-thumbnails-container {
  cursor: pointer;
  text-align: center;
  transition: transform .45s ease-out;
  white-space: nowrap; }

.image-gallery-thumbnail {
  display: inline-block;
  border: 4px solid transparent;
  transition: border .3s ease-out;
  width: 100px; }

@media (max-width: 768px) {
  .image-gallery-thumbnail {
    border: 3px solid transparent;
    width: 75px; } }

.image-gallery-thumbnail + .image-gallery-thumbnail {
  margin-left: 2px; }

.image-gallery-thumbnail .image-gallery-thumbnail-inner {
  position: relative; }

.image-gallery-thumbnail img {
  vertical-align: middle;
  width: 100%; }

.image-gallery-thumbnail.active {
  border: 4px solid #337ab7; }

@media (max-width: 768px) {
  .image-gallery-thumbnail.active {
    border: 3px solid #337ab7; } }

.image-gallery-thumbnail-label {
  box-sizing: border-box;
  color: white;
  font-size: 1em;
  left: 0;
  line-height: 1em;
  padding: 5%;
  position: absolute;
  top: 50%;
  text-shadow: 1px 1px 0 black;
  transform: translateY(-50%);
  white-space: normal;
  width: 100%; }

@media (max-width: 768px) {
  .image-gallery-thumbnail-label {
    font-size: .8em;
    line-height: .8em; } }

.image-gallery-index {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  line-height: 1;
  padding: 10px 20px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4; }

@media (max-width: 768px) {
  .image-gallery-index {
    font-size: .8em;
    padding: 5px 10px; } }

@charset "UTF-8";
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

.hidden-xs-up {
  display: none !important; }

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

@media (min-width: 544px) {
  .hidden-sm-up {
    display: none !important; } }

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

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

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

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

@media (max-width: 1339px) {
  .hidden-lg-down {
    display: none !important; } }

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

.hidden-xl-down {
  display: none !important; }

.stepper {
  display: flex;
  justify-content: space-around;
  position: relative;
  max-width: 520px;
  padding: 20px 0 20px 0;
  margin: 0 auto; }
  .stepper .stepper-step {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center; }
    .stepper .stepper-step.editable:hover {
      cursor: pointer; }
    .stepper .stepper-step .dropdown-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-grow: 1;
      width: 300px;
      padding: 20px 15px 15px 15px; }
      .stepper .stepper-step .dropdown-wrapper:hover {
        cursor: default; }
      .stepper .stepper-step .dropdown-wrapper .content_btn {
        padding: 5px; }
      .stepper .stepper-step .dropdown-wrapper .stepper-dropdown-label {
        color: #535963;
        font-size: 16px;
        flex-grow: 0;
        margin-bottom: 10px; }
      .stepper .stepper-step .dropdown-wrapper .stepper-dropdown-buttons {
        display: flex;
        width: 100%;
        flex-direction: row; }
    .stepper .stepper-step .step-circle-container {
      height: 40px;
      width: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #B9C0C9;
      background-color: #FFF;
      border-radius: 100px;
      border: 3px solid #B9C0C9; }
      .stepper .stepper-step .step-circle-container.highlighted {
        color: #FF4C3F;
        border: 3px solid #FF4C3F;
        background-color: #FF4C3F; }
        .stepper .stepper-step .step-circle-container.highlighted svg {
          fill: #FFF;
          stroke: #FFF; }
      .stepper .stepper-step .step-circle-container svg {
        width: 23px;
        height: 23px;
        fill: #B9C0C9;
        stroke: #B9C0C9; }
    .stepper .stepper-step .step-title-container {
      margin-top: 12px;
      color: #B9C0C9;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase; }
      .stepper .stepper-step .step-title-container.highlighted {
        color: #FF4C3F; }
  .stepper .stepper-progressbar {
    position: absolute;
    top: 41px;
    width: 395px;
    height: 3px;
    z-index: -1;
    background-color: #B9C0C9; }
    .stepper .stepper-progressbar .stepper-progressbar-indicator {
      height: 3px;
      background-color: #FF4C3F;
      transition: width 0.5s; }

.saleModale_button.button.button-lg {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row-reverse; }
  .saleModale_button.button.button-lg svg {
    fill: #FFF; }

h1 {
  font-size: 18px !important; }

h3 {
  font-size: 15px !important; }

.jodit_container h1 {
  font-size: 2em !important;
  color: #2e3844 !important;
  font-weight: bold !important; }

.jodit_container h2 {
  font-size: 1.5em !important;
  color: #2e3844;
  font-weight: bold !important; }

.jodit_container h3 {
  font-size: 1.17em !important;
  color: #2e3844;
  font-weight: bold !important; }

li.jodit_toolbar_btn.jodit_toolbar_btn-h4 {
  display: none !important; }

li.jodit_toolbar_btn.jodit_toolbar_btn-blockquote {
  display: none !important; }

.padded {
  padding: 25px; }

.subtitle_form {
  font-size: 12px;
  color: #8D949E;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  margin-top: 15px; }
  .subtitle_form:first-child {
    margin-top: 0; }

.sub_img {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #adadad1a;
  width: 100%;
  padding: 40px 0;
  margin-bottom: 10px; }
  .sub_img svg {
    width: 40px;
    height: 40px;
    fill: #B9C0C9; }

.bloc_lot {
  width: 100%; }
  .bloc_lot .content_img {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 120px;
    overflow: hidden;
    margin-bottom: 10px; }
    .bloc_lot .content_img img {
      width: 100%;
      margin-bottom: 0; }
  .bloc_lot img {
    width: 100%;
    margin-bottom: 10px; }
  .bloc_lot p.photo_name {
    font-size: 20px;
    font-weight: 600;
    color: #535963;
    margin-bottom: 5px; }
  .bloc_lot p.city_code {
    color: #888F9A;
    font-size: 12px; }
  .bloc_lot.bloc_small p.photo_name {
    color: #535963;
    font-size: 13px; }
  .bloc_lot.bloc_small p.city_code {
    color: #888F9A;
    font-size: 12px; }

.sale-container .form-group label {
  color: #888F9A; }

.sale-container .form-control {
  background-color: transparent;
  min-width: inherit;
  border: 1px solid #D9DDE2; }

.sale-container .total-amount {
  margin-top: 20px; }
  .sale-container .total-amount-label {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold; }
  .sale-container .total-amount-price {
    font-size: 16px; }

.centred_container_swipe {
  width: calc(100vw - 100px);
  min-width: calc(100vw - 100px);
  max-width: calc(100vw - 100px);
  padding: 25px;
  box-sizing: border-box;
  min-height: calc(100vh - 215px); }

.sale-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%; }

.bloc-sale {
  background-color: #FFF;
  padding: 25px; }

.add_bloc {
  position: relative; }
  .add_bloc select {
    width: 100%;
    min-width: inherit;
    margin-bottom: 20px; }

.search_bat {
  transition: all 0.3s;
  position: absolute;
  width: 500px;
  height: auto;
  left: 0;
  transform-origin: 0 0;
  z-index: 2; }
  .search_bat.hidden {
    transform: scale(0); }

.list-option {
  margin-bottom: 50px; }
  .list-option ul {
    margin: 0;
    padding: 0; }
    .list-option ul li {
      list-style: none;
      padding: 25px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      display: flex;
      justify-content: space-between;
      color: #535963; }
      .list-option ul li:first-child {
        padding-top: 0; }
      .list-option ul li:last-child {
        border-bottom: none;
        padding-bottom: 0; }

.table-steps li {
  background-color: #fafafa !important; }

.table-steps li:hover {
  background-color: #ffffff !important; }

li.li-draggable {
  padding: 15px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  list-style: none;
  background-color: #FFFFFF; }

.modal .list-option ul li {
  padding: 15px; }

.checked-box {
  display: inline-flex;
  margin-left: 20px; }
  .checked-box label {
    margin-left: 10px; }

.title_lot {
  display: flex;
  align-items: center;
  padding: 20px 0; }
  .title_lot p.name_project {
    font-size: 20px;
    color: #535963;
    margin-bottom: 5px;
    font-weight: bold; }
  .title_lot p.address_lot {
    font-size: 13px;
    color: #535963;
    margin-bottom: 5px; }
  .title_lot p.number_lot {
    font-size: 12px;
    color: #888F9A;
    margin-bottom: 0px; }
  .title_lot svg {
    max-width: 20px;
    max-height: 20px;
    margin-right: 10px;
    opacity: 0.4; }

.batch_selector .batch {
  background: white;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid white; }

.batch_selector .batch:hover {
  border: 1px solid #535963; }

.batch_selector .batch_associate {
  width: 87%;
  margin-left: 15px;
  margin-top: 5px; }

.batch_selector .batch_tree {
  float: left;
  width: 10px; }

.batch_selector .batch_associate_tree_up {
  height: 20px;
  width: 10px;
  border-left: 1px dotted black;
  border-bottom: 1px dotted black; }

.batch_selector .batch_associate_tree_down {
  height: 20px;
  width: 10px;
  border-left: 1px dotted black; }

.batch_selector .batch_name {
  font-size: 11px;
  background: #535963;
  color: white;
  padding: 4px;
  font-weight: bold;
  width: 90px;
  text-align: center;
  float: left; }

.batch_selector .batch_type {
  color: #535963;
  margin-left: 40px;
  font-size: 12px;
  display: inline-block; }
  .batch_selector .batch_type .batch_tranche_name {
    font-style: italic;
    font-size: 10px; }

.batch_selector .batch_delete_icon {
  float: right;
  position: relative;
  top: 3px;
  cursor: pointer; }
  .batch_selector .batch_delete_icon svg {
    width: 15px;
    height: 15px; }

.batch_selector .batch_selected {
  border: 1px solid #535963; }

.batch_selector .batch_btn_add {
  font-size: 12px;
  background: #535963;
  color: white;
  text-align: center;
  font-weight: bold;
  cursor: pointer; }

.batch_selector .batch_select {
  margin-top: 5px; }
  .batch_selector .batch_select .Select-placeholder {
    color: #535963; }

.batch_selector button {
  height: 40px; }

.add_consumer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 50px; }
  .add_consumer_title {
    font-weight: bold;
    color: #545a64; }

.list_consumer_added {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  padding: 30px 0; }
  .list_consumer_added__resend_link {
    color: #535963; }
  .list_consumer_added .list_consumer_added_wrapper {
    position: relative; }
    .list_consumer_added .list_consumer_added_wrapper .title_icon {
      position: relative;
      height: calc(100% - 20px);
      justify-content: flex-start;
      padding-bottom: 30px; }
      .list_consumer_added .list_consumer_added_wrapper .title_icon > span {
        text-align: center;
        position: absolute;
        bottom: 0; }
    .list_consumer_added .list_consumer_added_wrapper .customer_position_updater {
      display: inline-flex;
      width: 14px;
      height: 14px;
      position: absolute;
      top: 60px;
      cursor: pointer; }
      .list_consumer_added .list_consumer_added_wrapper .customer_position_updater_left {
        transform: translateY(-50%) rotate(180deg);
        left: 50px; }
      .list_consumer_added .list_consumer_added_wrapper .customer_position_updater_right {
        right: 50px;
        transform: translateY(-50%); }
  .list_consumer_added .consumer_bubble_adder .title_icon > p {
    position: relative;
    top: 24px; }

.title_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  width: 160px;
  margin: 0 20px 20px 20px; }
  .title_icon .big_cercled_icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 400px; }
    .title_icon .big_cercled_icon svg {
      width: 50px;
      height: 50px;
      fill: #888F9A; }
    .title_icon .big_cercled_icon__overlay {
      width: 120px;
      height: 120px;
      background-size: 120px 120px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.4);
      position: absolute;
      top: 0;
      left: 0;
      display: flex;
      justify-content: center;
      align-items: center; }
    .title_icon .big_cercled_icon.consumer_add {
      background-color: #D9DDE2;
      cursor: pointer;
      transition: all 0.5s; }
      .title_icon .big_cercled_icon.consumer_add:hover {
        box-shadow: 0px 10px 30px -10px rgba(0, 0, 0, 0.4); }
        .title_icon .big_cercled_icon.consumer_add:hover::before {
          display: flex; }
    .title_icon .big_cercled_icon.consumer_added {
      position: relative;
      background-color: #FFF;
      box-shadow: 0px 4px 20px -10px rgba(0, 0, 0, 0.4);
      transition: all 0.5s;
      cursor: pointer; }
      .title_icon .big_cercled_icon.consumer_added:hover {
        box-shadow: 0px 10px 30px -10px rgba(0, 0, 0, 0.4); }
        .title_icon .big_cercled_icon.consumer_added:hover .icon_trash {
          display: flex; }
      .title_icon .big_cercled_icon.consumer_added .icon_trash {
        width: 32px;
        height: 32px;
        display: none;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 0;
        right: 5px;
        background-color: #FF4050;
        border-radius: 100px;
        transition: transform 0.15s; }
        .title_icon .big_cercled_icon.consumer_added .icon_trash svg {
          width: 16px;
          height: 16px;
          fill: #FFF; }
        .title_icon .big_cercled_icon.consumer_added .icon_trash:hover {
          transform: scale(1.1); }
  .title_icon .icon_sub_label {
    color: #888F9A;
    font-size: 11px;
    margin-top: 20px;
    min-height: 14px; }
    .title_icon .icon_sub_label ~ p {
      margin-top: 5px; }
  .title_icon p {
    margin-top: 15px;
    margin-bottom: 0;
    text-align: center;
    font-weight: medium;
    font-size: 16px;
    color: #535963; }
  .title_icon p.consumer_address {
    margin: 5px 0 10px 0;
    color: #888F9A;
    font-size: 12px; }

.title_icon_small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 20px 20px 20px;
  float: left; }
  .title_icon_small .big_cercled_icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 400px; }
    .title_icon_small .big_cercled_icon svg {
      width: 25px;
      height: 25px;
      fill: #888F9A; }
    .title_icon_small .big_cercled_icon__overlay {
      width: 60px;
      height: 60px;
      background-size: 60px 60px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.4);
      position: absolute;
      top: 0;
      left: 0;
      display: flex;
      justify-content: center;
      align-items: center; }
    .title_icon_small .big_cercled_icon.consumer_add {
      background-color: #D9DDE2;
      cursor: pointer;
      transition: all 0.5s; }
      .title_icon_small .big_cercled_icon.consumer_add:hover {
        box-shadow: 0px 10px 30px -10px rgba(0, 0, 0, 0.4); }
        .title_icon_small .big_cercled_icon.consumer_add:hover::before {
          display: flex; }
    .title_icon_small .big_cercled_icon.consumer_added {
      position: relative;
      background-color: #FFF;
      box-shadow: 0px 4px 20px -10px rgba(0, 0, 0, 0.4);
      transition: all 0.5s;
      cursor: pointer; }
      .title_icon_small .big_cercled_icon.consumer_added:hover {
        box-shadow: 0px 10px 30px -10px rgba(0, 0, 0, 0.4); }
        .title_icon_small .big_cercled_icon.consumer_added:hover .icon_trash {
          display: flex; }
      .title_icon_small .big_cercled_icon.consumer_added .icon_trash {
        width: 32px;
        height: 32px;
        display: none;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 0;
        right: 5px;
        background-color: #FF4050;
        border-radius: 100px;
        transition: transform 0.15s; }
        .title_icon_small .big_cercled_icon.consumer_added .icon_trash svg {
          width: 16px;
          height: 16px;
          fill: #FFF; }
        .title_icon_small .big_cercled_icon.consumer_added .icon_trash:hover {
          transform: scale(1.1); }
  .title_icon_small p {
    margin-top: 15px;
    margin-bottom: 0;
    text-align: center;
    font-weight: medium;
    font-size: 16px;
    color: #535963; }
  .title_icon_small p.consumer_address {
    margin: 5px 0 10px 0;
    color: #888F9A;
    font-size: 12px; }

.consumer_bubble_adder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center; }

.consumer_bubble_adder_content {
  color: #585f68;
  display: flex;
  flex-direction: row;
  padding: 0 16px;
  width: 100%;
  justify-content: space-between; }
  .consumer_bubble_adder_content_section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin: auto;
    cursor: pointer; }
    .consumer_bubble_adder_content_section_selected {
      background: #b5bac0 !important; }
    .consumer_bubble_adder_content_section_icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: #e4e7ea;
      display: flex;
      align-items: center;
      justify-content: center;
      fill: #585f68; }
      .consumer_bubble_adder_content_section_icon:hover {
        background: #b5bac0; }
      .consumer_bubble_adder_content_section_icon svg {
        width: 22px;
        height: 22px;
        fill: inherit; }

.big_adder_consumer {
  z-index: 1000;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: absolute;
  bottom: 185px;
  transition: all 0.3s;
  transform-origin: center top;
  width: 400px;
  padding: 20px;
  background-color: #D9DDE2;
  border-radius: 10px; }
  .big_adder_consumer.hidden {
    transform: scale(0); }
  .big_adder_consumer::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    bottom: -10px;
    left: calc(50% - 10px);
    transform: rotate(135deg);
    background-color: #D9DDE2; }

.adder_consumer {
  position: relative;
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: -130px;
  transition: all 0.3s;
  transform-origin: center top;
  width: 400px;
  padding: 20px;
  background-color: #D9DDE2;
  border-radius: 10px; }
  .adder_consumer.hidden {
    transform: scale(0); }
  .adder_consumer::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    top: -10px;
    left: calc(50% - 10px);
    transform: rotate(135deg);
    background-color: #D9DDE2; }

.loader-screen {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 465px;
  width: 100%;
  height: 300px;
  margin: 0 auto;
  text-align: center; }
  .loader-screen .space_vg {
    position: relative; }
    .loader-screen .space_vg::before {
      content: '';
      position: absolute;
      top: 6px;
      left: 12px;
      height: 56px;
      width: 7px;
      background-color: #B9C0C9; }
    .loader-screen .space_vg::after {
      content: '';
      position: absolute;
      top: 4px;
      left: 12px;
      height: 7px;
      width: 43px;
      background-color: #B9C0C9; }
    .loader-screen .space_vg svg {
      width: 75px;
      height: 75px;
      fill: #535963; }
  .loader-screen h1 {
    font-size: 22px;
    margin-bottom: 30px; }
  .loader-screen .progressbar {
    overflow: hidden;
    width: 100%;
    border-radius: 30px;
    background-color: #D9DDE2;
    height: 8px; }
    .loader-screen .progressbar .progressbar-indicator {
      background-color: #FF4C3F;
      height: 8px;
      transition: all 2s; }

.document_row__category {
  margin-left: 10px; }

.document_li_container {
  width: 100%; }
  .document_li_container .title_document_container {
    display: flex;
    width: 100%; }
    .document_li_container .title_document_container .title_document {
      flex-grow: 1; }
    .document_li_container .title_document_container .title_document.deleted {
      text-decoration: line-through !important;
      color: #D0D2D5 !important; }
    .document_li_container .title_document_container .title_document.deleted span {
      text-decoration: line-through !important;
      color: #D0D2D5 !important; }
  .document_li_container .error {
    color: #F56565;
    padding-left: 30px; }

.title_document {
  font-size: 16px;
  color: #535963;
  display: flex;
  align-items: center;
  cursor: default; }
  .title_document .form-group {
    margin: 0 14px 0 0; }
  .title_document svg {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    fill: #DE001C; }
  .title_document span {
    margin-left: 10px;
    color: #8D949E; }
  .title_document__text {
    display: flex;
    align-items: center; }
  .title_document:hover .title_document__text {
    text-decoration: underline; }

.document_edit_required_fields__inner {
  max-height: 400px;
  overflow-y: scroll;
  margin: 20px 0; }
  .document_edit_required_fields__inner table th:nth-child(4) {
    max-width: none;
    padding-left: 0px; }
  .document_edit_required_fields__inner table td {
    padding: 5px; }
    .document_edit_required_fields__inner table td .form-group {
      margin-bottom: 0px; }

.signature_link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  text-decoration: none;
  color: #535963; }
  .signature_link:hover {
    opacity: 0.5;
    cursor: pointer; }

.send_email_link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.5rem;
  text-decoration: none; }
  .send_email_link:hover {
    opacity: 0.5;
    cursor: pointer; }

.signature_link_signed {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #27ae60; }

.icon_signature {
  display: flex;
  align-items: center; }
  .icon_signature:hover {
    cursor: pointer; }
  .icon_signature svg {
    margin-right: 15px;
    width: 24px;
    height: 25px;
    fill: #888F9A;
    cursor: pointer;
    transition: all 0.5s; }
    .icon_signature svg:hover {
      opacity: 0.5; }
    .icon_signature svg.red_icon {
      fill: #FF4050; }
    .icon_signature svg:last-child {
      padding-right: 0; }

.icon_document {
  display: flex;
  align-items: center; }
  .icon_document a {
    display: flex;
    justify-content: center;
    align-items: center; }
  .icon_document svg {
    padding-left: 15px;
    width: 20px;
    height: 20px;
    fill: #888F9A;
    cursor: pointer;
    transition: all 0.5s; }
    .icon_document svg:hover {
      opacity: 0.5; }
    .icon_document svg.red_icon {
      fill: #FF4050; }

.required_fields_notification {
  text-align: center;
  position: absolute;
  top: 10px;
  left: 28px;
  font-size: 10px;
  background: #FF4050;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  color: white;
  line-height: 16px;
  font-weight: bold; }

.modal_required_fields__notification {
  display: inline-block;
  text-align: center;
  font-size: 10px;
  background: #FF4050;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  color: white;
  line-height: 16px;
  font-weight: bold;
  margin: 0 5px; }

.modal_required_fields__text {
  display: inline-block;
  color: #FF4050;
  font-size: 13px;
  white-space: pre-line; }

.options_table {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .options_table .btn_action_table {
    display: flex; }
    .options_table .btn_action_table .btn_action {
      display: flex;
      align-items: center;
      cursor: pointer;
      margin-left: 20px;
      transition: all 0.5s; }
      .options_table .btn_action_table .btn_action:hover {
        opacity: 0.5; }
    .options_table .btn_action_table svg {
      width: 20px;
      height: 20px;
      fill: #888F9A;
      margin-right: 5px; }
    .options_table .btn_action_table span {
      font-size: 14px;
      color: #535963;
      margin-right: 40px; }
      .options_table .btn_action_table span:last-child {
        margin-right: 0; }

.list-select {
  margin-bottom: 50px; }
  .list-select ul {
    margin: 0;
    padding: 0; }
    .list-select ul li {
      list-style: none;
      padding: 25px;
      display: flex;
      justify-content: space-between;
      color: #535963; }
      .list-select ul li:hover {
        background-color: #F1F2F5; }

.list_old_document {
  border: 3px dashed #D9DDE2;
  border-radius: 5px;
  padding: 10px; }

.list_signataire {
  display: flex;
  flex-direction: row nowrap; }

.carre_upload_doc_wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
  border: 3px dashed #D9DDE2;
  border-radius: 5px;
  user-select: none; }
  .carre_upload_doc_wrapper:hover {
    cursor: pointer; }
  .carre_upload_doc_wrapper:active {
    opacity: 0.5; }

.carre_upload_doc {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  color: #B9C0C9;
  font-size: 20px; }
  .carre_upload_doc input:hover {
    cursor: pointer; }
  .carre_upload_doc svg {
    flex: 1;
    width: 100%;
    height: 100%;
    min-width: 35px;
    min-height: 35px;
    max-width: 50px;
    max-height: 50px;
    margin-bottom: 20px;
    fill: #B9C0C9; }
  .carre_upload_doc span {
    text-align: center; }

.filtred_tabs {
  margin-bottom: 15px; }
  .filtred_tabs .tabs {
    background-color: #FFF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); }
    .filtred_tabs .tabs .tab_icon {
      display: flex;
      flex-flow: column;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      padding: 15px 0 10px 0; }
      .filtred_tabs .tabs .tab_icon:hover {
        opacity: 0.5; }
      .filtred_tabs .tabs .tab_icon.active {
        border-bottom: 2px solid #FF4C3F; }
        .filtred_tabs .tabs .tab_icon.active .puce {
          background-color: #FF4C3F;
          color: #FFF; }
        .filtred_tabs .tabs .tab_icon.active:hover {
          opacity: 1; }
        .filtred_tabs .tabs .tab_icon.active svg {
          fill: #FF4C3F; }
        .filtred_tabs .tabs .tab_icon.active span {
          color: #FF4C3F; }
      .filtred_tabs .tabs .tab_icon .content_puce {
        position: relative; }
      .filtred_tabs .tabs .tab_icon .puce {
        width: 20px;
        height: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: -5px;
        right: -10px;
        color: #FFF;
        background-color: #888F9A;
        border-radius: 50px;
        font-size: 13px; }
      .filtred_tabs .tabs .tab_icon svg {
        width: 32px;
        height: 33px;
        fill: #535963;
        margin-bottom: 10px; }
      .filtred_tabs .tabs .tab_icon span {
        font-size: 13px;
        color: #535963;
        text-align: center; }

.sales_stats {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center; }
  .sales_stats .stat {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    color: #888F9A;
    font-size: 12px; }
    .sales_stats .stat span {
      font-weight: bold;
      font-size: 20px;
      color: #535963; }
  .sales_stats .jauge {
    position: relative;
    width: 100%;
    height: 8px;
    margin: 20px 0;
    overflow: hidden;
    border-radius: 100px;
    background-color: #FFF;
    z-index: -3; }
    .sales_stats .jauge .color_line {
      z-index: -1;
      position: absolute;
      left: 0;
      width: 33%;
      height: 8px;
      background-color: #FF4C3F; }
    .sales_stats .jauge .grey_line {
      z-index: -2;
      position: absolute;
      left: 0;
      width: 75%;
      height: 8px;
      background-color: #B9C0C9; }

.filtred-form td > div {
  display: flex;
  align-items: center; }

.filtred-form .status, .filtred-form .commercial {
  color: #8D949E; }

.filtred-form svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: #8D949E; }

.sale-stepper-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: calc(100vw - 100px); }

@media screen and (max-width: 990px) {
  .centred_container_swipe {
    width: 100vw;
    min-width: inherit;
    max-width: inherit; }
  .search_bat {
    width: 260px; }
  .sale-stepper-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100vw; } }

.customLoader {
  left: 50%;
  top: 50%;
  position: absolute;
  z-index: 1002; }
  .customLoader .loader {
    height: 40px;
    width: 40px; }
  .customLoader .textLoader {
    color: white; }

pixie-editor .loader {
  display: none; }

.sale_details_header {
  z-index: 1;
  width: 100%;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 31px;
  background-color: #FFF; }
  .sale_details_header .top_line {
    position: absolute;
    top: 0;
    display: inline-table;
    box-sizing: border-box;
    background-color: #D9DDE2;
    width: calc(100% - 60px);
    height: 1px;
    margin: 0 auto; }

.info_folder {
  display: flex;
  align-items: center; }
  .info_folder p {
    margin: 0; }
    .info_folder p.folder_nb {
      font-size: 16px;
      color: #535963;
      margin-bottom: 5px; }
    .info_folder p.lot_nb {
      color: #888F9A;
      font-size: 12px; }
  .info_folder svg {
    height: 30px;
    width: 20px;
    margin-right: 20px;
    fill: #888F9A;
    transform: rotate(-180deg); }
  .info_folder_back {
    cursor: pointer; }
  .info_folder .off_module_tag {
    text-transform: uppercase;
    background-color: #e7effe;
    color: #3d6df6;
    padding: 10px 20px;
    border-radius: 20px;
    margin-left: 15px; }

.cancel_sell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  margin: 0;
  font-size: 14px;
  color: #FF4050; }
  .cancel_sell span {
    height: 21px; }
  .cancel_sell svg {
    height: 20px;
    width: 20px;
    fill: #FF4050;
    margin-right: 5px; }

.sale-stepper-container {
  position: relative; }
  .sale-stepper-container .exit-button {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.3s; }
    .sale-stepper-container .exit-button span {
      margin-left: 5px;
      font-size: 14px; }
    .sale-stepper-container .exit-button svg {
      position: relative;
      top: 5px;
      height: 20px;
      width: 20px;
      fill: grey; }
    .sale-stepper-container .exit-button:hover {
      cursor: pointer; }

.sale_details_header .sale-stepper-container {
  margin: 0 auto; }
  .sale_details_header .sale-stepper-container .stepper {
    max-width: none;
    padding: 0; }
    .sale_details_header .sale-stepper-container .stepper .stepper-progressbar-indicator {
      height: 4px; }
    .sale_details_header .sale-stepper-container .stepper .stepper-progressbar {
      width: 810px;
      margin: 0 auto;
      top: 13px;
      z-index: 0;
      height: 4px; }
    .sale_details_header .sale-stepper-container .stepper .stepper-progressbar-account {
      width: 935px; }
    .sale_details_header .sale-stepper-container .stepper .stepper-progressbar-off-module {
      width: 500px !important; }
    .sale_details_header .sale-stepper-container .stepper .step-circle-container {
      width: 22px;
      height: 22px;
      z-index: 2;
      border: 4px solid #B9C0C9; }
      .sale_details_header .sale-stepper-container .stepper .step-circle-container svg {
        display: none;
        height: 15px;
        width: 15px; }
      .sale_details_header .sale-stepper-container .stepper .step-circle-container.highlighted {
        border: 4px solid #27ae60; }
        .sale_details_header .sale-stepper-container .stepper .step-circle-container.highlighted svg {
          display: inline-block; }
      .sale_details_header .sale-stepper-container .stepper .step-circle-container.highlighted_doing {
        border: 4px solid #27ae60; }
        .sale_details_header .sale-stepper-container .stepper .step-circle-container.highlighted_doing svg {
          fill: #27ae60; }
    .sale_details_header .sale-stepper-container .stepper .step-title-container {
      font-size: 14px;
      width: 105px;
      text-transform: none;
      font-weight: 600;
      margin-top: 5px; }

@media screen and (max-width: 1450px) {
  .sale_details_header .sale-stepper-container .stepper .stepper-progressbar-off-module {
    width: 400px !important; }
  .sale_details_header .sale-stepper-container .stepper .stepper-progressbar {
    width: 648px; }
  .sale_details_header .sale-stepper-container .stepper .step-title-container {
    width: 84px;
    font-size: 11px; }
  .sale_details_header .sale-stepper-container .stepper .stepper-progressbar-account {
    width: 735px; } }

@media screen and (max-width: 1350px) {
  .sale_details_header .sale-stepper-container .stepper .stepper-progressbar-off-module {
    width: 350px !important; }
  .sale_details_header .sale-stepper-container .stepper .stepper-progressbar {
    width: 567px; }
  .sale_details_header .sale-stepper-container .stepper .step-title-container {
    width: 73px;
    font-size: 10px; }
  .sale_details_header .sale-stepper-container .stepper .stepper-progressbar-account {
    width: 635px; } }

@media screen and (max-width: 1250px) {
  .sale-stepper-container {
    display: none; } }

.dashdetail-overlay {
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 501;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  pointer-events: all;
  cursor: not-allowed;
  justify-content: center; }

.dashdetail {
  overflow: hidden;
  position: relative; }

.content_header_complementary_doc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px; }
  .content_header_complementary_doc h1.title_icon_sale {
    margin: 0px; }

h1.title_icon_sale {
  display: flex;
  margin-bottom: 0px;
  margin-top: 40px; }
  h1.title_icon_sale svg {
    width: 25px;
    height: 25px;
    fill: red;
    margin-right: 10px; }
  h1.title_icon_sale span {
    color: #888F9A;
    margin-left: 10px;
    font-weight: normal; }

span.download_complementary_doc {
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  margin: 5px;
  text-decoration: underline; }

.content_sale_countersign_warning {
  padding: 15px;
  text-align: center;
  color: #876806;
  font-weight: 500;
  background: #FFF3CD;
  margin-top: 10px;
  border: 1px dashed #876806; }

.page-content.dashdetail {
  padding-top: 0; }

.content_dashboard_detail {
  position: relative; }

.content_sale_dashboard p.subtitle_form {
  padding: 20px 0 0 20px; }

.content_sale_dashboard .bloc-sale {
  padding: 0;
  margin-top: 20px;
  border: 1px solid #dadada;
  border-radius: 4px; }

.content_btn {
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
  box-sizing: border-box; }
  .content_btn button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D9DDE2 !important;
    padding: 15px;
    color: #2A2E34;
    font-size: 14px;
    outline: none;
    border: none; }
    .content_btn button svg {
      fill: #2A2E34; }
    .content_btn button.valided {
      max-width: 240px;
      margin: 0 auto; }
    .content_btn button.blocked {
      cursor: auto;
      opacity: 0.4; }
      .content_btn button.blocked:hover {
        transform: none; }
    .content_btn button.colored {
      background-color: #27AE60 !important;
      color: #FFF; }
      .content_btn button.colored svg {
        fill: #FFF; }

.content_sale_activation_container {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: calc(50vh - 100px); }

button.content_sale_activate_button {
  background-color: #3D6DF6 !important;
  color: #fff; }

.dropdown {
  position: absolute;
  z-index: 999;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0) scale(0);
  background-color: #FFF;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: transform 0.3s; }
  .dropdown.visible {
    transform: translate(-50%, calc(100% + 50px)) scale(1); }
  .dropdown .dropdown-wrapper {
    position: relative;
    padding: 20px; }
    .dropdown .dropdown-wrapper::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      width: 0;
      height: 0;
      transform: translate(-50%, -100%);
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 10px solid white;
      clear: both; }

.dropdown-notification {
  width: 350px; }
  .dropdown-notification.visible {
    transform: translate(-50%, calc(100% + 30px)) scale(1); }

.nothings_here {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0; }
  .nothings_here svg {
    fill: #B9C0C9;
    width: 50px;
    height: 50px;
    margin-bottom: 20px; }
  .nothings_here p {
    font-size: 20px;
    color: #B9C0C9;
    margin-bottom: 0; }

.dashdetail .bloc-dropdown-detail {
  position: absolute;
  z-index: 999;
  top: 40px;
  left: -260px;
  background-color: #FFF;
  padding: 0px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 340px; }
  .dashdetail .bloc-dropdown-detail::before {
    content: '';
    width: 17px;
    height: 17px;
    position: absolute;
    top: -8px;
    right: 120px;
    transform: rotate(45deg);
    background-color: #FFF; }
  .dashdetail .bloc-dropdown-detail .folder_name {
    padding: 15px 0 15px 20px; }
    .dashdetail .bloc-dropdown-detail .folder_name .profile_picture {
      height: 26px;
      width: 25px;
      background: none;
      border-radius: 0; }

.see_more, .see_less {
  display: flex;
  justify-content: center;
  padding: 20px; }
  .see_more .action, .see_less .action {
    text-decoration: underline;
    font-size: 13px;
    color: #535963;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: bold; }

.folder_list, .folder_list__column, .folder_list__merged_document {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #F1F2F5; }
  .folder_list:last-child, .folder_list__column:last-child, .folder_list__merged_document:last-child {
    border-bottom: none; }
  .folder_list .folder_name, .folder_list__column .folder_name, .folder_list__merged_document .folder_name {
    padding: 20px;
    display: flex;
    align-items: center; }
    .folder_list .folder_name .folder_content_center, .folder_list__column .folder_name .folder_content_center, .folder_list__merged_document .folder_name .folder_content_center {
      flex-grow: 1; }
      .folder_list .folder_name .folder_content_center p, .folder_list__column .folder_name .folder_content_center p, .folder_list__merged_document .folder_name .folder_content_center p, .folder_list .folder_name .folder_content_center span, .folder_list__column .folder_name .folder_content_center span, .folder_list__merged_document .folder_name .folder_content_center span {
        word-break: break-word; }
  .folder_list .folder_action, .folder_list__column .folder_action, .folder_list__merged_document .folder_action {
    display: flex;
    padding: 10px;
    cursor: pointer; }
  .folder_list .icon_changeset, .folder_list__column .icon_changeset, .folder_list__merged_document .icon_changeset {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 10px; }
    .folder_list .icon_changeset svg, .folder_list__column .icon_changeset svg, .folder_list__merged_document .icon_changeset svg {
      width: 20px;
      height: 20px;
      padding: 5px;
      fill: #FF4050; }
  .folder_list .icon_view, .folder_list__column .icon_view, .folder_list__merged_document .icon_view {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin-right: 20px; }
    .folder_list .icon_view svg, .folder_list__column .icon_view svg, .folder_list__merged_document .icon_view svg {
      width: 20px;
      height: 20px;
      padding: 5px;
      fill: #888F9A; }
    .folder_list .icon_view.no_padding, .folder_list__column .icon_view.no_padding, .folder_list__merged_document .icon_view.no_padding {
      padding-right: 0; }
    .folder_list .icon_view.waiting, .folder_list__column .icon_view.waiting, .folder_list__merged_document .icon_view.waiting {
      color: #FFB940; }
      .folder_list .icon_view.waiting svg, .folder_list__column .icon_view.waiting svg, .folder_list__merged_document .icon_view.waiting svg {
        fill: #FFB940; }
    .folder_list .icon_view.validated, .folder_list__column .icon_view.validated, .folder_list__merged_document .icon_view.validated, .folder_list .icon_view.uploaded, .folder_list__column .icon_view.uploaded, .folder_list__merged_document .icon_view.uploaded {
      color: #84b723; }
      .folder_list .icon_view.validated svg, .folder_list__column .icon_view.validated svg, .folder_list__merged_document .icon_view.validated svg, .folder_list .icon_view.uploaded svg, .folder_list__column .icon_view.uploaded svg, .folder_list__merged_document .icon_view.uploaded svg {
        fill: #84b723; }
    .folder_list .icon_view.refused, .folder_list__column .icon_view.refused, .folder_list__merged_document .icon_view.refused {
      color: #ef5555; }
      .folder_list .icon_view.refused svg, .folder_list__column .icon_view.refused svg, .folder_list__merged_document .icon_view.refused svg {
        fill: #ef5555; }
  .folder_list p, .folder_list__column p, .folder_list__merged_document p {
    font-size: 13px;
    color: #535963;
    margin-bottom: 5px; }
  .folder_list span, .folder_list__column span, .folder_list__merged_document span {
    display: block;
    font-size: 10px;
    color: #8D949E; }
  .folder_list svg, .folder_list__column svg, .folder_list__merged_document svg {
    width: 25px;
    height: 28px;
    fill: #888F9A; }
    .folder_list svg.blocked, .folder_list__column svg.blocked, .folder_list__merged_document svg.blocked {
      opacity: 0.4;
      cursor: auto; }

.folder_list__column {
  flex-direction: column;
  align-items: stretch; }

.folder_list__merged_document {
  background-color: #F1F2F5; }
  .folder_list__merged_document p {
    font-size: 13px;
    color: #535963;
    font-weight: bold;
    text-transform: uppercase; }

.document-list-table-td {
  height: 40px !important; }
  .document-list-table-td a {
    font-weight: normal !important; }

.documents-list-label {
  font-size: 12px !important;
  cursor: pointer;
  padding: 4px 6px !important; }

.profile_picture {
  min-width: 50px;
  min-height: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-right: 20px;
  border-radius: 100px; }
  .profile_picture img {
    width: 50px; }

.external_signatories_block .external_signatories {
  flex: 1 1 auto; }
  .external_signatories_block .external_signatories .external_signatories_wrapper {
    display: flex;
    gap: 20px; }
  .external_signatories_block .external_signatories .external_signatories_wrapper svg {
    height: 100%; }
  .external_signatories_block .external_signatories .signature_user_action {
    font-size: 10px;
    padding-left: 10px;
    text-decoration: underline;
    color: #535963; }
  .external_signatories_block .external_signatories .signature_user .name_user {
    margin-bottom: 5px; }
    .external_signatories_block .external_signatories .signature_user .name_user span {
      font-size: 13px;
      color: #535963; }
  .external_signatories_block .external_signatories .signature_user .information_user {
    font-size: 10px;
    color: #8D949E; }

.follow_user .user_actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px; }
  .follow_user .user_actions:first-child {
    margin-top: 20px; }
  .follow_user .user_actions .signature_user {
    padding-left: 20px; }
    .follow_user .user_actions .signature_user .name_user {
      display: flex;
      align-items: center;
      margin-bottom: 10px; }
      .follow_user .user_actions .signature_user .name_user svg {
        width: 32px;
        height: 32px;
        padding: 0 10px 0 0px;
        fill: #888F9A; }
      .follow_user .user_actions .signature_user .name_user span {
        font-size: 20px;
        color: #535963;
        font-weight: 600; }
    .follow_user .user_actions .signature_user .signature_user_action {
      font-size: 13px;
      padding-left: 15px;
      text-decoration: underline;
      color: #535963; }
    .follow_user .user_actions .signature_user .signature_user_action:hover {
      cursor: pointer; }
    .follow_user .user_actions .signature_user .information_user {
      font-size: 13px;
      color: #535963; }
  .follow_user .user_actions .registered_mail_error {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #FF4050;
    padding: 0 15px; }
    .follow_user .user_actions .registered_mail_error__bullet-wrapper {
      padding: 0 10px; }
    .follow_user .user_actions .registered_mail_error__bullet {
      width: 10px;
      height: 10px;
      background-color: #FF4050;
      border-radius: 25px; }
    .follow_user .user_actions .registered_mail_error__action {
      cursor: pointer; }
  .follow_user .user_actions .icons_actions {
    display: flex;
    position: relative;
    padding-right: 20px; }
    .follow_user .user_actions .icons_actions a {
      margin-left: 20px; }
    .follow_user .user_actions .icons_actions svg {
      cursor: pointer;
      width: 24px;
      height: 25px;
      fill: #888F9A; }
      .follow_user .user_actions .icons_actions svg.blocked {
        opacity: 0.4;
        cursor: auto; }

.follow_user .follow_line {
  margin: 20px 0;
  overflow: hidden; }
  .follow_user .follow_line .step_line {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75px;
    position: relative;
    background-color: #F1F2F5; }
    .follow_user .follow_line .step_line svg {
      width: 24px;
      height: 25px;
      margin-right: 15px;
      fill: #2A2E34; }
    .follow_user .follow_line .step_line.done {
      background-color: #535963; }
      .follow_user .follow_line .step_line.done svg {
        fill: #FFF; }
      .follow_user .follow_line .step_line.done .step_name p {
        color: #FFF; }
      .follow_user .follow_line .step_line.done::after {
        background-color: #535963; }
    .follow_user .follow_line .step_line.checked {
      background-color: #27AE60; }
      .follow_user .follow_line .step_line.checked svg {
        fill: #FFF; }
      .follow_user .follow_line .step_line.checked .step_name p {
        color: #FFF; }
      .follow_user .follow_line .step_line.checked::after {
        background-color: #27AE60; }
    .follow_user .follow_line .step_line.waiting {
      background-color: #FFB940; }
      .follow_user .follow_line .step_line.waiting svg {
        fill: #FFF; }
      .follow_user .follow_line .step_line.waiting .step_name p {
        color: #FFF; }
      .follow_user .follow_line .step_line.waiting::after {
        background-color: #FFB940; }
    .follow_user .follow_line .step_line::after {
      content: '';
      height: 50px;
      width: 50px;
      position: absolute;
      top: 7px;
      right: -22px;
      z-index: 500;
      transform: rotate(48deg) skewX(30deg) skewY(30deg);
      background-color: #F1F2F5;
      box-shadow: 10px -20px 25px rgba(0, 0, 0, 0.07); }

.step_name p {
  color: #2A2E34;
  font-size: 13px;
  margin-bottom: 5px; }
  .step_name p.date {
    color: #888F9A;
    font-size: 10px;
    margin-bottom: 0; }

.form_dashboard select {
  background-color: #FFF;
  background-image: url(./assets/svg/carret-down.svg);
  background-repeat: no-repeat;
  background-position: 96% 24px;
  border: 1px solid #D9DDE2;
  padding: 15px;
  border-radius: 8px; }

.form_dashboard input {
  background-color: #FFF;
  border: 1px solid #D9DDE2;
  padding: 15px;
  border-radius: 8px; }

.form_dashboard label {
  margin-left: 10px;
  color: #888F9A; }

.tall_modal {
  margin: 30px 10px 30px 10px !important;
  height: calc(100vh - 75px) !important; }
  .tall_modal .fr-box .fr-wrapper {
    height: calc(100vh - 270px) !important; }

.pdf-form__wrapper {
  display: flex;
  flex-direction: row;
  padding: 10px;
  height: calc(100vh - 250px);
  box-sizing: border-box; }

.pdf-form__right {
  width: 100%;
  margin-left: 15px; }
  .pdf-form__right__pdf-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-evenly; }
  .pdf-form__right__pdf-inner {
    min-width: 650px;
    height: calc(100vh - 250px);
    overflow-y: scroll;
    border: 1px solid rgba(0, 0, 0, 0.1); }
    .pdf-form__right__pdf-inner::-webkit-scrollbar {
      width: 7px;
      background: #F1F2F5; }
    .pdf-form__right__pdf-inner::-webkit-scrollbar-thumb {
      background: #535963;
      border-radius: 10px; }
  .pdf-form__right__pdf-navigation {
    background: #535963;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    cursor: pointer;
    user-select: none; }
    .pdf-form__right__pdf-navigation svg {
      width: 15px;
      height: 15px;
      fill: #ffffff; }
    .pdf-form__right__pdf-navigation-innactive {
      background: #535963;
      width: 25px;
      height: 25px;
      border-radius: 5px;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 12px;
      cursor: default;
      opacity: 0.2; }
      .pdf-form__right__pdf-navigation-innactive svg {
        width: 15px;
        height: 15px;
        fill: #ffffff; }

.pdf-form__left {
  display: flex;
  flex-direction: column;
  width: 450px;
  overflow: hidden; }
  .pdf-form__left__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px; }
  .pdf-form__left__fields-wrapper {
    overflow-y: scroll;
    height: 100%; }
    .pdf-form__left__fields-wrapper::-webkit-scrollbar {
      width: 7px;
      background: #F1F2F5; }
    .pdf-form__left__fields-wrapper::-webkit-scrollbar-thumb {
      background: #535963;
      border-radius: 10px; }
  .pdf-form__left__field {
    margin: 10px; }
    .pdf-form__left__field-name {
      font-size: 13px;
      font-weight: bold; }
    .pdf-form__left__field input {
      width: 95%;
      padding: 5px; }

.pdf-form__actions {
  position: absolute;
  width: 100%;
  bottom: 15px;
  left: 0;
  display: flex;
  justify-content: flex-end;
  padding: 0 10px;
  box-sizing: border-box; }
  .pdf-form__actions a {
    margin: 0 0 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row-reverse; }

.button_chat {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -40px;
  left: -100px;
  width: 60px;
  height: 60px;
  padding: 0;
  margin: 0;
  background-color: #FFF;
  box-shadow: 0px 10px 40px -12px black;
  border-radius: 100px;
  border: none;
  outline: none; }
  .button_chat svg {
    fill: #535963;
    width: 31px;
    height: 32px;
    margin: 0; }

.dashboard_chat {
  position: fixed;
  top: 0;
  bottom: 0;
  height: calc(100vh - 140px);
  right: 0px;
  margin-top: 100px;
  width: 380px;
  z-index: 999;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  padding: 20px;
  background-color: #2A2E34;
  opacity: 0.95;
  transition: all 0.3s ease-out; }
  .dashboard_chat.hide {
    right: -420px; }

.title_chat {
  font-size: 20px;
  color: #B9C0C9;
  font-weight: 600;
  padding: 20px 0 20px 0;
  text-align: center; }

.title_participant {
  font-size: 16px;
  color: #B9C0C9;
  font-weight: 600;
  padding: 20px 0 20px 0;
  text-align: center; }

.content_participant {
  display: flex; }

.list_participant {
  display: flex;
  overflow: auto; }
  .list_participant::-webkit-scrollbar {
    width: inherit;
    height: 7px;
    border-radius: 35px; }
  .list_participant::-webkit-scrollbar-track {
    background: #1f2227; }
  .list_participant::-webkit-scrollbar-thumb {
    background: #18191d;
    border-radius: 35px; }
  .list_participant::-webkit-scrollbar-thumb:hover {
    background: #0a0b0c; }

.participant_bubble {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  flex-direction: column;
  width: 80px;
  margin: 5px; }
  .participant_bubble .big_cercled_icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 400px; }
    .participant_bubble .big_cercled_icon .participant_bubble_img {
      width: 60px;
      height: 60px;
      background-size: 60px 60px;
      border-radius: 50%; }
    .participant_bubble .big_cercled_icon svg {
      width: 60px;
      height: 60px;
      fill: #888F9A; }
  .participant_bubble .information_wrapper {
    text-align: center;
    color: #888F9A; }
    .participant_bubble .information_wrapper .information_name {
      font-size: 12px;
      margin-top: 5px;
      margin-bottom: 0; }
    .participant_bubble .information_wrapper .information_function {
      font-size: 10px;
      margin-top: 3px; }

.participant_bubble_adder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 5px;
  height: 60px; }
  .participant_bubble_adder .big_cercled_icon {
    width: 60px;
    height: 60px;
    background-color: #B9C0C9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 400px; }
    .participant_bubble_adder .big_cercled_icon svg {
      width: 30px;
      height: 30px;
      fill: #2A2E34; }

.participant_adder {
  position: relative;
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: -110px;
  transition: all 0.3s;
  transform-origin: center top;
  width: 400px;
  padding: 20px;
  background-color: #D9DDE2;
  border-radius: 10px; }
  .participant_adder.hidden {
    transform: scale(0); }
  .participant_adder::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    top: -10px;
    left: calc(50% - 10px);
    transform: rotate(135deg);
    background-color: #D9DDE2; }

.bloc_msg {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  flex: 1; }
  .bloc_msg .scrolled_msg {
    overflow: scroll; }
  .bloc_msg .msg {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px; }
    .bloc_msg .msg .profile_picture {
      margin-right: 10px;
      margin-bottom: 21px;
      background-color: #FFF;
      display: flex;
      justify-content: center;
      align-items: center; }
      .bloc_msg .msg .profile_picture svg {
        width: 24px;
        height: 25px;
        fill: #B9C0C9; }
    .bloc_msg .msg.my_msg {
      flex-flow: row-reverse; }
      .bloc_msg .msg.my_msg .body_msg {
        background-color: #F1F2F5;
        color: #2A2E34;
        margin: 0 0 10px 20px;
        border-radius: 15px 15px 0 15px; }
      .bloc_msg .msg.my_msg p {
        margin-left: 20px;
        text-align: right;
        margin-right: 0px; }
      .bloc_msg .msg.my_msg .profile_picture {
        margin-right: 0px;
        margin-left: 10px; }

.content_msg {
  width: 100%;
  max-width: 320px; }
  .content_msg .body_msg {
    background-color: #535963;
    border-radius: 15px 15px 15px 0;
    padding: 10px;
    color: #FFF;
    margin: 0 20px 10px 0;
    font-size: 13px; }
    .content_msg .body_msg div {
      width: 100%; }
  .content_msg p {
    font-size: 10px;
    color: #888F9A;
    margin-right: 20px;
    margin-bottom: 0; }

.sender {
  padding: 0px 0 0px 0;
  position: relative; }

.button_chat {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -20px;
  left: -100px;
  width: 60px;
  height: 60px;
  padding: 0;
  margin: 0;
  background-color: #FFF;
  box-shadow: 0px 10px 40px -12px black;
  border-radius: 100px;
  border: none;
  outline: none; }
  .button_chat svg {
    fill: #535963;
    width: 31px;
    height: 32px;
    margin: 0; }
  .button_chat.promoter {
    left: -180px; }

.input_chat {
  height: 50px;
  max-height: 200px;
  overflow-y: scroll;
  width: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border-radius: 5px;
  background-color: white; }
  .input_chat .input_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 0;
    flex-shrink: 0;
    height: 50px;
    width: 50px;
    box-sizing: border-box;
    transition: transform 0.3s; }
    .input_chat .input_icon svg {
      fill: gray;
      transition: fill 0.3s;
      width: 25px; }
    .input_chat .input_icon:hover {
      cursor: pointer; }
      .input_chat .input_icon:hover svg {
        fill: black;
        transform: scale(1.1); }
    .input_chat .input_icon:active svg {
      transform: scale(1.3); }
  .input_chat .input_icon-focus svg {
    fill: black; }
  .input_chat > textarea {
    flex-grow: 1;
    height: 20px;
    width: 100%;
    background-color: transparent;
    outline: none;
    border: none;
    padding: 0 15px;
    line-height: 20px;
    font-size: 13px;
    box-sizing: border-box;
    -moz-appearance: none;
    -webkit-appearance: none;
    resize: none; }
    .input_chat > textarea:focus {
      outline-width: 0; }

@media screen and (max-width: 1024px) {
  .button_chat {
    top: -10px; }
    .button_chat.promoter {
      left: -170px; } }

.dashboard-container {
  position: relative;
  transition: top 1s ease-in-out !important; }
  .dashboard-container__actions {
    display: flex;
    flex-direction: row;
    width: 730px;
    justify-content: space-between; }
    @media (max-width: 767px) {
      .dashboard-container__actions {
        flex-direction: column;
        width: 100%; } }
    .dashboard-container__actions__search {
      width: 300px;
      height: 36px;
      padding: 6px 10px 6px 40px;
      background: #F3F5F7;
      border-radius: 4px;
      box-sizing: border-box;
      position: relative;
      display: flex; }
      @media (max-width: 767px) {
        .dashboard-container__actions__search {
          margin-bottom: 15px; } }
      .dashboard-container__actions__search:before {
        content: "";
        background-image: url(./assets/svg/conversations--search.svg);
        width: 15px;
        height: 15px;
        position: absolute;
        left: 13px;
        top: 10px;
        background-size: 15px 15px; }
      .dashboard-container__actions__search input {
        border: none;
        outline: none;
        font-size: 14px;
        width: 100%;
        background: transparent; }
      .dashboard-container__actions__search ::placeholder {
        color: #2E3844; }
    .dashboard-container__actions__sync {
      float: right; }
      @media (max-width: 767px) {
        .dashboard-container__actions__sync {
          margin-top: 15px;
          float: none; } }
  .dashboard-container__projects {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-right: -.5rem;
    margin-left: -.5rem; }

.dashboard-project__wrapper {
  position: relative;
  height: 370px;
  width: calc(100% / 5 - 1rem - .01px);
  margin: 15px .5rem;
  min-width: 0;
  min-height: 0;
  background-color: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #dadada;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  overflow: hidden; }
  .dashboard-project__wrapper__home {
    height: 268px !important; }
  @media (max-width: 1339px) {
    .dashboard-project__wrapper {
      width: calc(100% / 4 - 1rem - .01px); } }
  @media (max-width: 991px) {
    .dashboard-project__wrapper {
      width: calc(100% / 3 - 1rem - .01px); } }
  @media (max-width: 767px) {
    .dashboard-project__wrapper {
      width: calc(100% / 2 - 1rem - .01px); } }
  @media (max-width: 543px) {
    .dashboard-project__wrapper {
      width: calc(100% / 1 - 1rem - .01px); } }
  .dashboard-project__wrapper:hover .dashboard-project__overlay {
    opacity: 1;
    visibility: visible; }
  .dashboard-project__wrapper:hover .dashboard-project__overlay__controls__icons {
    opacity: 1;
    visibility: visible;
    transform: translateY(-60%); }

.dashboard-project__overlay {
  position: absolute;
  left: 0;
  top: 57px;
  right: 0;
  bottom: 0;
  background: rgba(42, 46, 52, 0.7);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-in-out; }
  .dashboard-project__overlay__controls__icons {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(50%);
    margin: auto;
    transition: all 0.5s ease-in-out; }
    .dashboard-project__overlay__controls__icons svg {
      width: 35px;
      height: 50px; }
  .dashboard-project__overlay__controls__circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: auto; }
  .dashboard-project__overlay__controls__text {
    margin-top: 10px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold; }

.dashboard-project__info {
  padding: 10px;
  height: 57px;
  box-sizing: border-box; }
  .dashboard-project__info__name {
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #535963;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold; }
  .dashboard-project__info__address {
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #888F9A;
    font-size: 12px; }

.dashboard-project__picture__wrapper__perso {
  width: 100%;
  height: 116px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; }

.dashboard-project__picture__wrapper__default {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #adadad1a;
  width: 100%;
  height: 116px; }
  .dashboard-project__picture__wrapper__default svg {
    width: 40px;
    height: 40px;
    fill: #B9C0C9; }

.dashboard-project__batch {
  text-align: center; }
  .dashboard-project__batch.color1, .dashboard-project__batch.color1 > a {
    text-decoration: none;
    color: #33CC66 !important; }
  .dashboard-project__batch.color2, .dashboard-project__batch.color2 a {
    color: #535963 !important;
    text-decoration: none; }
  .dashboard-project__batch.color3, .dashboard-project__batch.color3 > a {
    color: #B9C0C9 !important;
    text-decoration: none; }
  .dashboard-project__batch.color4, .dashboard-project__batch.color4 > a {
    color: orange !important;
    text-decoration: none; }
  .dashboard-project__batch.color5, .dashboard-project__batch.color5 > a {
    color: red !important;
    text-decoration: none; }
  .dashboard-project__batch__wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-sizing: border-box;
    padding: 5px;
    height: 48px;
    border-bottom: 1px solid #D9DDE2; }
  .dashboard-project__batch-separator {
    width: 1px;
    height: 20px;
    background-color: #D9DDE2; }
  .dashboard-project__batch-number {
    font-size: 17px;
    line-height: 19px;
    font-weight: bold;
    margin-top: 3px; }
    .dashboard-project__batch-number svg {
      width: 35px;
      height: 15px; }
  .dashboard-project__batch-label {
    font-size: 10px;
    line-height: 16px;
    font-weight: bold;
    text-transform: uppercase; }

.dashboard-project__chart {
  height: 149px;
  padding: 15px;
  box-sizing: border-box;
  position: relative; }
  .dashboard-project__chart__label {
    position: absolute;
    width: 100px;
    height: 50px;
    top: calc(50% - 25px);
    left: calc(50% - 50px);
    text-align: center; }
    .dashboard-project__chart__label-number {
      font-size: 30px;
      font-weight: bold;
      color: #535963; }
    .dashboard-project__chart__label-text {
      font-size: 13px;
      font-weight: bold;
      color: #888F9A;
      text-transform: uppercase; }

.funding-date-element {
  padding: 10px !important;
  margin-bottom: 0px !important; }
  .funding-date-element label {
    font-size: 13px;
    color: #535963; }
  .funding-date-element .form-control {
    font-size: 13px; }

.investment-modal .tile {
  border-radius: 5px;
  padding: 20px; }

@media screen and (min-width: 576px) {
  .sale_specification_form .funding_block .element_1 {
    width: '25%'; }
  .sale_specification_form .funding_block .element_2 {
    width: '15%'; }
  .sale_specification_form .funding_block .element_3 {
    width: '10%'; }
  .sale_specification_form .funding_block .element_4 {
    width: '20%'; }
  .sale_specification_form .funding_block .element_5 {
    width: '20%'; } }

.sales-statistics__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #FBFBFB; }
  .sales-statistics__container__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    min-height: 355px;
    padding: 30px; }
    .sales-statistics__container__content__bloc {
      width: 30%; }
      .sales-statistics__container__content__bloc__title {
        font-size: 12px;
        font-weight: 200;
        text-transform: uppercase; }
      .sales-statistics__container__content__bloc__body {
        height: 268px;
        margin-top: 8px;
        background-color: #ffffff;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); }
  .sales-statistics__container__action {
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    border-top: 1px solid #D9DDE2;
    border-bottom: 1px solid #D9DDE2;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    user-select: none;
    cursor: pointer; }
    .sales-statistics__container__action svg {
      margin: 0 20px;
      width: 20px;
      height: 20px;
      fill: #888F9A;
      transition: all 1s ease-in-out; }
  @media (max-width: 991px) {
    .sales-statistics__container {
      display: none; } }

.sales-statistics-general__row {
  flex-grow: 1;
  display: flex;
  flex-direction: row; }

.sales-statistics-general__column {
  flex-basis: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center; }

.sales-statistics-general__wrapper {
  display: flex;
  height: 100%;
  flex-direction: column; }

.sales-statistics-general__number {
  font-size: 30px;
  font-weight: bold;
  color: #535963; }

.sales-statistics-general__label {
  font-size: 9px;
  line-height: 12px;
  font-weight: 400;
  color: #535963;
  text-transform: uppercase;
  margin-top: 15px; }

.sales-statistics-alert__tabs {
  display: flex;
  justify-content: center;
  height: 60px;
  border-bottom: 1px solid #F1F2F5;
  align-items: center; }
  .sales-statistics-alert__tabs ul.tabs li {
    display: inline-block; }
    @media (max-width: 991px) {
      .sales-statistics-alert__tabs ul.tabs li {
        display: inline-block; } }

.sales-statistics-alert__wrapper {
  overflow: hidden;
  height: 239px; }
  .sales-statistics-alert__wrapper__cell {
    display: flex;
    align-items: center;
    height: 60px;
    box-sizing: border-box;
    padding: 10px 40px 10px 10px;
    font-size: 12px;
    color: #535963;
    border-bottom: 1px solid #F1F2F5;
    cursor: pointer;
    user-select: none; }
    .sales-statistics-alert__wrapper__cell__title {
      font-weight: bold;
      text-transform: uppercase; }
    .sales-statistics-alert__wrapper__cell__image {
      flex: 0 0 25px; }
    .sales-statistics-alert__wrapper__cell svg {
      width: 15px;
      height: 15px; }
  .sales-statistics-alert__wrapper__no-result {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    height: 159px; }
    .sales-statistics-alert__wrapper__no-result svg {
      fill: #B9C0C9;
      width: 50px;
      height: 50px;
      margin-bottom: 20px; }
    .sales-statistics-alert__wrapper__no-result p {
      font-size: 20px;
      color: #B9C0C9;
      margin-bottom: 0; }

.sales-statistics-alert__actions {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 28px;
  background-color: #FFFFFF;
  border-top: 1px solid #F1F2F5;
  cursor: pointer; }
  .sales-statistics-alert__actions svg {
    width: 15px;
    height: 15px; }
  .sales-statistics-alert__actions--left {
    display: flex;
    flex-grow: 1;
    border-right: 1px solid #F1F2F5;
    justify-content: center;
    align-items: center; }
  .sales-statistics-alert__actions--right {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center; }

.sales-statistics-sale__tabs {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px 20px 0 20px; }
  .sales-statistics-sale__tabs__select {
    margin-top: 10px;
    min-width: 70px;
    padding: 5px 10px;
    color: #535963;
    background-position: 90% 10px;
    background-image: url(./assets/svg/small_arrow_down.svg); }

.sales-statistics-sale__chart {
  position: relative;
  height: 208px;
  padding: 10px 20px 20px 20px;
  box-sizing: border-box; }

@media screen and (max-width: 576px) {
  .invitation-wrapper {
    display: inline !important; } }

.invitation {
  padding: 20px; }
  .invitation__wrapper {
    background: white;
    padding: 5%; }
  .invitation__logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    margin-top: 20px;
    max-width: 300px; }
  .invitation__form label {
    font-weight: bold; }
  .invitation__form__title {
    border-bottom: 1px solid lightgray;
    padding-bottom: 10px; }
    .invitation__form__title svg {
      width: 15px;
      height: 15px;
      padding-right: 20px;
      padding-left: 10px; }

.sale_signature__title {
  margin-top: 30px; }
  .sale_signature__title__content__title {
    border-bottom: 1px solid lightgrey;
    font-size: 22px; }

.sale_signature__list__module {
  width: 50px;
  background: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: border 0.5s;
  color: #535963;
  margin-bottom: 20px; }
  .sale_signature__list__module__selected {
    border: 1px solid #27ae60; }
  .sale_signature__list__module__icon {
    display: inline-block !important;
    width: 100%; }
  .sale_signature__list__module__title {
    display: inline-block !important;
    width: 100%;
    margin-top: 20px;
    white-space: pre-line; }
  .sale_signature__list__module svg {
    width: 80px;
    height: 80px;
    fill: #535963; }

.sale_signature__list__module:hover {
  border: 1px solid #535963;
  transition: border 0.5s; }

.sale_signature__list__disabled {
  color: lightgrey !important;
  cursor: default; }
  .sale_signature__list__disabled svg {
    fill: lightgrey !important; }

.sale_signature__list__disabled:hover {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  transition: none !important; }

.dashboard-project-container__subtitle {
  position: fixed;
  width: calc(100% - 100px);
  height: 60px;
  display: flex;
  align-items: stretch;
  background-color: #FFFFFF;
  border-top: 1px solid #DADDE3;
  border-bottom: 1px solid #DADDE3;
  z-index: 2; }
  @media (max-width: 991px) {
    .dashboard-project-container__subtitle {
      width: 100%; } }
  .dashboard-project-container__subtitle__previous {
    width: 200px;
    border-right: 1px solid #DADDE3;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-sizing: border-box;
    padding: 20px;
    cursor: pointer; }
    .dashboard-project-container__subtitle__previous-icon {
      height: 20px; }
      .dashboard-project-container__subtitle__previous-icon svg {
        width: 20px;
        height: 20px;
        fill: #888F9A; }
    .dashboard-project-container__subtitle__previous-label {
      font-size: 11px;
      color: #888F9A; }
  .dashboard-project-container__subtitle__info {
    display: flex;
    align-items: center;
    padding: 20px; }
    .dashboard-project-container__subtitle__info-name {
      font-size: 13px;
      text-transform: uppercase;
      font-weight: bold; }
    .dashboard-project-container__subtitle__info-address {
      font-size: 11px;
      color: #888F9A;
      margin-left: 5px; }
  .dashboard-project-container__subtitle__button-owner {
    width: 190px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #888F9A;
    padding: 15px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 12px;
    color: #888F9A;
    font-weight: bold; }
  .dashboard-project-container__subtitle__document-list {
    position: relative;
    top: -4px;
    border: none; }
    .dashboard-project-container__subtitle__document-list svg {
      width: 20px;
      height: 20px;
      fill: white;
      top: 4px;
      position: relative;
      right: 5px; }
  .dashboard-project-container__subtitle__actions {
    display: flex;
    align-items: center;
    position: absolute;
    right: 10px; }
    .dashboard-project-container__subtitle__actions td {
      background: white !important; }

.dashboard-project-container__content {
  position: relative;
  transition: top 1s ease-in-out !important; }

.dashboard-project-container__head {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: row; }
  @media (max-width: 991px) {
    .dashboard-project-container__head {
      flex-direction: column; } }
  .dashboard-project-container__head__bloc-left {
    height: 268px;
    background-color: #ffffff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    flex: 2;
    margin-right: 30px; }
    @media (max-width: 991px) {
      .dashboard-project-container__head__bloc-left {
        flex: 1;
        margin-right: 0;
        margin-bottom: 30px; } }
  .dashboard-project-container__head__bloc-right {
    height: 268px;
    background-color: #ffffff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1; }
    @media (max-width: 991px) {
      .dashboard-project-container__head__bloc-right {
        flex: 1; } }

.project-overview__container {
  display: flex;
  flex-direction: row; }

.project-overview__picture__wrapper {
  width: 40%;
  height: 268px; }
  .project-overview__picture__wrapper__perso {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; }
  .project-overview__picture__wrapper__default {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #adadad1a;
    width: 100%;
    height: 100%; }
    .project-overview__picture__wrapper__default svg {
      width: 40px;
      height: 40px;
      fill: #B9C0C9; }

.project-overview__stats__wrapper {
  width: 30%;
  display: flex;
  flex-direction: column;
  padding: 15px;
  box-sizing: border-box;
  border-right: 1px solid #F1F2F5; }

.project-overview__stats__row {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  align-items: center; }
  .project-overview__stats__row.with-border {
    border-bottom: 1px solid #F1F2F5; }
  .project-overview__stats__row.color1 {
    color: #33CC66; }
  .project-overview__stats__row.color2 {
    color: #535963; }
  .project-overview__stats__row.color3 {
    color: #B9C0C9; }

.project-overview__stats__column {
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center; }
  .project-overview__stats__column-text {
    font-size: 13px;
    font-weight: bold; }
  .project-overview__stats__column-number {
    font-size: 20px;
    font-weight: bold; }
  .project-overview__stats__column-percent {
    font-size: 20px;
    font-weight: bold; }
  .project-overview__stats__column-separator {
    width: 2px;
    height: 60px;
    background-color: #F1F2F5; }

.project-overview__chart__wrapper {
  position: relative;
  width: 30%;
  padding: 25px;
  box-sizing: border-box; }

.project-overview__chart__label {
  position: absolute;
  width: 100px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 50px);
  text-align: center; }
  .project-overview__chart__label-number {
    font-size: 30px;
    line-height: 35px;
    font-weight: bold;
    color: #535963; }
  .project-overview__chart__label-text {
    font-size: 13px;
    font-weight: bold;
    color: #888F9A;
    text-transform: uppercase; }

.dashboard-project-tabs__tab {
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
  color: #535963; }
  .dashboard-project-tabs__tab.notLast {
    border-right: 1px solid #F1F2F5; }
  .dashboard-project-tabs__tab.active {
    color: #FFFFFF; }
  .dashboard-project-tabs__tab.noItem {
    color: #D9DDE2; }
  .dashboard-project-tabs__tab-number {
    font-size: 22px;
    font-weight: bold; }
  .dashboard-project-tabs__tab-label {
    margin-top: 10px;
    font-size: 10px;
    text-transform: uppercase;
    text-align: center; }

.dashboard-project-table td {
  height: 60px;
  box-sizing: border-box;
  background-color: #FAFAFA; }

.dashboard-project-table tr:hover {
  background-color: #FFFFFF; }
  .dashboard-project-table tr:hover td {
    color: #000000; }
  .dashboard-project-table tr:hover .consumers {
    color: #000000; }
    .dashboard-project-table tr:hover .consumers svg {
      fill: #000000; }
  .dashboard-project-table tr:hover .commercial {
    color: #000000; }
  .dashboard-project-table tr:hover .status {
    color: #000000; }
    .dashboard-project-table tr:hover .status svg {
      fill: #000000; }
  .dashboard-project-table tr:hover .pull-right svg {
    fill: #000000; }

.dashboard-project-table__button-reservation {
  width: 190px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #33CC66;
  padding: 10px;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 12px;
  color: #33CC66;
  font-weight: bold; }

.dashboard-project-table__button-option {
  width: 190px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #888F9A;
  padding: 10px;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 12px;
  color: #888F9A;
  font-weight: bold; }

.tool-configuration__main {
  width: calc(100% - 430px); }
  @media (max-width: 767px) {
    .tool-configuration__main {
      width: 100%; } }
  .tool-configuration__main__right {
    background: #FFFFFF;
    box-shadow: 0 2px 4px 0 rgba(4, 5, 6, 0.15); }

.tool-configuration__sidebar {
  width: 280px;
  right: 25px;
  top: 190px;
  bottom: 25px;
  box-sizing: border-box;
  padding: 25px;
  position: fixed;
  background: #FFFFFF;
  box-shadow: 0 2px 4px 0 rgba(4, 5, 6, 0.15); }
  @media (max-width: 767px) {
    .tool-configuration__sidebar {
      position: inherit;
      height: 400px;
      margin-top: 25px;
      width: 100%; } }
  .tool-configuration__sidebar .button {
    position: absolute;
    bottom: 0px;
    right: 0px;
    height: 35px;
    display: flex;
    align-items: center;
    background: #27AE60; }
    .tool-configuration__sidebar .button:active {
      background: #27AE60; }
  .tool-configuration__sidebar-wrapper {
    height: 100%;
    position: relative; }

.tool-configuration__sidebar-consumer {
  width: 410px;
  right: 25px;
  top: 185px;
  bottom: 25px;
  box-sizing: border-box;
  position: fixed; }
  @media (max-width: 767px) {
    .tool-configuration__sidebar-consumer {
      position: inherit;
      margin-top: 25px;
      width: 100%; } }
  .tool-configuration__sidebar-consumer__wrapper {
    position: relative;
    height: 100%; }
  .tool-configuration__sidebar-consumer__content {
    background-color: #FFFFFF;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px 0 rgba(4, 5, 6, 0.15);
    padding: 30px;
    box-sizing: border-box; }
    .tool-configuration__sidebar-consumer__content__title {
      margin-bottom: 20px;
      font-size: 16px;
      line-height: 30px;
      text-transform: uppercase;
      color: #4A4A4A; }
    .tool-configuration__sidebar-consumer__content__details {
      margin-bottom: 30px; }
    .tool-configuration__sidebar-consumer__content__cost {
      margin-bottom: 30px; }
    .tool-configuration__sidebar-consumer__content__separator {
      border-bottom: 1px solid #D9DDE2;
      margin-bottom: 30px; }
    .tool-configuration__sidebar-consumer__content__choice {
      display: flex;
      justify-content: space-between;
      margin: 0 50px 10px 50px; }
    .tool-configuration__sidebar-consumer__content__line {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      color: #4A4A4A;
      margin-bottom: 5px; }
    .tool-configuration__sidebar-consumer__content__text {
      font-size: 14px;
      color: #4A4A4A; }
  .tool-configuration__sidebar-consumer__actions {
    display: flex;
    justify-content: space-between;
    width: 100%; }
    .tool-configuration__sidebar-consumer__actions a {
      font-weight: 300 !important;
      margin-top: 30px;
      min-width: 80px;
      text-align: center; }

.tool-setting__container {
  color: #666666;
  padding: 25px;
  font-size: 12px;
  background: white;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid #dadada;
  border-radius: 4px; }

.tool-setting__title {
  margin: 15px 0;
  font-size: 15px;
  color: #535963;
  text-transform: uppercase; }

.tool-setting__button {
  float: right;
  margin-top: 15px; }

.tool-configuration-card {
  padding: 40px; }
  .tool-configuration-card__header {
    display: flex;
    justify-content: space-between; }
  .tool-configuration-card__left {
    display: flex;
    flex-direction: column;
    line-height: 30px;
    margin-bottom: 15px; }
    .tool-configuration-card__left__title {
      font-size: 16px;
      line-height: 22px;
      font-weight: bold;
      color: #4A4A4A; }
    .tool-configuration-card__left__project {
      margin-top: 20px;
      font-size: 14px;
      line-height: 20px;
      color: #535963; }
    .tool-configuration-card__left__batch {
      font-size: 13px; }
  .tool-configuration-card__right {
    text-align: right; }
    .tool-configuration-card__right__logo {
      height: 100px; }
    .tool-configuration-card__right__text {
      font-size: 15px;
      font-weight: bold;
      color: #535963;
      margin-top: 5px; }
  .tool-configuration-card__choice {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    background-color: #FFFFFF;
    padding: 15px;
    font-size: 17px;
    font-weight: bold;
    border-radius: 5px; }
    .tool-configuration-card__choice__adder {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 60px;
      margin: 10px 0;
      border: 1px dashed #979797;
      padding: 15px;
      background-color: #f1f3f5;
      font-size: 17px;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer; }
      .tool-configuration-card__choice__adder svg {
        stroke: #4A4A4A;
        width: 20px;
        padding: 15px; }
    .tool-configuration-card__choice__header {
      display: flex;
      flex-direction: column;
      width: 100%;
      justify-content: center;
      border-bottom: 1px solid #D9DDE2;
      margin-bottom: 30px;
      padding-bottom: 30px;
      text-align: center; }
      .tool-configuration-card__choice__header-title {
        font-size: 16px;
        font-weight: bold;
        padding-bottom: 20px;
        text-transform: uppercase; }
      .tool-configuration-card__choice__header-location {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 16px;
        font-weight: 200; }
    .tool-configuration-card__choice__expanded {
      overflow-y: scroll;
      overflow-x: visible; }
      .tool-configuration-card__choice__expanded__wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; }
    .tool-configuration-card__choice__notice {
      font-size: 14px;
      color: #4A4A4A;
      font-weight: 400; }
  .tool-configuration-card__option__wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: stretch;
    align-items: center;
    min-height: 169px;
    margin: 20px;
    padding-bottom: 30px;
    width: calc(100% / 4 - 40px);
    cursor: pointer; }
    @media (max-width: 991px) {
      .tool-configuration-card__option__wrapper {
        width: calc(100% / 2 - 40px); } }
    @media (max-width: 767px) {
      .tool-configuration-card__option__wrapper {
        width: calc(100% / 2 - 40px); } }
    @media (max-width: 543px) {
      .tool-configuration-card__option__wrapper {
        width: calc(100% - 40px); } }
  .tool-configuration-card__option__wrapper-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    width: 100%;
    font-weight: 200;
    font-size: 14px; }
    .tool-configuration-card__option__wrapper-list svg {
      height: 20px;
      width: 20px;
      cursor: pointer; }
  .tool-configuration-card__option__unity-number {
    display: flex;
    justify-content: space-between;
    max-width: 300px;
    align-items: center;
    margin: 5px 0;
    padding: 0 30px; }
    .tool-configuration-card__option__unity-number-notice {
      font-size: 14px;
      color: #4A4A4A;
      font-weight: 400;
      margin-bottom: 15px; }
    .tool-configuration-card__option__unity-number__room {
      flex: 1;
      font-size: 14px;
      font-weight: 400;
      color: #4A4A4A; }
    .tool-configuration-card__option__unity-number__input {
      flex: 1; }
      .tool-configuration-card__option__unity-number__input input {
        width: 60px;
        font-size: 14px;
        font-weight: 400;
        color: #4A4A4A;
        padding: 0 5px;
        box-sizing: border-box; }
    .tool-configuration-card__option__unity-number__unity {
      flex: 1;
      font-size: 14px;
      font-weight: 400;
      color: #4A4A4A; }
  .tool-configuration-card__option__wrapper-adder-bloc {
    display: flex;
    justify-content: center;
    width: 115px;
    height: 150px;
    margin: 15px; }
  .tool-configuration-card__option__wrapper-adder-list {
    margin: 10px 0;
    font-size: 15px;
    text-decoration: underline;
    width: 150px;
    cursor: pointer; }
  .tool-configuration-card__option__adder {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 85px;
    height: 85px;
    background-color: #f1f3f5;
    border: 1px solid #979797;
    cursor: pointer; }
    .tool-configuration-card__option__adder svg {
      stroke: #4A4A4A;
      width: 20px;
      height: 20px;
      padding: 15px; }
  .tool-configuration-card__option__picture {
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
    overflow: hidden; }
    .tool-configuration-card__option__picture-tooltip {
      position: absolute;
      width: 50px;
      height: 50px;
      background-color: #F1F2F5;
      top: -25px;
      right: -25px;
      border-radius: 50%; }
      .tool-configuration-card__option__picture-tooltip-icon {
        position: absolute;
        left: 7px;
        bottom: 2px; }
        .tool-configuration-card__option__picture-tooltip-icon svg {
          height: 15px;
          width: 15px;
          fill: #4A4A4A; }
    .tool-configuration-card__option__picture__controls {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      background: rgba(42, 46, 52, 0.6);
      text-align: center;
      opacity: 0;
      visibility: hidden;
      transition: all .3s ease-in-out; }
      .tool-configuration-card__option__picture__controls__icons {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        visibility: visible;
        transform: translateY(-40%);
        margin: auto;
        transition: all .5s ease-in-out; }
        .tool-configuration-card__option__picture__controls__icons svg {
          width: 50px;
          height: 50px; }
    .tool-configuration-card__option__picture:hover .tool-configuration-card__option__picture__controls {
      opacity: 1;
      visibility: visible; }
  .tool-configuration-card__option__text {
    padding-top: 10px;
    width: 100%; }
    .tool-configuration-card__option__text__brand {
      font-size: 14px;
      font-weight: 300; }
    .tool-configuration-card__option__text__variety {
      font-size: 13px;
      font-weight: 300; }
    .tool-configuration-card__option__text__null-item {
      margin-top: 25px;
      font-size: 13px;
      font-weight: 300; }
    .tool-configuration-card__option__text__color {
      font-size: 13px;
      font-weight: 300; }
    .tool-configuration-card__option__text__measurement {
      font-size: 13px;
      font-weight: 300; }
    .tool-configuration-card__option__text__price {
      font-size: 13px;
      font-weight: 300; }
    .tool-configuration-card__option__text__not-default {
      font-size: 10px;
      font-weight: 500;
      text-decoration: underline;
      cursor: pointer; }
    .tool-configuration-card__option__text__default {
      font-size: 10px;
      font-weight: 600;
      line-height: 20px; }
  .tool-configuration-card__option__checkbox {
    position: absolute;
    bottom: 0; }
  .tool-configuration-card__autocomplete-bloc {
    top: 125px; }
  .tool-configuration-card__autocomplete-list {
    top: 55px;
    left: -60px; }
  .tool-configuration-card__autocomplete-bloc, .tool-configuration-card__autocomplete-list {
    position: absolute;
    z-index: 1;
    transition: all 0.3s;
    transform-origin: center top;
    width: 250px;
    padding: 15px;
    background-color: #D9DDE2;
    border-radius: 10px; }
    .tool-configuration-card__autocomplete-bloc::before, .tool-configuration-card__autocomplete-list::before {
      content: '';
      position: absolute;
      height: 20px;
      width: 20px;
      top: -10px;
      left: calc(50% - 10px);
      transform: rotate(135deg);
      background-color: #D9DDE2; }
    .tool-configuration-card__autocomplete-bloc.hidden, .tool-configuration-card__autocomplete-list.hidden {
      transform: scale(0); }
    .tool-configuration-card__autocomplete-bloc__wrapper, .tool-configuration-card__autocomplete-list__wrapper {
      position: relative; }
      .tool-configuration-card__autocomplete-bloc__wrapper::before, .tool-configuration-card__autocomplete-list__wrapper::before {
        content: "";
        background-image: url(./assets/svg/conversations--search.svg);
        width: 15px;
        height: 15px;
        position: absolute;
        left: 13px;
        top: 10px;
        background-size: 15px 15px; }
  .tool-configuration-card__room__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: 20px; }
  .tool-configuration-card__room__picto {
    margin-right: 10px; }
    .tool-configuration-card__room__picto svg {
      width: 20px;
      height: 20px;
      fill: #535963;
      vertical-align: middle; }
  .tool-configuration-card__room__name {
    font-size: 12px; }
  .tool-configuration-card__modal {
    padding: 0 !important; }
    .tool-configuration-card__modal__inner {
      display: flex;
      flex-direction: row;
      min-height: 400px;
      border-top: 1px solid #D9DDE2; }
      .tool-configuration-card__modal__inner__left {
        flex: 1;
        background-color: #F1F2F5;
        border-right: 1px solid #D9DDE2; }
      .tool-configuration-card__modal__inner__right {
        flex: 2;
        background-color: #FFFFFF; }
    .tool-configuration-card__modal__description {
      padding: 30px 50px 10px 50px; }
      .tool-configuration-card__modal__description__title {
        font-weight: bold; }
    .tool-configuration-card__modal__settings {
      padding: 30px 20px; }
      .tool-configuration-card__modal__settings__title {
        font-weight: bold; }
    .tool-configuration-card__modal__title {
      margin-top: 20px;
      margin-bottom: 20px !important;
      text-align: left !important;
      padding: 0 20px; }
    .tool-configuration-card__modal__carousel {
      padding: 10px 50px 30px 50px;
      width: 350px; }

.tool-selection-card__label {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-align: right;
  padding: 0 15px;
  cursor: pointer; }

.tool-selection-card__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px 10px 0;
  flex-direction: row;
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(226, 226, 226, 0.5); }

.tool-selection-card__title {
  font-size: 14px;
  margin-right: 10px; }

.tool-selection-card__title-wrapper {
  display: flex;
  flex-direction: column; }

.tool-selection-card__actions {
  display: flex; }
  .tool-selection-card__actions svg {
    stroke: #4A4A4A;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    cursor: pointer; }

.tool-home-consumer__wrapper {
  display: flex;
  flex-direction: row; }
  @media (max-width: 767px) {
    .tool-home-consumer__wrapper {
      flex-direction: column; } }

.tool-home-consumer__left {
  flex: 1;
  height: calc(100vh - 150px);
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  box-shadow: 0 2px 4px 0 rgba(4, 5, 6, 0.15);
  margin-right: 15px; }
  @media (max-width: 991px) {
    .tool-home-consumer__left {
      height: calc(100vh - 120px); } }
  @media (max-width: 767px) {
    .tool-home-consumer__left {
      margin-right: 0;
      margin-bottom: 30px; } }

.tool-home-consumer__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: 15px; }
  @media (max-width: 767px) {
    .tool-home-consumer__right {
      margin-left: 0; } }

.tool-home-consumer__title {
  display: flex;
  height: 80px;
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #535963;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase; }

.tool-home-consumer__picture {
  text-align: center; }
  .tool-home-consumer__picture img {
    width: 100%;
    max-width: 600px; }

.tool-home-consumer__text {
  font-size: 14px;
  color: #535963;
  margin: 50px 10px;
  padding: 0 40px;
  flex: 1;
  overflow-y: scroll; }
  .tool-home-consumer__text::-webkit-scrollbar {
    width: 5px;
    background: transparent; }
  .tool-home-consumer__text::-webkit-scrollbar-thumb {
    background: #F1F2F5;
    border-radius: 10px; }
  @media (max-width: 767px) {
    .tool-home-consumer__text {
      margin: 15px; } }

.tool-home-consumer__advance-notice__item {
  margin: 5px 0; }

.tool-home-consumer__action {
  background: #FFFFFF;
  box-shadow: 0 2px 4px 0 rgba(4, 5, 6, 0.15);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px; }
  .tool-home-consumer__action-title {
    color: #535963;
    font-size: 17px;
    font-weight: bold; }
  .tool-home-consumer__action-logo {
    background: #F1F2F5;
    border-radius: 50%;
    width: 82px;
    height: 82px;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 15px; }
    .tool-home-consumer__action-logo svg {
      width: 100%;
      height: 100%;
      fill: #535963; }
  .tool-home-consumer__action-in-progress {
    color: #535963;
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 20px; }
    .tool-home-consumer__action-in-progress li {
      cursor: pointer;
      margin: 5px 0; }
  .tool-home-consumer__action-button {
    height: 34px;
    min-width: 190px;
    font-size: 12px; }
    .tool-home-consumer__action-button svg {
      width: 25px;
      height: 25px;
      fill: #535963; }
    .tool-home-consumer__action-button:hover {
      opacity: 1; }
    .tool-home-consumer__action-button:focus {
      outline: 0; }
    .tool-home-consumer__action-button.inactive {
      opacity: 0.2; }
    @media (max-width: 767px) {
      .tool-home-consumer__action-button {
        width: 100%; } }

.tool-synthesis__pdf-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center; }
  @media (max-width: 767px) {
    .tool-synthesis__pdf-wrapper {
      display: none; } }

.tool-synthesis__pdf-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 600px;
  min-height: 850px;
  box-shadow: 0 2px 4px 0 rgba(4, 5, 6, 0.15); }

.tool-synthesis__pdf-navigation {
  background: #535963;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  cursor: pointer;
  user-select: none; }
  .tool-synthesis__pdf-navigation-innactive {
    background: #535963;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    cursor: default;
    opacity: 0.2; }

.tool-synthesis__actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  width: 100%; }
  .tool-synthesis__actions a {
    font-weight: 300 !important;
    min-width: 80px;
    text-align: center;
    margin-left: 15px; }
  @media (max-width: 767px) {
    .tool-synthesis__actions {
      justify-content: center; } }

.tool-configuration-breadcrumb {
  position: fixed;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  height: 60px;
  width: 100%;
  z-index: 1;
  border-top: 1px solid #D9DDE2;
  border-bottom: 1px solid #D9DDE2;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0 25px; }
  .tool-configuration-breadcrumb__element {
    margin-right: 15px;
    font-size: 12px;
    color: #888F9A;
    cursor: pointer;
    user-select: none; }
    .tool-configuration-breadcrumb__element svg {
      transform: rotate(180deg);
      margin-left: 15px;
      width: 12px;
      height: 12px;
      vertical-align: middle;
      fill: #888F9A; }

.tool-configuration-promoter__main {
  width: calc(100% - 300px); }
  @media (max-width: 767px) {
    .tool-configuration-promoter__main {
      width: 100%; } }
  .tool-configuration-promoter__main__left {
    padding-right: 20px !important;
    box-sizing: border-box;
    max-width: 350px; }
  .tool-configuration-promoter__main__right {
    background: #FFFFFF;
    box-shadow: 0 2px 4px 0 rgba(4, 5, 6, 0.15); }

.tool-configuration-promoter__sidebar {
  width: 280px;
  right: 25px;
  top: 190px;
  bottom: 25px;
  box-sizing: border-box;
  padding: 25px;
  position: fixed;
  background: #FFFFFF;
  box-shadow: 0 2px 4px 0 rgba(4, 5, 6, 0.15); }
  @media (max-width: 767px) {
    .tool-configuration-promoter__sidebar {
      position: inherit;
      height: 400px;
      margin-top: 25px;
      width: 100%; } }
  .tool-configuration-promoter__sidebar .button {
    position: absolute;
    bottom: 0px;
    right: 0px;
    height: 35px;
    display: flex;
    align-items: center;
    background: #27AE60; }
    .tool-configuration-promoter__sidebar .button:active {
      background: #27AE60; }
  .tool-configuration-promoter__sidebar-wrapper {
    height: 100%;
    position: relative; }

.tool-setting__title {
  margin-bottom: 15px;
  font-size: 15px;
  color: #535963; }

.tool-setting__button {
  float: right;
  margin-top: 15px; }

.tool-configuration-card-promoter {
  padding: 25px; }
  .tool-configuration-card-promoter__logo {
    max-width: 250px; }
  .tool-configuration-card-promoter__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 30px;
    margin-bottom: 15px; }
    .tool-configuration-card-promoter__info__title {
      font-size: 17px;
      font-weight: bold;
      color: #4A4A4A; }
    .tool-configuration-card-promoter__info__project {
      font-size: 13px;
      line-height: 20px; }
    .tool-configuration-card-promoter__info__batch {
      font-size: 13px; }
  .tool-configuration-card-promoter__choice {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    border: 1px dashed #979797;
    background-color: #FFFFFF;
    padding: 15px;
    font-size: 17px;
    font-weight: bold;
    border-radius: 5px; }
    .tool-configuration-card-promoter__choice__adder {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 20px;
      margin: 10px 0;
      border: 1px dashed #979797;
      padding: 10px;
      background-color: #f1f3f5;
      font-size: 17px;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer; }
      .tool-configuration-card-promoter__choice__adder svg {
        stroke: #4A4A4A;
        width: 20px;
        padding: 15px; }
    .tool-configuration-card-promoter__choice__title {
      display: flex;
      justify-content: space-between;
      width: 100%; }
      .tool-configuration-card-promoter__choice__title__infos-title {
        font-size: 17px;
        font-weight: bold; }
      .tool-configuration-card-promoter__choice__title__infos-location {
        font-size: 17px;
        font-weight: 200; }
      .tool-configuration-card-promoter__choice__title__actions svg {
        stroke: #4A4A4A;
        width: 20px;
        height: 20px;
        cursor: pointer;
        margin-left: 10px; }
    .tool-configuration-card-promoter__choice__expanded {
      transition: max-height 1s ease;
      overflow-y: scroll;
      overflow-x: visible; }
      .tool-configuration-card-promoter__choice__expanded__wrapper {
        display: flex;
        position: relative;
        flex-wrap: wrap;
        width: 100%; }
  .tool-configuration-card-promoter__option__wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: stretch;
    align-items: center;
    width: 115px;
    min-height: 160px;
    margin: 15px; }
  .tool-configuration-card-promoter__option__wrapper-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    width: 100%;
    font-weight: 200;
    font-size: 15px;
    margin-bottom: 10px; }
    .tool-configuration-card-promoter__option__wrapper-list svg {
      height: 20px;
      width: 20px;
      cursor: pointer; }
  .tool-configuration-card-promoter__option__unity-number {
    display: flex;
    justify-content: space-between;
    max-width: 300px;
    align-items: center;
    margin: 5px 0; }
    .tool-configuration-card-promoter__option__unity-number__room {
      flex: 1;
      font-size: 15px;
      font-weight: 400; }
    .tool-configuration-card-promoter__option__unity-number__input {
      flex: 1; }
      .tool-configuration-card-promoter__option__unity-number__input input {
        width: 60px;
        font-size: 15px;
        font-weight: 400; }
    .tool-configuration-card-promoter__option__unity-number__unity {
      flex: 1;
      font-size: 15px;
      font-weight: 400; }
  .tool-configuration-card-promoter__option__wrapper-adder-bloc {
    display: flex;
    justify-content: center;
    width: 115px;
    height: 150px;
    margin: 15px; }
  .tool-configuration-card-promoter__option__wrapper-adder-list {
    margin: 10px 0;
    font-size: 15px;
    text-decoration: underline;
    width: 150px;
    cursor: pointer; }
  .tool-configuration-card-promoter__option__adder {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 85px;
    height: 85px;
    background-color: #f1f3f5;
    border: 1px solid #979797;
    cursor: pointer; }
    .tool-configuration-card-promoter__option__adder svg {
      stroke: #4A4A4A;
      width: 20px;
      height: 20px;
      padding: 15px; }
  .tool-configuration-card-promoter__option__picture {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 85px;
    height: 85px;
    background-color: #f1f3f5; }
    .tool-configuration-card-promoter__option__picture__controls {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      background: rgba(42, 46, 52, 0.6);
      text-align: center;
      opacity: 0;
      visibility: hidden;
      transition: all .3s ease-in-out; }
      .tool-configuration-card-promoter__option__picture__controls__icons {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        visibility: visible;
        transform: translateY(-40%);
        margin: auto;
        transition: all .5s ease-in-out; }
        .tool-configuration-card-promoter__option__picture__controls__icons svg {
          width: 50px;
          height: 50px; }
    .tool-configuration-card-promoter__option__picture:hover .tool-configuration-card-promoter__option__picture__controls {
      opacity: 1;
      visibility: visible; }
  .tool-configuration-card-promoter__option__text {
    padding-top: 10px;
    text-align: center; }
    .tool-configuration-card-promoter__option__text__brand {
      font-size: 13px;
      font-weight: bold; }
    .tool-configuration-card-promoter__option__text__variety {
      font-size: 13px;
      font-weight: 300; }
    .tool-configuration-card-promoter__option__text__null-item {
      font-size: 13px;
      font-weight: 300; }
    .tool-configuration-card-promoter__option__text__color {
      font-size: 13px;
      font-weight: 300; }
    .tool-configuration-card-promoter__option__text__measurement {
      font-size: 13px;
      font-weight: 300; }
    .tool-configuration-card-promoter__option__text__not-default {
      font-size: 10px;
      font-weight: 500;
      text-decoration: underline;
      cursor: pointer; }
    .tool-configuration-card-promoter__option__text__default {
      font-size: 10px;
      font-weight: 600;
      line-height: 20px; }
  .tool-configuration-card-promoter__autocomplete-bloc {
    top: 125px; }
  .tool-configuration-card-promoter__autocomplete-list {
    top: 55px;
    left: -60px; }
  .tool-configuration-card-promoter__autocomplete-bloc, .tool-configuration-card-promoter__autocomplete-list {
    position: absolute;
    z-index: 1;
    transition: all 0.3s;
    transform-origin: center top;
    width: 250px;
    padding: 15px;
    background-color: #D9DDE2;
    border-radius: 10px; }
    .tool-configuration-card-promoter__autocomplete-bloc::before, .tool-configuration-card-promoter__autocomplete-list::before {
      content: '';
      position: absolute;
      height: 20px;
      width: 20px;
      top: -10px;
      left: calc(50% - 10px);
      transform: rotate(135deg);
      background-color: #D9DDE2; }
    .tool-configuration-card-promoter__autocomplete-bloc.hidden, .tool-configuration-card-promoter__autocomplete-list.hidden {
      transform: scale(0); }
    .tool-configuration-card-promoter__autocomplete-bloc__wrapper, .tool-configuration-card-promoter__autocomplete-list__wrapper {
      position: relative; }
      .tool-configuration-card-promoter__autocomplete-bloc__wrapper::before, .tool-configuration-card-promoter__autocomplete-list__wrapper::before {
        content: "";
        background-image: url(./assets/svg/conversations--search.svg);
        width: 15px;
        height: 15px;
        position: absolute;
        left: 13px;
        top: 10px;
        background-size: 15px 15px; }

.tool-selection-card__label {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-align: right;
  padding: 0 15px;
  cursor: pointer; }

.tool-selection-card__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px 10px 0;
  flex-direction: row; }

.tool-selection-card__title {
  font-size: 14px;
  cursor: pointer; }

.tool-selection-card__actions {
  display: flex; }
  .tool-selection-card__actions svg {
    stroke: #4A4A4A;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    cursor: pointer; }

.Select-value-icon {
  position: relative !important;
  visibility: visible !important; }

.tool-answer__batch {
  margin: 15px 0;
  padding-bottom: 10px;
  border-bottom: 1px dashed #535963;
  display: flex;
  justify-content: space-between; }
  .tool-answer__batch__title {
    color: #535963;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px; }
  .tool-answer__batch__user {
    margin-left: 10px;
    color: #535963;
    font-size: 14px; }

.event-wrapper {
  margin-left: 10px;
  margin-right: 10px; }

.event-list__landing-page {
  background: #fafafa;
  min-height: 50px;
  box-shadow: 0 1px 2px #d1d1d1;
  padding-top: 90px;
  padding-left: 20px !important;
  padding-right: 20px !important;
  padding-bottom: 120px;
  text-align: center;
  color: #5F636C; }
  .event-list__landing-page svg {
    width: 500px;
    height: 300px; }

.event-list .page-content .search-bar button {
  padding: 11px 20px 11px 20px;
  font-weight: 600;
  font-size: 13px;
  float: right;
  margin-bottom: 10px; }

.event .right-bar {
  background: #fafafa;
  min-height: 50px;
  box-shadow: 0 1px 2px #d1d1d1;
  padding-bottom: 30px;
  text-align: center;
  margin-left: 20px; }
  .event .right-bar__chart__label {
    position: relative;
    top: 90px;
    font-size: 25px; }
  .event .right-bar__tabs {
    padding: 20px; }
    .event .right-bar__tabs li {
      font-size: 14px !important; }
    @media screen and (max-width: 1054px) {
      .event .right-bar__tabs .tabs-auto .tab-link {
        display: block !important; } }
    @media screen and (min-width: 1055px) and (max-width: 1215px) {
      .event .right-bar__tabs .tabs-auto .tab-link {
        padding: 0px; } }
  .event .right-bar .answered {
    text-align: left;
    line-height: 30px;
    font-size: 14px; }
    .event .right-bar .answered svg {
      width: 15px;
      height: 15px; }
  .event .right-bar .not_answered {
    text-align: left;
    line-height: 15px;
    font-size: 11px; }
    .event .right-bar .not_answered svg {
      width: 15px;
      height: 15px;
      cursor: pointer; }

.event .left-bar {
  background: #fafafa;
  min-height: 50px;
  line-height: 40px;
  box-shadow: 0 1px 2px #d1d1d1;
  padding-bottom: 30px;
  text-align: center;
  margin-right: 20px; }
  .event .left-bar__navigation {
    color: #E4E4E4;
    padding-top: 13px;
    padding-left: 20px !important;
    padding-right: 20px !important; }
    .event .left-bar__navigation__month {
      color: #5F636C;
      text-align: left !important;
      text-transform: capitalize; }
    .event .left-bar__navigation__arrow {
      color: #5F636C;
      cursor: pointer; }
    .event .left-bar__navigation__arrow:hover {
      color: #32CB66; }
  .event .left-bar__calendar {
    color: #E4E4E4;
    margin-bottom: 30px;
    padding-top: 13px;
    padding-left: 20px !important;
    padding-right: 20px !important; }
    .event .left-bar__calendar__row__day {
      font-size: 13px; }
      .event .left-bar__calendar__row__day__enabled {
        color: #5F636C !important; }
      .event .left-bar__calendar__row__day .active {
        color: white !important;
        z-index: 1;
        width: 30px;
        height: 30px;
        background: #32CB66;
        display: inline-block;
        border-radius: 20px;
        line-height: 30px; }
  .event .left-bar__separator {
    padding-left: 20px;
    padding-right: 20px; }
    .event .left-bar__separator__back {
      height: 1px;
      background: #E4E4E7;
      margin-bottom: 30px; }
  .event .left-bar__filters {
    border-bottom: 1px solid #E4E4E7; }
    .event .left-bar__filters__title {
      color: #5F636C;
      padding-left: 20px; }
    .event .left-bar__filters__label {
      height: 50px;
      text-align: left;
      padding-right: 15px;
      line-height: 50px;
      color: #5F636C;
      border-bottom: 1px solid #E4E4E7;
      font-size: 14px;
      cursor: pointer; }
      .event .left-bar__filters__label .label-photo {
        width: 25%; }
      .event .left-bar__filters__label .label-color {
        text-align: center;
        width: 5%; }
        .event .left-bar__filters__label .label-color .dot {
          position: relative;
          top: 40%;
          left: 50%; }
      .event .left-bar__filters__label .label-name {
        width: 55%;
        font-size: 11px; }
      .event .left-bar__filters__label .label-export {
        width: 10%;
        font-size: 11px;
        position: relative;
        top: 7px; }
        .event .left-bar__filters__label .label-export a {
          color: #5F636C !important; }
      .event .left-bar__filters__label .label-back {
        width: 2%; }
        .event .left-bar__filters__label .label-back__active {
          background-color: #32CB66; }
      .event .left-bar__filters__label__active {
        background-color: #32CB66 !important;
        color: white !important; }

.event .dot {
  content: '';
  width: 8px;
  height: 8px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px; }

.event .dot-color-1 {
  background-color: #c339f7;
  color: white; }

.event .dot-color-2 {
  background-color: #00E5FC;
  color: white; }

.event .dot-color-3 {
  background-color: #FE7B00;
  color: black; }

.event .dot-color-4 {
  background-color: #d6ad00;
  color: black; }

.event .dot-color-5 {
  background-color: #edbaff;
  color: black; }

.event .dot-color-6 {
  background-color: #1f1f8c;
  color: white; }

.event .dot-color-7 {
  background-color: #7c1b06;
  color: white; }

.event .dot-color-8 {
  background-color: #5b501d;
  color: white; }

.event .dot-color-9 {
  background-color: #dceb3c;
  color: black; }

.event .dot-color-10 {
  background-color: #de1e97;
  color: white; }

.event .dot-color-11 {
  background-color: #5e6150;
  color: white; }

.event .dot-color-12 {
  background-color: #9486bd;
  color: black; }

.event .main-calendar {
  background: #fafafa;
  min-height: 50px;
  line-height: 50px;
  box-shadow: 0 1px 2px #d1d1d1;
  padding-top: 13px;
  padding-left: 20px !important;
  padding-right: 20px !important;
  padding-bottom: 10px;
  text-align: center;
  color: #5F636C; }
  @media screen and (max-width: 1000px) {
    .event .main-calendar {
      max-width: 800px; } }
  @media screen and (min-width: 1001px) and (max-width: 1100px) {
    .event .main-calendar {
      max-width: 1000px; } }
  @media screen and (min-width: 1101px) and (max-width: 1200px) {
    .event .main-calendar {
      max-width: 1200px; } }
  @media screen and (min-width: 1201px) {
    .event .main-calendar {
      max-width: 1500px; } }
  .event .main-calendar__header {
    text-align: left;
    border-bottom: 1px solid #E4E4E7;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold; }
    .event .main-calendar__header__title {
      width: 50%; }
    .event .main-calendar__header__nav-dots {
      width: 50%;
      text-align: right;
      line-height: 25px; }
  .event .main-calendar__days {
    border-bottom: 1px solid #E4E4E7; }
    .event .main-calendar__days__arrow {
      width: 1% !important;
      line-height: 70px;
      cursor: pointer; }
    .event .main-calendar__days__arrow:hover {
      color: #32CB66; }
    .event .main-calendar__days__day {
      width: 14% !important;
      margin: auto; }
      .event .main-calendar__days__day__text {
        font-size: 10px;
        color: #ADADAF;
        display: block;
        height: 14px;
        margin-bottom: 5px; }
  .event .main-calendar__slots {
    height: 70px; }
    .event .main-calendar__slots__out {
      width: 1% !important; }
    .event .main-calendar__slots__slot {
      width: 14% !important;
      height: 50px;
      margin: auto;
      float: left; }
      .event .main-calendar__slots__slot .dots {
        position: relative;
        bottom: 5px;
        margin: auto;
        width: 35%; }
        .event .main-calendar__slots__slot .dots .dot {
          margin-right: auto;
          margin-left: auto; }
      .event .main-calendar__slots__slot .slot {
        width: 60px;
        height: 30px;
        margin-top: 10px;
        line-height: 30px;
        margin-left: auto;
        margin-right: auto;
        -moz-border-radius: 7px;
        -webkit-border-radius: 7px;
        border-radius: 7px; }
      .event .main-calendar__slots__slot .free {
        background: #F1F2F6;
        border: 1px solid #F1F2F6; }
      .event .main-calendar__slots__slot .free:hover {
        color: #32CB66;
        cursor: pointer; }
      .event .main-calendar__slots__slot .full {
        border: 1px solid #E4E4E7; }
      .event .main-calendar__slots__slot .full:hover {
        color: #32CB66;
        cursor: pointer; }
      .event .main-calendar__slots__slot .disabled {
        opacity: 0.2;
        border: 1px solid #fafafa; }
      .event .main-calendar__slots__slot .disabledSelectable:hover {
        color: #32CB66;
        cursor: pointer; }
      .event .main-calendar__slots__slot .selectable {
        border: 1px dashed;
        cursor: pointer; }
      .event .main-calendar__slots__slot .selectable:hover {
        border-color: #32CB66; }

.consumer-calendar {
  line-height: 50px; }
  .consumer-calendar__hide {
    display: none !important; }
  .consumer-calendar__days {
    border-bottom: 1px solid #E4E4E7; }
    .consumer-calendar__days__arrow {
      width: 2% !important;
      line-height: 70px;
      cursor: pointer; }
      @media screen and (max-width: 576px) {
        .consumer-calendar__days__arrow {
          float: left; } }
    .consumer-calendar__days__arrow:hover {
      color: #32CB66; }
    .consumer-calendar__days__day {
      width: 14% !important;
      margin: auto; }
      @media screen and (max-width: 576px) {
        .consumer-calendar__days__day {
          float: left; } }
      .consumer-calendar__days__day__text {
        font-size: 10px;
        color: #ADADAF;
        display: block;
        height: 14px;
        margin-bottom: 5px; }
  @media screen and (max-width: 576px) {
    .consumer-calendar__days-slide {
      float: left; } }
  @media screen and (min-width: 576px) {
    .consumer-calendar__slots {
      height: 50px; } }
  .consumer-calendar__slots__slot {
    width: 14% !important;
    height: 50px;
    margin: auto; }
    @media screen and (max-width: 576px) {
      .consumer-calendar__slots__slot {
        float: left; } }
    .consumer-calendar__slots__slot .slot {
      height: 30px;
      margin-top: 10px;
      line-height: 30px;
      margin-left: auto;
      margin-right: auto;
      -moz-border-radius: 7px;
      -webkit-border-radius: 7px;
      border-radius: 7px; }
      @media screen and (min-width: 576px) {
        .consumer-calendar__slots__slot .slot {
          width: 70px; } }
    .consumer-calendar__slots__slot .free {
      background: #F1F2F6;
      border: 1px solid #F1F2F6;
      cursor: pointer; }
    .consumer-calendar__slots__slot .free:hover {
      color: #32CB66; }
    .consumer-calendar__slots__slot .full {
      opacity: 0.2;
      border: 1px solid #fafafa; }
    .consumer-calendar__slots__slot .selected {
      color: white;
      background: #32CB66; }
  .consumer-calendar__fullview {
    height: 20px;
    line-height: 20px;
    font-size: 14px; }
  .consumer-calendar__fullview:hover {
    color: #32CB66;
    cursor: pointer; }

.event-form .left-form, .event-modal .left-form, .event .left-form {
  padding-left: 0px;
  padding-right: 40px;
  border-right: 1px solid #f2f2f4; }

.event-form .right-form, .event-modal .right-form, .event .right-form {
  padding-left: 40px;
  padding-right: 0px; }

.event-form .separator, .event-modal .separator, .event .separator {
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #f2f2f4;
  margin-top: 10px;
  margin-bottom: 20px; }

.event-form__warning, .event-modal__warning, .event__warning {
  color: red;
  font-weight: 500; }

.event-consumer {
  padding: 20px !important;
  font-size: 14px; }
  .event-consumer__fullview {
    text-align: center; }
  .event-consumer__slot-warning {
    text-align: left;
    color: red; }
  .event-consumer__slot-success {
    color: green; }
  .event-consumer__totake-content {
    margin-top: 20px; }
  .event-consumer__totake-content span {
    text-align: left;
    display: block;
    line-height: 25px; }
  .event-consumer__programmed-content {
    font-size: 14px;
    text-align: left; }
  .event-consumer__programmed-content span {
    text-align: left;
    display: block;
    line-height: 20px; }
  .event-consumer__step-users, .event-consumer__step-calendar, .event-consumer__step-confirmation, .event-consumer__step-confirmation-ok, .event-consumer__step-deletion, .event-consumer__step-deletion-ok {
    padding-top: 20px; }
  .event-consumer .modal__header__title {
    margin-left: 10px;
    line-height: 25px; }

.statusButtons button {
  padding: 10px;
  min-width: 100px;
  background: #FBFAFB;
  color: #535963;
  text-transform: uppercase;
  border: 1px solid #DCDDDF;
  border-radius: 0px; }

.statusButtons .open {
  border-top-left-radius: 5px 5px !important;
  border-bottom-left-radius: 5px 5px !important; }
  .statusButtons .open__active {
    background: #32CC66 !important;
    color: white; }

.statusButtons .close {
  border-top-right-radius: 5px 5px !important;
  border-bottom-right-radius: 5px 5px !important; }
  .statusButtons .close__active {
    background: #535963 !important;
    color: white !important; }

.rc-time-picker-input {
  display: block;
  width: 100%;
  padding: 7px 13px;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
  border-radius: 4px;
  border: 1px solid #dadada;
  background: #f3f3f3;
  transition: all .2s ease-in-out; }

.hidden {
  visibility: hidden; }

.faq__search {
  width: 100%;
  height: 50px;
  padding: 12px 10px 6px 40px;
  background: white;
  border-radius: 3px;
  border: 1px solid #DADDE3;
  box-sizing: border-box;
  position: relative; }
  .faq__search:before {
    content: "";
    background-image: url(./assets/svg/conversations--search.svg);
    width: 15px;
    height: 15px;
    position: absolute;
    left: 13px;
    top: 16px;
    background-size: 15px 15px; }
  .faq__search input {
    border: none;
    outline: none;
    font-size: 18px;
    width: 100%; }
  .faq__search__results {
    background: white;
    padding: 20px;
    border: 1px solid lightgray; }
    .faq__search__results svg {
      position: relative;
      top: 2px; }

.faq__title {
  margin-top: 30px; }
  .faq__title__content__title {
    border-bottom: 1px solid lightgrey;
    font-size: 22px; }

.faq__list__module {
  width: 50px;
  background: #fff;
  padding-top: 70px;
  padding-bottom: 70px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: border 0.5s;
  color: #27ae60;
  margin-bottom: 20px; }
  .faq__list__module__selected {
    border: 1px solid #27ae60; }
  .faq__list__module__icon {
    display: inline-block !important;
    width: 100%; }
  .faq__list__module__title {
    display: inline-block !important;
    width: 100%;
    margin-top: 20px; }
  .faq__list__module a svg {
    width: 50px;
    height: 50px;
    fill: #27ae60; }

.faq__list__module:hover {
  border: 1px solid #27ae60;
  transition: border 0.5s; }

.faq__accordion__child_title {
  border-bottom: 1px solid lightgrey; }

.faq__accordion__list__item {
  padding-bottom: 15px; }
  .faq__accordion__list__item__border {
    border-bottom: 1px solid lightgrey; }

.faq__overview__title {
  text-align: left;
  font-size: 20px;
  border-bottom: 1px solid lightgray; }

.faq__overview__footer {
  background: white;
  padding-left: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid lightgrey; }

.faq__overview__content {
  background: white;
  padding: 30px; }
  .faq__overview__content__other_articles {
    border-left: 1px solid lightgrey;
    min-height: 300px;
    padding-left: 50px; }
    .faq__overview__content__other_articles__title {
      border-bottom: 1px solid lightgrey;
      padding-bottom: 15px; }
    .faq__overview__content__other_articles__link {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: #535963; }
      .faq__overview__content__other_articles__link:hover {
        opacity: 0.5;
        cursor: pointer; }

.accordion__item {
  position: relative; }

.accordion__arrow {
  display: inline-block;
  width: 24px;
  height: 12px;
  position: absolute;
  top: 40px;
  right: 15px;
  margin-top: -6px; }

.accordion__title {
  background-color: #f4f4f4;
  color: #444;
  cursor: pointer;
  padding: 10px !important;
  width: auto;
  text-align: left;
  border: none; }

.accordion__body {
  background: white; }

.funding-appeal__wrapper {
  display: flex;
  flex-direction: row; }
  @media (max-width: 1339px) {
    .funding-appeal__wrapper {
      flex-direction: column; } }

.funding-appeal__column-left {
  flex: 0 0 200px;
  margin: 25px 25px 25px 0; }
  @media (max-width: 1339px) {
    .funding-appeal__column-left {
      flex: 1;
      margin: 25px 0 0 0; } }
  .funding-appeal__column-left__wrapper {
    background: #fff;
    height: calc(100vh - 200px);
    overflow-y: scroll;
    border: 1px solid #dadada;
    border-radius: 4px; }
    @media (max-width: 1339px) {
      .funding-appeal__column-left__wrapper {
        height: 100%; } }
  .funding-appeal__column-left__content {
    display: flex;
    flex-direction: column; }
    .funding-appeal__column-left__content__bloc-wrapper {
      flex: 1;
      border-bottom: 1px solid #E4E4E7;
      padding: 20px 20px 5px 0px; }
    .funding-appeal__column-left__content__bloc-content {
      margin-bottom: 15px;
      padding-left: 20px;
      cursor: pointer; }
      .funding-appeal__column-left__content__bloc-content.active {
        border-left: 5px solid #32CB66;
        transition: all 0.2s;
        padding-left: 15px; }
    .funding-appeal__column-left__content__bloc-content-inactive {
      margin-bottom: 15px;
      padding-left: 20px; }
    .funding-appeal__column-left__content__bloc-main {
      font-size: 16px;
      color: #535963;
      font-weight: bold;
      text-transform: uppercase; }
    .funding-appeal__column-left__content__bloc-secondary {
      font-size: 14px;
      color: #535963; }

.funding-appeal__column-middle {
  flex: 0 0 300px;
  margin: 25px 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid #dadada;
  border-radius: 4px; }
  @media (max-width: 1339px) {
    .funding-appeal__column-middle {
      flex: 1; } }
  .funding-appeal__column-middle__tabs {
    margin-top: 25px; }
  .funding-appeal__column-middle__button {
    background: #535963;
    height: 50px;
    font-size: 14px;
    color: #fff;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #E4E4E7;
    cursor: pointer;
    margin: 14px auto; }
  .funding-appeal__column-middle__tab {
    background: #fff;
    min-height: 50px;
    font-size: 14px;
    color: #535963;
    padding: 0 25px 0 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E4E4E7;
    cursor: pointer; }
    .funding-appeal__column-middle__tab.active-tab {
      border-left: 5px solid #32CB66;
      transition: all 0.2s; }
    .funding-appeal__column-middle__tab .filler {
      width: 5px; }
    .funding-appeal__column-middle__tab .filler-active {
      width: 0px;
      transition: all 0.2s; }
    .funding-appeal__column-middle__tab.disable {
      cursor: default;
      opacity: 0.5; }

.funding-appeal__column-right {
  flex: 2;
  margin: 25px 0 25px 25px;
  overflow-y: hidden; }
  @media (max-width: 1339px) {
    .funding-appeal__column-right {
      margin: 0 0 25px 0; } }
  .funding-appeal__column-right__content {
    padding: 25px;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dadada;
    border-radius: 4px; }
    .funding-appeal__column-right__content__header {
      display: flex;
      justify-content: space-between; }
      .funding-appeal__column-right__content__header__info__title {
        font-size: 20px;
        color: #535963;
        font-weight: bold;
        text-transform: uppercase; }
      .funding-appeal__column-right__content__header__info__date {
        padding: 5px 0;
        font-size: 14px;
        color: #535963; }
      .funding-appeal__column-right__content__header__info__document {
        padding: 5px 0; }
        .funding-appeal__column-right__content__header__info__document__name {
          cursor: pointer;
          font-size: 14px;
          color: #535963; }
        .funding-appeal__column-right__content__header__info__document__link {
          display: inline-block;
          text-decoration: underline;
          cursor: pointer;
          font-size: 14px;
          color: #535963; }
        .funding-appeal__column-right__content__header__info__document__disabled {
          display: inline-block;
          font-size: 14px;
          color: #535963; }
    .funding-appeal__column-right__content__table {
      margin: 15px 0;
      overflow: scroll; }
    .funding-appeal__column-right__content__table::-webkit-scrollbar {
      -webkit-appearance: none; }
    .funding-appeal__column-right__content__table::-webkit-scrollbar:vertical {
      width: 11px; }
    .funding-appeal__column-right__content__table::-webkit-scrollbar:horizontal {
      height: 11px; }
    .funding-appeal__column-right__content__table::-webkit-scrollbar-thumb {
      border-radius: 8px;
      border: 2px solid white;
      background-color: rgba(0, 0, 0, 0.5); }
    .funding-appeal__column-right__content__button {
      background: #535963;
      height: 30px;
      width: 135px;
      font-size: 14px;
      color: #fff;
      padding: 0 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-bottom: 1px solid #E4E4E7;
      cursor: pointer;
      border-radius: 10px;
      margin-top: 14px; }

.funding-appeal .progressbar {
  overflow: hidden;
  width: 100%;
  border-radius: 30px;
  background-color: #D9DDE2;
  height: 8px; }
  .funding-appeal .progressbar .progressbar-indicator {
    background-color: #FF4C3F;
    height: 8px;
    transition: all 2s; }

.funding-appeal__alert_customer_has_no_email {
  color: #535963;
  font-size: 13px;
  text-align: left; }

.funding-appeal-summary__stats__container {
  display: flex;
  justify-content: space-around;
  height: 100px;
  align-items: center; }

.funding-appeal-summary__stats__item {
  display: flex;
  flex-direction: column;
  height: 80px;
  align-items: center;
  justify-content: center;
  flex: 1; }
  .funding-appeal-summary__stats__item.left-border {
    border-left: 1px solid #E4E4E7; }
  .funding-appeal-summary__stats__item__value {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px; }
  .funding-appeal-summary__stats__item__text {
    text-transform: uppercase;
    font-weight: bold;
    color: #8E949F;
    font-size: 12px; }

.params .content {
  background: #fafafa;
  box-shadow: 0 1px 2px #d1d1d1;
  min-height: 50px;
  line-height: 50px;
  padding-top: 13px;
  padding-left: 20px !important;
  padding-right: 20px !important;
  padding-bottom: 10px;
  text-align: center;
  color: #5F636C;
  padding-bottom: 50px; }

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

.params__form__element {
  margin-top: 15px; }

.params__form__label {
  text-align: left; }
  .params__form__label__title {
    height: 20px; }
  .params__form__label__description {
    height: 20px;
    font-size: 13px; }

.params__form__input {
  text-align: left; }

.params .left-bar {
  min-height: 50px;
  line-height: 40px;
  text-align: center;
  margin-right: 20px;
  min-height: 200px; }
  .params .left-bar .row {
    background: #fafafa;
    box-shadow: 0 1px 2px #d1d1d1; }
  .params .left-bar__filters {
    background: #fafafa;
    box-shadow: 0 1px 2px #d1d1d1;
    border-bottom: 1px solid #E4E4E7; }
    .params .left-bar__filters__title {
      color: #5F636C;
      padding-left: 20px; }
    .params .left-bar__filters__label {
      height: 50px;
      text-align: left;
      padding-right: 15px;
      line-height: 50px;
      color: #5F636C;
      border-bottom: 1px solid #E4E4E7;
      font-size: 14px;
      cursor: pointer; }
      .params .left-bar__filters__label .label-photo {
        width: 25%; }
      .params .left-bar__filters__label .label-color {
        text-align: center;
        width: 5%; }
        .params .left-bar__filters__label .label-color .dot {
          position: relative;
          top: 40%;
          left: 50%; }
      .params .left-bar__filters__label .label-name {
        width: 65%;
        font-size: 14px; }
      .params .left-bar__filters__label .label-back {
        width: 2%; }
        .params .left-bar__filters__label .label-back__active {
          background-color: #32CB66; }
      .params .left-bar__filters__label__active {
        background-color: #32CB66 !important;
        color: white !important; }

#app-title {
  display: none !important; }

.sale_contract_type__document__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px; }

.sale_contract_type__document__title {
  font-size: 16px;
  font-weight: bold; }

.sale_contract_type__row {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .sale_contract_type__row__title {
    display: flex;
    justify-content: flex-start;
    align-items: center; }
    .sale_contract_type__row__title__icon {
      height: 20px;
      width: 20px;
      margin-right: 10px; }
      .sale_contract_type__row__title__icon svg {
        height: 100%;
        width: 100%;
        fill: #535963; }
    .sale_contract_type__row__title__text {
      font-weight: bold; }
  .sale_contract_type__row__actions svg {
    height: 20px;
    width: 20px;
    fill: #535963;
    margin-left: 15px;
    cursor: pointer; }

.batch_price_grid__title {
  margin: 20px 0;
  text-align: left;
  text-transform: uppercase; }

.price_grid__row {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .price_grid__row__text {
    font-size: 16px; }
  .price_grid__row__actions svg {
    height: 20px;
    width: 20px;
    fill: #535963;
    margin-left: 15px;
    cursor: pointer; }

.documents-modal.container {
  display: block;
  padding: 20px; }
  .documents-modal.container .dm_subtitle {
    color: #80868D; }
  .documents-modal.container li {
    display: flex;
    padding: 20px 5px;
    border-bottom: 1px solid #F3F5F7; }
  .documents-modal.container li:hover {
    background: #F3F5F7; }
  .documents-modal.container .dm_document {
    width: 100%; }
  .documents-modal.container .list-select {
    margin-bottom: 20px; }
  .documents-modal.container .dm_icon_status {
    width: 50px;
    display: flex;
    min-width: 50px;
    align-items: center;
    justify-content: end;
    padding-left: 5px; }
    .documents-modal.container .dm_icon_status .dm_icon {
      width: 20px;
      height: 20px;
      padding: 5px;
      border-radius: 50%; }
    .documents-modal.container .dm_icon_status .dm_error {
      background: #fddcd6; }
    .documents-modal.container .dm_icon_status .dm_success {
      background: #dcfaee; }
  .documents-modal.container .dm_title_document {
    flex-grow: 1;
    word-break: break-word;
    font-size: 16px;
    color: #535963;
    display: flex;
    align-items: center;
    cursor: default; }
    .documents-modal.container .dm_title_document .dm_icon_type {
      margin-right: 0.5rem;
      height: 20px; }
    .documents-modal.container .dm_title_document span {
      margin-left: 10px;
      color: #8D949E; }
  .documents-modal.container .dm_progress_bar {
    height: 10px;
    margin-top: 5px;
    padding-left: 30px; }
    .documents-modal.container .dm_progress_bar .progressbar {
      overflow: hidden;
      width: 100%;
      border-radius: 30px;
      background-color: #D9DDE2;
      height: 8px; }
      .documents-modal.container .dm_progress_bar .progressbar .progressbar-indicator {
        background-color: #FF4C3F;
        height: 8px;
        transition: all 2s; }
  .documents-modal.container .dm_title_document_error {
    color: #F56565;
    padding-left: 30px; }
  .documents-modal.container .dm_title_document.dm_deleted, .documents-modal.container .dm_title_document.dm_deleted span {
    text-decoration: line-through;
    color: #D0D2D5; }
  .documents-modal.container .dm_title_document.dm_loading, .documents-modal.container .dm_title_document.dm_deleted span {
    color: #D0D2D5; }
  .documents-modal.container .dm_icon_action {
    display: flex;
    min-width: 80px;
    align-items: center;
    justify-content: end; }
    .documents-modal.container .dm_icon_action .dm_icon {
      cursor: pointer;
      margin-left: 5px;
      padding: 5px;
      width: 20px;
      height: 20px;
      border-radius: 50%; }
    .documents-modal.container .dm_icon_action .dm_icon:hover {
      background: #E2E6EA; }
  .documents-modal.container .dm_icon {
    height: 20px; }
  .documents-modal.container .dm_icon svg {
    width: 20px;
    height: 20px;
    fill: #000;
    transition: all 0.5s; }
  .documents-modal.container .carre_upload_doc_wrapper {
    padding-top: 80px; }
    .documents-modal.container .carre_upload_doc_wrapper .carre_upload_doc {
      flex-direction: row;
      justify-content: start; }
      .documents-modal.container .carre_upload_doc_wrapper .carre_upload_doc svg {
        width: 35px;
        height: 35px;
        margin: 0; }

body {
  height: 100%; }

body {
  font-family: "Avenir", sans-serif;
  transition: transform .3s ease-in-out; }

body.primary-navigation--open {
  transform: translateX(70px);
  width: 100%;
  position: fixed; }

* {
  -webkit-font-smoothing: antialiased; }

input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0; }

@font-face {
  font-family: "Avenir";
  src: url("./assets/fonts/Avenir/avenir-roman-webfont.eot");
  src: url("./assets/fonts/Avenir/avenir-roman-webfont.eot?#iefix") format("embedded-opentype"), url("./assets/fonts/Avenir/avenir-roman-webfont.woff2") format("woff2"), url("./assets/fonts/Avenir/avenir-roman-webfont.woff") format("woff"), url("./assets/fonts/Avenir/avenir-roman-webfont.ttf") format("truetype"), url("./assets/fonts/Avenir/avenir-roman-webfont.svg#avenir_55roman") format("svg");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: "Avenir";
  src: url("./assets/fonts/Avenir/avenir-light-webfont.eot");
  src: url("./assets/fonts/Avenir/avenir-light-webfont.eot?#iefix") format("embedded-opentype"), url("./assets/fonts/Avenir/avenir-light-webfont.woff2") format("woff2"), url("./assets/fonts/Avenir/avenir-light-webfont.woff") format("woff"), url("./assets/fonts/Avenir/avenir-light-webfont.ttf") format("truetype"), url("./assets/fonts/Avenir/avenir-light-webfont.svg#avenir_35_lightregular") format("svg");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: "Avenir";
  src: url("./assets/fonts/Avenir/avenir-medium-webfont.eot");
  src: url("./assets/fonts/Avenir/avenir-medium-webfont.eot?#iefix") format("embedded-opentype"), url("./assets/fonts/Avenir/avenir-medium-webfont.woff2") format("woff2"), url("./assets/fonts/Avenir/avenir-medium-webfont.woff") format("woff"), url("./assets/fonts/Avenir/avenir-medium-webfont.ttf") format("truetype"), url("./assets/fonts/Avenir/avenir-medium-webfont.svg#avenirregular") format("svg");
  font-weight: 500;
  font-style: normal; }

.form-control {
  display: block;
  width: 100%;
  padding: 7px 13px;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
  border-radius: 4px;
  border: 1px solid #dadada;
  background-color: #f3f3f3;
  transition: all .2s ease-in-out; }
  .form-control:focus {
    background-color: #ffffff;
    border-color: #d2d2d2; }
  .form-control.parsley-error {
    border-color: #ff5400;
    background-color: #ffeaea; }
  .form-control.parsley-success {
    border-color: #4f9b0c;
    background-color: #f8fdfa; }
  .form-control::-ms-expand {
    background-color: transparent;
    border: 0; }

.checkboxInline .form-group {
  display: flex;
  min-height: 30px;
  height: fit-content;
  align-items: center; }
  .checkboxInline .form-group label {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 0; }
  .checkboxInline .form-group input {
    width: 40px; }

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] {
  background-color: #e9e5e5f8;
  opacity: 1; }

.form-control[disabled],
fieldset[disabled] {
  cursor: not-allowed; }

.form-control-file,
.form-control-range {
  display: block; }

.form-group {
  margin-bottom: 15px; }

.radio,
.checkbox {
  position: relative;
  display: block; }
  .radio label,
  .checkbox label {
    padding-left: 1.25rem;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer; }
    .radio label input:only-child,
    .checkbox label input:only-child {
      position: static; }

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: .25rem;
  margin-left: -1.25rem; }

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -.25rem; }

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 1.25rem;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer; }

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: .75rem; }

label {
  text-align: left;
  display: block;
  font-size: 13px;
  color: #2A2E34; }

@media (min-width: 544px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .form-inline .form-control-static {
    display: inline-block; }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle; }
    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn,
    .form-inline .input-group .form-control {
      width: auto; }
  .form-inline .input-group > .form-control {
    width: 100%; }
  .form-inline .form-control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
    .form-inline .radio label,
    .form-inline .checkbox label {
      padding-left: 0; }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .form-inline .has-feedback .form-control-feedback {
    top: 0; } }

.better-elastic-textarea {
  position: relative; }

.better-elastic-textarea > textarea {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
  margin: 0; }

.better-elastic-textarea > pre {
  visibility: hidden;
  margin: 0;
  border-style: solid; }

.better-elastic-textarea span {
  display: inline-block;
  white-space: pre-wrap; }

.form-control--time {
  position: relative; }

select {
  outline: none;
  border: 1px solid #DADDE3;
  display: inline-block;
  background-color: white;
  min-width: 300px;
  color: #8D949F;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 13px;
  padding: 15px 20px;
  position: relative;
  background-image: url(./assets/svg/carret-down.svg);
  background-repeat: no-repeat;
  background-position: 92% 20px; }

.select-with-chevron {
  background-image: url("./assets/svg/chevron-down-v2.svg");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 5px; }

.autocomplete_options {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  max-height: 200px;
  width: 100%;
  overflow-y: scroll;
  background-color: white;
  z-index: 1; }
  .autocomplete_options .autocomplete_option {
    font-size: 13px;
    padding: 5px 16px;
    color: black;
    text-align: left;
    vertical-align: middle;
    z-index: 2;
    border-bottom: 1px solid #e2e1e1;
    border-left: 1px solid #e2e1e1;
    border-right: 1px solid #e2e1e1; }
    .autocomplete_options .autocomplete_option:hover {
      color: #FF4C3F;
      cursor: pointer; }

.datepicker-inline label {
  line-height: 35px; }

.datepicker-inline .without-datepicker {
  line-height: 35px; }

.errors {
  margin-top: 4px;
  text-align: left;
  display: block;
  font-size: 13px;
  color: #ff4c3f; }

.form-group:has(.unit) > input.form-control {
  padding-right: 25px; }

.form-group .unit {
  position: absolute;
  bottom: 0;
  transform: translateY(-8px);
  right: 10px; }

/*
 *  Remodal - v1.0.7
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none; }

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none; }

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none; }

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch; }

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: ""; }

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%; }

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block; }

/*
 *  Remodal - v1.0.7
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px); }

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9); }

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes; }

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes; }

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0; }

/* Default theme styles of the modal dialog */
.remodal {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff; }

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes; }

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes; }

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle; }

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent; }

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38; }

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0; }

.remodal-confirm {
  color: #fff;
  background: #81c784; }

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a; }

.remodal-cancel {
  color: #fff;
  background: #e57373; }

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350; }

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0; }

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0; } }

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0; } }

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px; } }

/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38; }

.lt-ie9 .remodal {
  width: 700px; }

/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/
/*
CONTENTS:
	1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited).
	2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar.
	3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
	4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars.
	5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars.
	6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS
		6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/
/*
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE
------------------------------------------------------------------------------------------------------------------------
*/
.mCustomScrollbar {
  -ms-touch-action: pinch-zoom;
  touch-action: pinch-zoom;
  /* direct pointer events to js */ }

.mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action {
  -ms-touch-action: auto;
  touch-action: auto; }

.mCustomScrollBox {
  /* contains plugin's markup */
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  outline: none;
  direction: ltr; }

.mCSB_container {
  /* contains the original content */
  overflow: hidden;
  width: auto;
  height: auto; }

/*
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR
y-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_inside > .mCSB_container {
  margin-right: 30px; }

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0; }

/* non-visible scrollbar */
.mCS-dir-rtl > .mCSB_inside > .mCSB_container {
  /* RTL direction/left-side scrollbar */
  margin-right: 0;
  margin-left: 30px; }

.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-left: 0; }

/* RTL direction/left-side scrollbar */
.mCSB_scrollTools {
  /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
  position: absolute;
  width: 16px;
  height: auto;
  left: auto;
  top: 0;
  right: 0;
  bottom: 0; }

.mCSB_outside + .mCSB_scrollTools {
  right: -26px; }

/* scrollbar position: outside */
.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  /* RTL direction/left-side scrollbar */
  right: auto;
  left: 0; }

.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  left: -26px; }

/* RTL direction/left-side scrollbar (scrollbar position: outside) */
.mCSB_scrollTools .mCSB_draggerContainer {
  /* contains the draggable element and dragger rail markup */
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto; }

.mCSB_scrollTools a + .mCSB_draggerContainer {
  margin: 20px 0; }

.mCSB_scrollTools .mCSB_draggerRail {
  width: 2px;
  height: 100%;
  margin: 0 auto;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px; }

.mCSB_scrollTools .mCSB_dragger {
  /* the draggable element */
  cursor: pointer;
  width: 100%;
  height: 30px;
  /* minimum dragger height */
  z-index: 1; }

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  /* the dragger element */
  position: relative;
  width: 4px;
  height: 100%;
  margin: 0 auto;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  text-align: center; }

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 12px;
  /* auto-expanded scrollbar */ }

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 8px;
  /* auto-expanded scrollbar */ }

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
  display: block;
  position: absolute;
  height: 20px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer; }

.mCSB_scrollTools .mCSB_buttonDown {
  bottom: 0; }

/*
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR
x-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-right: 0;
  margin-bottom: 30px; }

.mCSB_horizontal.mCSB_outside > .mCSB_container {
  min-height: 100%; }

.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0; }

/* non-visible scrollbar */
.mCSB_scrollTools.mCSB_scrollTools_horizontal {
  width: auto;
  height: 16px;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0; }

.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: -26px; }

/* scrollbar position: outside */
.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer {
  margin: 0 20px; }

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 2px;
  margin: 7px 0; }

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 30px;
  /* minimum dragger width */
  height: 100%;
  left: 0; }

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto; }

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 12px;
  /* auto-expanded scrollbar */
  margin: 2px auto; }

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 8px;
  /* auto-expanded scrollbar */
  margin: 4px 0; }

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  display: block;
  position: absolute;
  width: 20px;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer; }

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
  left: 0; }

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  right: 0; }

/*
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS
yx-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_container_wrapper {
  position: absolute;
  height: auto;
  width: auto;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-right: 30px;
  margin-bottom: 30px; }

.mCSB_container_wrapper > .mCSB_container {
  padding-right: 30px;
  padding-bottom: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 20px; }

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 20px; }

/* non-visible horizontal scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 0; }

/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 0; }

/* RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 20px; }

/* non-visible scrollbar/RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 0; }

.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper {
  /* RTL direction/left-side scrollbar */
  margin-right: 0;
  margin-left: 30px; }

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container {
  padding-right: 0; }

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container {
  padding-bottom: 0; }

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
  /* non-visible scrollbar */
  margin-left: 0; }

/* non-visible horizontal scrollbar */
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0; }

/*
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
  -moz-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
  transition: opacity .2s ease-in-out, background-color .2s ease-in-out; }

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
  -webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
  -moz-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
  -o-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
  transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out; }

/*
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS
------------------------------------------------------------------------------------------------------------------------
*/
/*
----------------------------------------
6.1 THEMES
----------------------------------------
*/
/* default theme ("light") */
.mCSB_scrollTools {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)"; }

.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 0;
  filter: "alpha(opacity=0)";
  -ms-filter: "alpha(opacity=0)"; }

.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollBox:hover > .mCSB_scrollTools,
.mCustomScrollBox:hover ~ .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)"; }

.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)"; }

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)"; }

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
  filter: "alpha(opacity=85)";
  -ms-filter: "alpha(opacity=85)"; }

.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)"; }

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  background-repeat: no-repeat;
  opacity: 0.4;
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)"; }

.mCSB_scrollTools .mCSB_buttonUp {
  background-position: 0 0;
  /*
  sprites locations
  light: 0 0, -16px 0, -32px 0, -48px 0, 0 -72px, -16px -72px, -32px -72px
  dark: -80px 0, -96px 0, -112px 0, -128px 0, -80px -72px, -96px -72px, -112px -72px
  */ }

.mCSB_scrollTools .mCSB_buttonDown {
  background-position: 0 -20px;
  /*
  sprites locations
  light: 0 -20px, -16px -20px, -32px -20px, -48px -20px, 0 -92px, -16px -92px, -32px -92px
  dark: -80px -20px, -96px -20px, -112px -20px, -128px -20px, -80px -92px, -96px -92px, -112 -92px
  */ }

.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: 0 -40px;
  /*
  sprites locations
  light: 0 -40px, -20px -40px, -40px -40px, -60px -40px, 0 -112px, -20px -112px, -40px -112px
  dark: -80px -40px, -100px -40px, -120px -40px, -140px -40px, -80px -112px, -100px -112px, -120px -112px
  */ }

.mCSB_scrollTools .mCSB_buttonRight {
  background-position: 0 -56px;
  /*
  sprites locations
  light: 0 -56px, -20px -56px, -40px -56px, -60px -56px, 0 -128px, -20px -128px, -40px -128px
  dark: -80px -56px, -100px -56px, -120px -56px, -140px -56px, -80px -128px, -100px -128px, -120px -128px
  */ }

.mCSB_scrollTools .mCSB_buttonUp:hover,
.mCSB_scrollTools .mCSB_buttonDown:hover,
.mCSB_scrollTools .mCSB_buttonLeft:hover,
.mCSB_scrollTools .mCSB_buttonRight:hover {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)"; }

.mCSB_scrollTools .mCSB_buttonUp:active,
.mCSB_scrollTools .mCSB_buttonDown:active,
.mCSB_scrollTools .mCSB_buttonLeft:active,
.mCSB_scrollTools .mCSB_buttonRight:active {
  opacity: 0.9;
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)"; }

/* theme: "dark" */
.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15); }

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75); }

.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.85); }

.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.9); }

.mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px 0; }

.mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -20px; }

.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -40px; }

.mCS-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -56px; }

/* ---------------------------------------- */
/* theme: "light-2", "dark-2" */
.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px; }

.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px; }

.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto; }

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85); }

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9); }

.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px 0; }

.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -20px; }

.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -40px; }

.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -56px; }

/* theme: "dark-2" */
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px; }

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px; }

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85); }

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9); }

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px 0; }

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -20px; }

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -40px; }

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -56px; }

/* ---------------------------------------- */
/* theme: "light-thick", "dark-thick" */
.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px; }

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px; }

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 4px;
  margin: 6px 0; }

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 6px;
  margin: 5px auto; }

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85); }

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9); }

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -16px 0; }

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -16px -20px; }

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -20px -40px; }

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -20px -56px; }

/* theme: "dark-thick" */
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px; }

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px; }

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85); }

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9); }

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -96px 0; }

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -96px -20px; }

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -100px -40px; }

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -100px -56px; }

/* ---------------------------------------- */
/* theme: "light-thin", "dark-thin" */
.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1); }

.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 2px; }

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%; }

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 2px;
  margin: 7px auto; }

/* theme "dark-thin" */
.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15); }

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75); }

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85); }

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9); }

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px 0; }

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -20px; }

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -40px; }

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -56px; }

/* ---------------------------------------- */
/* theme "rounded", "rounded-dark", "rounded-dots", "rounded-dots-dark" */
.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.15); }

.mCS-rounded.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger {
  height: 14px; }

.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 14px;
  margin: 0 1px; }

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 14px; }

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 14px;
  margin: 1px 0; }

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 16px;
  /* auto-expanded scrollbar */
  height: 16px;
  margin: -1px 0; }

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 4px;
  /* auto-expanded scrollbar */ }

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 16px;
  /* auto-expanded scrollbar */
  width: 16px;
  margin: 0 -1px; }

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 4px;
  /* auto-expanded scrollbar */
  margin: 6px 0; }

.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp {
  background-position: 0 -72px; }

.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown {
  background-position: 0 -92px; }

.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: 0 -112px; }

.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight {
  background-position: 0 -128px; }

/* theme "rounded-dark", "rounded-dots-dark" */
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75); }

.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15); }

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85); }

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9); }

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px -72px; }

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -92px; }

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -112px; }

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -128px; }

/* theme "rounded-dots", "rounded-dots-dark" */
.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail {
  width: 4px; }

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  background-color: transparent;
  background-position: center; }

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
  background-repeat: repeat-y;
  opacity: 0.3;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)"; }

.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  height: 4px;
  margin: 6px 0;
  background-repeat: repeat-x; }

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -16px -72px; }

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -16px -92px; }

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -20px -112px; }

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -20px -128px; }

/* theme "rounded-dots-dark" */
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII="); }

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -96px -72px; }

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -96px -92px; }

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -100px -112px; }

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -100px -128px; }

/* ---------------------------------------- */
/* theme "3d", "3d-dark", "3d-thick", "3d-thick-dark" */
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-y;
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0.5)), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%); }

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-x;
  background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.5)), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%); }

/* theme "3d", "3d-dark" */
.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 70px; }

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 70px; }

.mCS-3d.mCSB_scrollTools,
.mCS-3d-dark.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)"; }

.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px; }

.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
  width: 8px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2); }

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #555; }

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 8px; }

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 8px;
  margin: 4px 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2); }

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 8px;
  margin: 4px auto; }

.mCS-3d.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px; }

.mCS-3d.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px; }

.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px; }

.mCS-3d.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px; }

/* theme "3d-dark" */
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1); }

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1); }

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px; }

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px; }

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px; }

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px; }

/* ---------------------------------------- */
/* theme: "3d-thick", "3d-thick-dark" */
.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)"; }

.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools,
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px; }

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px; }

.mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical,
.mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical {
  right: 1px; }

.mCS-3d-thick.mCSB_scrollTools_vertical,
.mCS-3d-thick-dark.mCSB_scrollTools_vertical {
  box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5); }

.mCS-3d-thick.mCSB_scrollTools_horizontal,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
  bottom: 1px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5); }

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
  width: 12px;
  margin: 2px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4); }

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #555; }

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 12px;
  width: auto; }

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.05);
  box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1); }

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent; }

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px; }

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px; }

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px; }

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px; }

/* theme: "3d-thick-dark" */
.mCS-3d-thick-dark.mCSB_scrollTools {
  box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2); }

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2); }

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2); }

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2); }

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #777; }

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
  background-color: #fff;
  background-color: rgba(0, 0, 0, 0.05);
  box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1); }

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent; }

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px; }

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px; }

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px; }

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px; }

/* ---------------------------------------- */
/* theme: "minimal", "minimal-dark" */
.mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
  right: 0;
  margin: 12px 0; }

.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: 0;
  margin: 0 12px; }

/* RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
.mCS-dir-rtl > .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
  left: 0;
  right: auto; }

.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent; }

.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 50px; }

.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 50px; }

.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  filter: "alpha(opacity=20)";
  -ms-filter: "alpha(opacity=20)"; }

.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)"; }

/* theme: "minimal-dark" */
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  filter: "alpha(opacity=20)";
  -ms-filter: "alpha(opacity=20)"; }

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)"; }

/* ---------------------------------------- */
/* theme "light-3", "dark-3" */
.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
  width: 6px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2); }

.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px; }

.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 6px;
  margin: 5px 0; }

.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 12px; }

.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 12px;
  margin: 2px 0; }

.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px; }

.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px; }

.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px; }

.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px; }

/* theme "dark-3" */
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75); }

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85); }

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9); }

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1); }

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px; }

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px; }

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px; }

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px; }

/* ---------------------------------------- */
/* theme "inset", "inset-dark", "inset-2", "inset-2-dark", "inset-3", "inset-3-dark" */
.mCS-inset.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  width: 12px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2); }

.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  margin: 3px 5px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 6px;
  margin: 5px 3px;
  position: absolute;
  width: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 12px;
  margin: 2px 0; }

.mCS-inset.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px; }

.mCS-inset.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px; }

.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px; }

.mCS-inset.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px; }

/* theme "inset-dark", "inset-2-dark", "inset-3-dark" */
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75); }

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85); }

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9); }

.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1); }

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px; }

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px; }

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px; }

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px; }

/* theme "inset-2", "inset-2-dark" */
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
  border-color: #000;
  border-color: rgba(0, 0, 0, 0.2); }

/* theme "inset-3", "inset-3-dark" */
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.6); }

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6); }

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75); }

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85); }

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9); }

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75); }

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85); }

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9); }

/* ---------------------------------------- */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom; }

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand; }

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown; }

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft; }

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight; }

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp; }

@-webkit-keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut; }

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown; }

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft; }

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight; }

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp; }

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown; }

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

/* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000000;
  position: absolute;
  z-index: 10000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/**
 * The picker input element.
 */
.picker__input {
  cursor: default; }

/**
 * When the picker is opened, the input element is “activated”.
 */
.picker__input.picker__input--active {
  border-color: #0089ec; }

/**
 * The holder is the only “scrollable” top-level container element.
 */
.picker__holder {
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

/*!
 * Classic picker styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  width: 100%; }

/**
 * The holder is the base of the picker.
 */
.picker__holder {
  position: absolute;
  background: #ffffff;
  border: 1px solid #aaaaaa;
  border-top-width: 0;
  border-bottom-width: 0;
  border-radius: 0 0 5px 5px;
  box-sizing: border-box;
  min-width: 176px;
  max-width: 466px;
  max-height: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transition: -webkit-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s; }

/**
 * The frame and wrap work together to ensure that
 * clicks within the picker don’t reach the holder.
 */
.picker__frame {
  padding: 1px; }

.picker__wrap {
  margin: -1px; }

/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
  max-height: 25em;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  border-top-width: 1px;
  border-bottom-width: 1px;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
  transition: -webkit-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  box-shadow: 0 6px 18px 1px rgba(0, 0, 0, 0.12); }

/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
.picker__box {
  padding: 0 1em; }

/**
 * The header containing the month and year stuff.
 */
.picker__header {
  text-align: center;
  position: relative;
  margin-top: .75em; }

/**
 * The month and year labels.
 */
.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: .25em;
  margin-right: .25em; }

.picker__year {
  color: #999999;
  font-size: .8em;
  font-style: italic; }

/**
 * The month and year selectors.
 */
.picker__select--month,
.picker__select--year {
  border: 1px solid #b7b7b7;
  height: 2em;
  padding: .5em;
  margin-left: .25em;
  margin-right: .25em; }

@media (min-width: 24.5em) {
  .picker__select--month,
  .picker__select--year {
    margin-top: -0.5em; } }

.picker__select--month {
  width: 35%; }

.picker__select--year {
  width: 22.5%; }

.picker__select--month:focus,
.picker__select--year:focus {
  border-color: #0089ec; }

/**
 * The month navigation buttons.
 */
.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: .5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -0.25em; }

@media (min-width: 24.5em) {
  .picker__nav--prev,
  .picker__nav--next {
    top: -0.33em; } }

.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em; }

@media (min-width: 24.5em) {
  .picker__nav--prev {
    padding-right: 1.5em; } }

.picker__nav--next {
  right: -1em;
  padding-left: 1.25em; }

@media (min-width: 24.5em) {
  .picker__nav--next {
    padding-left: 1.5em; } }

.picker__nav--prev:before,
.picker__nav--next:before {
  content: " ";
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  border-right: 0.75em solid #000000;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto; }

.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #000000; }

.picker__nav--prev:hover,
.picker__nav--next:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb; }

.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5; }

/**
 * The calendar table of dates
 */
.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-top: .75em;
  margin-bottom: .5em; }

@media (min-height: 33.875em) {
  .picker__table {
    margin-bottom: .75em; } }

.picker__table td {
  margin: 0;
  padding: 0; }

/**
 * The weekday labels
 */
.picker__weekday {
  width: 14.285714286%;
  font-size: .75em;
  padding-bottom: .25em;
  color: #999999;
  font-weight: 500;
  /* Increase the spacing a tad */ }

@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: .5em; } }

/**
 * The days on the calendar
 */
.picker__day {
  padding: .3125em 0;
  font-weight: 200;
  border: 1px solid transparent; }

.picker__day--today {
  position: relative; }

.picker__day--today:before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: 0.5em solid #0059bc;
  border-left: .5em solid transparent; }

.picker__day--disabled:before {
  border-top-color: #aaaaaa; }

.picker__day--outfocus {
  color: #dddddd; }

.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb; }

.picker__day--highlighted {
  border-color: #0089ec; }

.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb; }

.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  background: #0089ec;
  color: #ffffff; }

.picker__day--disabled,
.picker__day--disabled:hover,
.picker--focused .picker__day--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default; }

.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbbbbb; }

/**
 * The footer containing the "today", "clear", and "close" buttons.
 */
.picker__footer {
  text-align: center; }

.picker__button--today,
.picker__button--clear,
.picker__button--close {
  border: 1px solid #ffffff;
  background: #ffffff;
  font-size: .8em;
  padding: .66em 0;
  font-weight: bold;
  width: 33%;
  display: inline-block;
  vertical-align: bottom; }

.picker__button--today:hover,
.picker__button--clear:hover,
.picker__button--close:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb; }

.picker__button--today:focus,
.picker__button--clear:focus,
.picker__button--close:focus {
  background: #b1dcfb;
  border-color: #0089ec;
  outline: none; }

.picker__button--today:before,
.picker__button--clear:before,
.picker__button--close:before {
  position: relative;
  display: inline-block;
  height: 0; }

.picker__button--today:before,
.picker__button--clear:before {
  content: " ";
  margin-right: .45em; }

.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: .66em solid transparent; }

.picker__button--clear:before {
  top: -0.25em;
  width: .66em;
  border-top: 3px solid #ee2200; }

.picker__button--close:before {
  content: "\D7";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: .35em;
  color: #777777; }

.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default; }

.picker__button--today[disabled]:before {
  border-top-color: #aaaaaa; }

/* ==========================================================================
   $DEFAULT-DATE-PICKER
   ========================================================================== */
/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */ }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%; }

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none; }

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden; }

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }

.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px; }

.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none; }

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline; }

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px; }

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791; }

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0px;
  padding-right: 0px; }
  .container::after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 544px) {
    .container {
      max-width: 576px; } }
  @media (min-width: 768px) {
    .container {
      max-width: 720px; } }
  @media (min-width: 992px) {
    .container {
      max-width: 940px; } }
  @media (min-width: 1340px) {
    .container {
      max-width: 1240px; } }

.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0px;
  padding-right: 0px; }
  .container-fluid::after {
    content: "";
    display: table;
    clear: both; }

.row {
  margin-left: 0px;
  margin-right: 0px; }
  .row::after {
    content: "";
    display: table;
    clear: both; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  position: relative;
  min-height: 1px;
  padding-left: 0px;
  padding-right: 0px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-1 {
  width: 8.33333%; }

.col-xs-2 {
  width: 16.66667%; }

.col-xs-3 {
  width: 25%; }

.col-xs-4 {
  width: 33.33333%; }

.col-xs-5 {
  width: 41.66667%; }

.col-xs-6 {
  width: 50%; }

.col-xs-7 {
  width: 58.33333%; }

.col-xs-8 {
  width: 66.66667%; }

.col-xs-9 {
  width: 75%; }

.col-xs-10 {
  width: 83.33333%; }

.col-xs-11 {
  width: 91.66667%; }

.col-xs-12 {
  width: 100%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-pull-1 {
  right: 8.33333%; }

.col-xs-pull-2 {
  right: 16.66667%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-4 {
  right: 33.33333%; }

.col-xs-pull-5 {
  right: 41.66667%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-7 {
  right: 58.33333%; }

.col-xs-pull-8 {
  right: 66.66667%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-10 {
  right: 83.33333%; }

.col-xs-pull-11 {
  right: 91.66667%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-push-1 {
  left: 8.33333%; }

.col-xs-push-2 {
  left: 16.66667%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-4 {
  left: 33.33333%; }

.col-xs-push-5 {
  left: 41.66667%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-7 {
  left: 58.33333%; }

.col-xs-push-8 {
  left: 66.66667%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-10 {
  left: 83.33333%; }

.col-xs-push-11 {
  left: 91.66667%; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-offset-0 {
  margin-left: 0%; }

.col-xs-offset-1 {
  margin-left: 8.33333%; }

.col-xs-offset-2 {
  margin-left: 16.66667%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-4 {
  margin-left: 33.33333%; }

.col-xs-offset-5 {
  margin-left: 41.66667%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-7 {
  margin-left: 58.33333%; }

.col-xs-offset-8 {
  margin-left: 66.66667%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-10 {
  margin-left: 83.33333%; }

.col-xs-offset-11 {
  margin-left: 91.66667%; }

.col-xs-offset-12 {
  margin-left: 100%; }

@media (min-width: 544px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-1 {
    width: 8.33333%; }
  .col-sm-2 {
    width: 16.66667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.33333%; }
  .col-sm-5 {
    width: 41.66667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.33333%; }
  .col-sm-8 {
    width: 66.66667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.33333%; }
  .col-sm-11 {
    width: 91.66667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.33333%; }
  .col-sm-pull-2 {
    right: 16.66667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.33333%; }
  .col-sm-pull-5 {
    right: 41.66667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.33333%; }
  .col-sm-pull-8 {
    right: 66.66667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.33333%; }
  .col-sm-pull-11 {
    right: 91.66667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.33333%; }
  .col-sm-push-2 {
    left: 16.66667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.33333%; }
  .col-sm-push-5 {
    left: 41.66667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.33333%; }
  .col-sm-push-8 {
    left: 66.66667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.33333%; }
  .col-sm-push-11 {
    left: 91.66667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.33333%; }
  .col-sm-offset-2 {
    margin-left: 16.66667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.33333%; }
  .col-sm-offset-5 {
    margin-left: 41.66667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.33333%; }
  .col-sm-offset-8 {
    margin-left: 66.66667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.33333%; }
  .col-sm-offset-11 {
    margin-left: 91.66667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

@media (min-width: 768px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-1 {
    width: 8.33333%; }
  .col-md-2 {
    width: 16.66667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.33333%; }
  .col-md-5 {
    width: 41.66667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.33333%; }
  .col-md-8 {
    width: 66.66667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.33333%; }
  .col-md-11 {
    width: 91.66667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.33333%; }
  .col-md-pull-2 {
    right: 16.66667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.33333%; }
  .col-md-pull-5 {
    right: 41.66667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.33333%; }
  .col-md-pull-8 {
    right: 66.66667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.33333%; }
  .col-md-pull-11 {
    right: 91.66667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.33333%; }
  .col-md-push-2 {
    left: 16.66667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.33333%; }
  .col-md-push-5 {
    left: 41.66667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.33333%; }
  .col-md-push-8 {
    left: 66.66667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.33333%; }
  .col-md-push-11 {
    left: 91.66667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.33333%; }
  .col-md-offset-2 {
    margin-left: 16.66667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.33333%; }
  .col-md-offset-5 {
    margin-left: 41.66667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.33333%; }
  .col-md-offset-8 {
    margin-left: 66.66667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.33333%; }
  .col-md-offset-11 {
    margin-left: 91.66667%; }
  .col-md-offset-12 {
    margin-left: 100%; } }

@media (min-width: 992px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-1 {
    width: 8.33333%; }
  .col-lg-2 {
    width: 16.66667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.33333%; }
  .col-lg-5 {
    width: 41.66667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.33333%; }
  .col-lg-8 {
    width: 66.66667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.33333%; }
  .col-lg-11 {
    width: 91.66667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.33333%; }
  .col-lg-pull-2 {
    right: 16.66667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.33333%; }
  .col-lg-pull-5 {
    right: 41.66667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.33333%; }
  .col-lg-pull-8 {
    right: 66.66667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.33333%; }
  .col-lg-pull-11 {
    right: 91.66667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.33333%; }
  .col-lg-push-2 {
    left: 16.66667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.33333%; }
  .col-lg-push-5 {
    left: 41.66667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.33333%; }
  .col-lg-push-8 {
    left: 66.66667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.33333%; }
  .col-lg-push-11 {
    left: 91.66667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.33333%; }
  .col-lg-offset-2 {
    margin-left: 16.66667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.33333%; }
  .col-lg-offset-5 {
    margin-left: 41.66667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.33333%; }
  .col-lg-offset-8 {
    margin-left: 66.66667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.33333%; }
  .col-lg-offset-11 {
    margin-left: 91.66667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1340px) {
  .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    float: left; }
  .col-xl-1 {
    width: 8.33333%; }
  .col-xl-2 {
    width: 16.66667%; }
  .col-xl-3 {
    width: 25%; }
  .col-xl-4 {
    width: 33.33333%; }
  .col-xl-5 {
    width: 41.66667%; }
  .col-xl-6 {
    width: 50%; }
  .col-xl-7 {
    width: 58.33333%; }
  .col-xl-8 {
    width: 66.66667%; }
  .col-xl-9 {
    width: 75%; }
  .col-xl-10 {
    width: 83.33333%; }
  .col-xl-11 {
    width: 91.66667%; }
  .col-xl-12 {
    width: 100%; }
  .col-xl-pull-0 {
    right: auto; }
  .col-xl-pull-1 {
    right: 8.33333%; }
  .col-xl-pull-2 {
    right: 16.66667%; }
  .col-xl-pull-3 {
    right: 25%; }
  .col-xl-pull-4 {
    right: 33.33333%; }
  .col-xl-pull-5 {
    right: 41.66667%; }
  .col-xl-pull-6 {
    right: 50%; }
  .col-xl-pull-7 {
    right: 58.33333%; }
  .col-xl-pull-8 {
    right: 66.66667%; }
  .col-xl-pull-9 {
    right: 75%; }
  .col-xl-pull-10 {
    right: 83.33333%; }
  .col-xl-pull-11 {
    right: 91.66667%; }
  .col-xl-pull-12 {
    right: 100%; }
  .col-xl-push-0 {
    left: auto; }
  .col-xl-push-1 {
    left: 8.33333%; }
  .col-xl-push-2 {
    left: 16.66667%; }
  .col-xl-push-3 {
    left: 25%; }
  .col-xl-push-4 {
    left: 33.33333%; }
  .col-xl-push-5 {
    left: 41.66667%; }
  .col-xl-push-6 {
    left: 50%; }
  .col-xl-push-7 {
    left: 58.33333%; }
  .col-xl-push-8 {
    left: 66.66667%; }
  .col-xl-push-9 {
    left: 75%; }
  .col-xl-push-10 {
    left: 83.33333%; }
  .col-xl-push-11 {
    left: 91.66667%; }
  .col-xl-push-12 {
    left: 100%; }
  .col-xl-offset-0 {
    margin-left: 0%; }
  .col-xl-offset-1 {
    margin-left: 8.33333%; }
  .col-xl-offset-2 {
    margin-left: 16.66667%; }
  .col-xl-offset-3 {
    margin-left: 25%; }
  .col-xl-offset-4 {
    margin-left: 33.33333%; }
  .col-xl-offset-5 {
    margin-left: 41.66667%; }
  .col-xl-offset-6 {
    margin-left: 50%; }
  .col-xl-offset-7 {
    margin-left: 58.33333%; }
  .col-xl-offset-8 {
    margin-left: 66.66667%; }
  .col-xl-offset-9 {
    margin-left: 75%; }
  .col-xl-offset-10 {
    margin-left: 83.33333%; }
  .col-xl-offset-11 {
    margin-left: 91.66667%; }
  .col-xl-offset-12 {
    margin-left: 100%; } }

table a:link {
  color: #666;
  font-weight: bold;
  text-decoration: none; }

table a:visited {
  color: #999999;
  font-weight: bold;
  text-decoration: none; }

table a:active,
table a:hover {
  color: #bd5a35;
  text-decoration: underline; }

table {
  color: #666;
  font-size: 12px;
  background: #eaebec;
  width: 100%;
  border-radius: 6px;
  border-style: hidden; }

table th {
  padding: 21px 15px;
  border-top: 1px solid #fafafa;
  border-bottom: 1px solid #e0e0e0;
  background: white;
  font-size: 13px;
  color: #535963; }

table th:first-child {
  padding-left: 20px; }

table tr:first-child th:first-child {
  -moz-border-radius-topleft: 3px;
  -webkit-border-top-left-radius: 3px;
  border-top-left-radius: 3px; }

table tr:first-child th:last-child {
  -moz-border-radius-topright: 3px;
  -webkit-border-top-right-radius: 3px;
  border-top-right-radius: 3px; }

table tr {
  text-align: center;
  padding-left: 20px; }

table td:first-child {
  padding-left: 20px;
  border-left: 0; }

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

table td {
  padding: 18px 10px;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #e0e0e0;
  border-left: none;
  background: white;
  background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#fafafa));
  background: -moz-linear-gradient(top, #fbfbfb, #fafafa);
  font-size: 13px;
  color: #8D949F; }
  table td a {
    position: relative;
    display: inline-block;
    margin-right: 15px;
    transition: color .4s ease-in-out; }
    table td a svg {
      width: 15px;
      height: 15px;
      float: left;
      margin-right: 5px; }
    table td a:hover {
      color: #333;
      text-decoration: none; }

table tr:last-child td {
  border-bottom: 0; }

table tr:last-child td:first-child {
  -moz-border-radius-bottomleft: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px; }

table tr:last-child td:last-child {
  -moz-border-radius-bottomright: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px; }

table tr:hover td {
  background: #ffffff; }

.table-virtual-link {
  color: #666;
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
  user-select: none; }
  .table-virtual-link:hover {
    color: #bd5a35;
    cursor: pointer; }

.table__no-item {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
  color: #535963;
  font-size: 16px; }

.arrow-up {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid;
  display: inline-block;
  margin-left: 5px; }

.arrow-down {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid;
  display: inline-block;
  margin-left: 5px; }

.arrow-sorted {
  color: #535963; }

@keyframes openNotification {
  0% {
    transform: translateY(-50px);
    opacity: 0; }
  100% {
    transform: translateY(0px);
    opacity: 1; } }

.notifications {
  position: absolute;
  background: #FF4C3F;
  left: 0;
  top: 0;
  right: 0;
  padding: 15px 0;
  text-align: center;
  box-shadow: 0 2px 4px 0 rgba(4, 5, 6, 0.15);
  font-size: 14px;
  color: #FFFFFF;
  z-index: 5000;
  animation: openNotification .5s; }
  .notifications--error {
    background: #FF4C3F; }

.notification-status {
  padding: 10px; }
  .notification-status__line {
    font-size: 13px;
    color: #535963;
    display: inline;
    font-weight: bold; }
    .notification-status__line svg {
      width: 15px;
      height: 15px;
      fill: #535963; }
    .notification-status__line span {
      margin-left: 10px;
      position: relative;
      top: -2px;
      display: inline;
      color: #535963; }
  .notification-status__line-opendate {
    font-weight: normal !important;
    font-style: italic !important; }

.background-color--inherit {
  background-color: inherit; }

.color--inherit {
  color: inherit; }

.border-color--inherit {
  border-color: inherit; }

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

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

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

.font-title {
  font-family: "SofiaPro";
  letter-spacing: 2px;
  text-transform: uppercase; }

.font-default {
  font-family: "SofiaPro"; }

@media (min-width: 992px) {
  .row-table {
    display: table; }
    .row-table [class*="col-"] {
      float: none;
      display: table-cell;
      vertical-align: middle; } }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0; }

.clearfix {
  display: inline-block; }

/* start commented backslash hack \*/
* html .clearfix {
  height: 1%; }

.clearfix {
  display: block; }

/* close commented backslash hack */
.gutter-20.row {
  margin-right: -10px;
  margin-left: -10px;
  box-sizing: border-box; }

.gutter-20 > [class^="col-"], .gutter-10 > [class^=" col-"] {
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box; }

.pull-left {
  float: left !important; }

.pull-left-flex {
  display: flex;
  justify-content: flex-start; }

.pull-right {
  float: right !important; }

.pull-right-flex {
  display: flex;
  justify-content: flex-end; }

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

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

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

hr {
  height: 1px !important;
  border-top: 1px solid #c7c7c7 !important;
  display: block !important;
  box-sizing: border-box;
  margin: 10px 0 !important; }

.jodit_container .jodit_toolbar,
.jodit_container .jodit_statusbar {
  background-color: #ffffff; }

.jodit_container {
  background-color: #ffffff; }

.tooltip-fixed {
  max-width: 250px !important;
  z-index: 1001; }

.tooltip-documents {
  pointer-events: unset !important;
  padding: 0 !important;
  box-shadow: 0px -2px 6px rgba(0, 0, 0, 0.1);
  opacity: 1 !important;
  max-height: 300px;
  max-width: 350px;
  overflow: hidden auto; }

.table__no-shadow {
  box-shadow: unset !important; }

.table__no-width {
  width: auto !important; }

.pointer {
  cursor: pointer; }

.label {
  box-sizing: border-box;
  height: 25px;
  text-transform: uppercase;
  padding: 6px 10px;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 600;
  border-radius: 5px;
  white-space: nowrap; }
  .label.red {
    background-color: #BC424D; }
  .label.grey {
    background-color: lightgrey; }
  .label.white {
    background-color: white;
    border: 1px solid lightgrey;
    color: grey; }
  .label.green {
    background-color: #19AB27; }
  .label.grey {
    background-color: lightgrey; }
  .label.blue {
    background-color: #535964; }
  .label.lightblue {
    background-color: #d9dde2;
    color: grey; }
  .label.cyan {
    background-color: #40b19c;
    color: white; }
  .label.orange {
    background-color: #EBAB51; }
  .label.black {
    background-color: #4A4A4A; }
  .label.pointer {
    cursor: pointer; }

.mCSB_dragger_bar {
  background: #DADDE3 !important;
  width: 7px !important; }

.scrollbar::-webkit-scrollbar {
  width: 7px;
  background: #F1F2F5; }

.scrollbar::-webkit-scrollbar-thumb {
  background: #535963;
  border-radius: 10px; }

button,
.button {
  background: #535963;
  display: inline-block;
  color: white;
  text-decoration: none;
  padding: 5px 20px;
  border-radius: 5px;
  font-size: 13px;
  transition: all .3s ease-in-out;
  user-select: none; }
  button.disabled,
  .button.disabled {
    opacity: 0.5;
    cursor: not-allowed; }
    button.disabled:hover,
    .button.disabled:hover {
      opacity: 0.5;
      transform: none; }
  button.button__red,
  .button.button__red {
    background: #ef5655; }
  button.button__cancel,
  .button.button__cancel {
    background: #e6e6e6;
    color: #2a2e34; }
  button.button__secondary,
  .button.button__secondary {
    background: #D9DDE2;
    color: #585f68; }
    button.button__secondary:hover,
    .button.button__secondary:hover {
      background: #b5bac0; }
  button.button__white,
  .button.button__white {
    background: #FFFFFF;
    color: #535963;
    border: 1px solid #dadada; }
    button.button__white.disabled,
    .button.button__white.disabled {
      cursor: default;
      background: #FFFFFF;
      transition: none;
      transform: none !important; }
  button.cancel:active,
  .button.cancel:active {
    background: white; }
  button:hover,
  .button:hover {
    cursor: pointer;
    opacity: 0.8;
    transform: scale3d(1.05, 1.05, 1.05); }
  button:active,
  .button:active {
    opacity: 1;
    background: #2d3035; }
  button svg,
  .button svg {
    width: 15px;
    height: 15px;
    float: left;
    fill: white;
    margin-right: 10px; }
  button.button-lg,
  .button.button-lg {
    font-size: 13px;
    padding: 9px 20px;
    font-weight: 600; }
  button.button-xlg,
  .button.button-xlg {
    font-size: 13px;
    padding: 15px 30px;
    font-weight: 600; }
  button.button-block,
  .button.button-block {
    display: block;
    width: 100%; }
  button--icon-arrow-right:before,
  .button--icon-arrow-right:before {
    content: "";
    width: 11px;
    height: 9px;
    display: inline-block;
    background: url(./assets/svg/icon-btn--arrow-right.svg);
    margin-right: 4px; }

.button--disabled,
.button[disabled] {
  opacity: 0.5; }
  .button--disabled:hover,
  .button[disabled]:hover {
    opacity: 0.5;
    transform: none;
    cursor: default; }

.button-dropdown {
  position: relative;
  outline: none; }
  .button-dropdown a {
    white-space: nowrap; }
    .button-dropdown a:hover {
      color: #ffffff;
      transform: none; }
  .button-dropdown__wrapper {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    z-index: 1000;
    padding: 5px 0;
    margin: 2px 0 0;
    background: white;
    min-width: 140px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
  .button-dropdown__caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-top: 6px;
    margin-left: 6px;
    vertical-align: top;
    border-top: 4px solid #FFFFFF;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    content: ""; }
  .button-dropdown__item {
    user-select: none;
    padding: 5px 10px;
    color: #535963;
    font-size: 13px;
    cursor: pointer; }
    .button-dropdown__item:hover {
      background-color: #535963;
      color: #ffffff; }
  .button-dropdown__item-disable {
    user-select: none;
    padding: 5px 10px;
    color: #e2e2e2;
    font-size: 13px; }
    .button-dropdown__item-disable:hover {
      background-color: #e2e2e2;
      color: #ffffff; }

.icon-dropdown {
  position: relative;
  display: inline-block;
  outline: none; }
  .icon-dropdown__button {
    fill: #333;
    width: 20px;
    height: 20px;
    cursor: pointer;
    user-select: none; }
  .icon-dropdown__button-disable {
    opacity: 0.4;
    fill: #333;
    width: 20px;
    height: 20px;
    user-select: none; }
  .icon-dropdown__wrapper {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    z-index: 1000;
    padding: 5px 0;
    margin: 2px 0 0;
    background: white;
    min-width: 140px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
  .icon-dropdown__item {
    user-select: none;
    text-align: left;
    padding: 5px 10px;
    color: #535963;
    font-size: 13px;
    cursor: pointer; }
    .icon-dropdown__item:hover {
      background-color: #535963;
      color: #ffffff; }
  .icon-dropdown__item-disable {
    user-select: none;
    text-align: left;
    padding: 5px 10px;
    color: #e2e2e2;
    font-size: 13px; }
    .icon-dropdown__item-disable:hover {
      background-color: #e2e2e2;
      color: #ffffff; }

.action-link:hover {
  cursor: pointer;
  opacity: 0.5; }

svg.blocked {
  opacity: 0.4; }

hr,
.hr {
  border: 0;
  margin: 0;
  height: 1px;
  height: 0.1rem; }

img {
  vertical-align: middle; }

p {
  margin-top: 0; }

h1 {
  font-size: 24px;
  font-weight: 800;
  color: #535963; }

.header {
  height: 100px;
  background: #FFF;
  transition: height .4s ease-in-out;
  padding: 0 25px;
  width: calc(100% - 100px);
  position: fixed;
  box-sizing: border-box;
  z-index: 1000;
  position: fixed; }
  .header__burger-toggle, .header__profile-mobile {
    transition: all .4s ease-in-out; }
    @media (min-width: 992px) {
      .header__burger-toggle, .header__profile-mobile {
        display: none; } }
  .header__burger-toggle {
    padding: 25px 0;
    position: absolute;
    left: 30px; }
    .header__burger-toggle svg {
      width: 25px;
      height: 18px;
      fill: #535963; }
  .header__profile-mobile {
    padding: 18px 0;
    position: absolute;
    right: 30px; }
    .header__profile-mobile svg {
      width: 30px;
      height: 30px;
      fill: #535963; }
  .header__title {
    text-transform: uppercase;
    font-size: 18px;
    padding: 30px 0;
    float: left;
    transition: all .4s ease-in-out; }
    @media (max-width: 991px) {
      .header__title {
        padding: 15px 0;
        position: absolute;
        text-align: center;
        margin: auto;
        left: 0;
        right: 0; } }
    .header__title b {
      color: red;
      font-weight: normal; }
    .header__title__subtitle {
      display: block;
      font-size: 14px; }
  .header__status {
    float: right; }
    @media (max-width: 991px) {
      .header__status {
        display: none; } }
    .header__status__navigation ul {
      display: flex;
      align-items: center;
      padding: 0;
      margin: 0;
      list-style: none; }
    .header__status__navigation li {
      float: left;
      margin-left: 45px;
      position: relative; }
      .header__status__navigation li:first-child {
        margin-left: 0; }
    .header__status__navigation__dropdown {
      z-index: 1000;
      width: 390px;
      position: absolute;
      right: -62px;
      top: 117px;
      background: white;
      border-radius: 4px;
      box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.13);
      display: none; }
      .header__status__navigation__dropdown:after {
        content: "";
        position: absolute;
        top: -10px;
        right: 65px;
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 12.5px 10px 12.5px;
        border-color: transparent transparent #ffffff transparent; }
      .header__status__navigation__dropdown__header {
        background: white;
        border-radius: 4px 4px 0px 0px;
        text-align: center;
        font-size: 13px;
        color: #535963;
        letter-spacing: 0.3px;
        font-weight: 600;
        padding: 15px 0; }
        .header__status__navigation__dropdown__header .count {
          background: #FF4C3F;
          border-radius: 100%;
          display: inline-block;
          color: white;
          height: 19px;
          width: 19px;
          line-height: 21px;
          font-size: 12px;
          margin-left: 5px; }
      .header__status__navigation__dropdown__item {
        background: white;
        display: block;
        border-top: 1px solid #DADDE3;
        text-decoration: none;
        padding: 20px 20px 20px 75px;
        position: relative;
        transition: background .2s ease-in-out; }
        .header__status__navigation__dropdown__item.unread {
          background: #F1F3F5; }
        .header__status__navigation__dropdown__item:hover {
          background: #ECEFF2; }
        .header__status__navigation__dropdown__item:last-child {
          border-radius: 0 0 4px 4px; }
        .header__status__navigation__dropdown__item__title {
          font-size: 12px;
          color: #535963;
          display: block; }
        .header__status__navigation__dropdown__item__date {
          display: block;
          font-size: 10px;
          color: #8D949F;
          margin-top: 5px; }
        .header__status__navigation__dropdown__item__picture {
          background-size: cover;
          width: 40px;
          height: 40px;
          display: block;
          position: absolute;
          left: 20px;
          top: 15px;
          border-radius: 100%; }
        .header__status__navigation__dropdown__item__picture--inner {
          position: absolute;
          width: 66px;
          height: 44px;
          background-size: cover;
          right: 20px;
          top: 13px;
          border: 1px solid white; }
        .header__status__navigation__dropdown__item--have-picture {
          padding-right: 100px; }
    .header__status__notifications, .header__status__profile {
      display: inline-block; }
      .header__status__notifications svg, .header__status__profile svg {
        width: 30px;
        height: 30px;
        fill: #888F9A; }
    .header__status__profile {
      font-size: 12px;
      color: #535963;
      text-decoration: none;
      position: relative;
      display: flex;
      align-items: center; }
      .header__status__profile svg {
        float: left;
        margin-right: 10px; }
      .header__status__profile:after {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 5px 4px 0 4px;
        border-color: #8d949f transparent transparent transparent;
        content: "";
        position: absolute;
        right: 0;
        top: 13px; }
    .header__status__imagery__mobile {
      margin: 0 !important;
      margin-right: 15px !important; }
  .header__project-selector-mono {
    font-size: 11px;
    font-weight: 500;
    color: #333; }
  @media (max-width: 991px) {
    .header {
      height: 70px;
      width: 100%; } }
  .header__rendezvous {
    cursor: pointer; }
    .header__rendezvous__status {
      width: 20px;
      height: 20px;
      content: '';
      border-radius: 15px;
      display: inline-block;
      position: relative;
      right: 10px;
      top: 6px;
      border: 3px solid white;
      color: white;
      text-align: center;
      line-height: 22px;
      font-size: 12px;
      font-weight: bold; }
    .header__rendezvous .to-take {
      background: #FF4C3F; }
    .header__rendezvous .programmed {
      background: #31CC66; }

.primary-navigation--open .header__burger-toggle {
  opacity: 0;
  transform: translateX(-20px); }

.primary-navigation {
  background: #2A2E34;
  transition: all .3s ease-in-out;
  z-index: 999;
  position: fixed; }
  @media (max-width: 991px) {
    .primary-navigation {
      transform: translateX(-70px); } }
  .primary-navigation ul {
    padding: 0;
    margin: 0; }
  .primary-navigation__item {
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 2px 0px;
    color: #b4bcc8;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all .2s ease-in-out; }
    .primary-navigation__item svg {
      width: 35px;
      height: 35px;
      color: #888F9A;
      fill: #888F9A; }
    .primary-navigation__item:hover {
      background: #040406;
      color: white; }
      .primary-navigation__item:hover svg {
        fill: white;
        transition: fill .4s ease-in-out; }
    .primary-navigation__item.active {
      background: #FF4C3F;
      color: white; }
      .primary-navigation__item.active svg {
        fill: white; }
    .primary-navigation__item__title {
      left: 0;
      right: 0;
      transition: all .1s ease-in-out;
      font-weight: 500; }
    .primary-navigation__item__icon {
      display: block; }
      .primary-navigation__item__icon__notification {
        background: #ef5555 none repeat scroll 0 0;
        border-radius: 100%;
        color: white;
        display: inline-block;
        font-size: 10px;
        font-weight: 600;
        height: 16px;
        line-height: 16px;
        position: absolute;
        right: 26px;
        top: 15px;
        width: 16px; }
    .primary-navigation__item--hamburger {
      border-bottom: 1px solid #41464c;
      height: 69px;
      display: none;
      opacity: 0;
      transition: all .3s ease-in-out; }
      @media (max-width: 991px) {
        .primary-navigation__item--hamburger {
          display: block;
          opacity: 1; } }
      .primary-navigation__item--hamburger svg {
        width: 23px !important;
        height: 23px !important;
        margin-top: 6px !important;
        fill: white; }

@media (max-width: 991px) {
  .primary-navigation {
    width: 70px; }
  .primary-navigation__item {
    height: 70px;
    width: 70px; }
  .primary-navigation__item__icon {
    margin-bottom: 0; }
    .primary-navigation__item__icon svg {
      width: 30px;
      height: 30px; }
  .primary-navigation__item__title {
    display: none; }
  .primary-navigation__item__icon__notification {
    top: 10px;
    right: 10px; } }

.content-container {
  position: relative;
  display: block;
  min-height: 85vh;
  margin-left: 135px; }
  @media (max-width: 991px) {
    .content-container {
      margin-left: 0px; } }

.padded-container {
  transition: padding .3s ease-in-out; }
  @media (max-width: 991px) {
    .padded-container {
      padding-left: 0px; } }

.padded-container-after-navigation-bar {
  padding: 65px 0 30px 0; }

#app > div {
  display: flex; }

.main_container {
  flex: 1;
  width: 100%;
  box-sizing: border-box;
  padding-left: 100px; }

@media screen and (max-width: 992px) {
  .main_container {
    padding-left: 0; } }

.real-estate-infos__address {
  font-size: 13px;
  color: #8D949F;
  font-style: normal; }
  @media (max-width: 991px) {
    .real-estate-infos__address {
      overflow: auto;
      text-align: center;
      border-bottom: 1px solid white;
      padding-bottom: 25px; } }
  .real-estate-infos__address__title {
    font-weight: 400;
    display: block;
    font-size: 15px;
    color: #535963; }
  .real-estate-infos__address__city {
    text-transform: uppercase;
    display: block; }

.real-estate-infos__progress {
  background: #DADDE3;
  overflow: hidden;
  padding: 32px 40px 22px 40px; }
  @media (max-width: 991px) {
    .real-estate-infos__progress {
      padding: 32px 0px 22px 0px; } }
  .real-estate-infos__progress__bar {
    height: 3px;
    background: #979797; }
    .real-estate-infos__progress__bar__inner {
      background: #535963;
      width: 50%;
      height: 3px;
      display: block;
      border-radius: 0 3px 3px 0; }
  .real-estate-infos__progress__timeline-infos__text, .real-estate-infos__progress__timeline-infos__days {
    width: 50%;
    float: left; }
  .real-estate-infos__progress__timeline-infos__trimesters {
    width: 50%;
    float: left;
    text-align: right;
    font-size: 14px;
    color: #535963;
    margin-top: 18px;
    font-weight: 800;
    text-transform: uppercase; }
  .real-estate-infos__progress__timeline-infos__text {
    text-align: left;
    font-size: 13px;
    font-weight: 100;
    color: #535963;
    margin: 18px 0 5px 0;
    text-transform: uppercase; }
    @media (max-width: 991px) {
      .real-estate-infos__progress__timeline-infos__text {
        text-align: center; } }
  .real-estate-infos__progress__timeline-infos__days {
    text-align: right;
    font-size: 14px;
    color: #535963;
    margin-top: 10px;
    font-weight: 100; }
    .real-estate-infos__progress__timeline-infos__days b {
      font-size: 40px;
      color: #535963;
      text-transform: uppercase;
      letter-spacing: -0.6px;
      display: inline-block;
      vertical-align: middle;
      margin-right: 7px; }
    @media (max-width: 991px) {
      .real-estate-infos__progress__timeline-infos__days {
        text-align: center; } }

@media (max-width: 991px) {
  .real-estate-infos__progress-timeline {
    padding: 32px 50px 22px 50px; } }

.real-estate-infos__cover img {
  width: 100%; }

.real-estate-infos__profiles {
  background: white;
  overflow: hidden;
  padding: 20px 35px 0 35px; }
  .real-estate-infos__profiles__item {
    margin-bottom: 20px;
    padding-left: 90px;
    position: relative;
    padding-top: 8px;
    height: 68px; }
    .real-estate-infos__profiles__item__picture {
      background: #535963;
      display: inline-block;
      float: left;
      width: 68px;
      height: 68px;
      border-radius: 100%;
      position: absolute;
      left: 0;
      top: 0;
      background-size: cover;
      background-position: center; }
    .real-estate-infos__profiles__item__name {
      font-size: 13px;
      color: #535963;
      display: block;
      font-weight: 800; }
    .real-estate-infos__profiles__item__title {
      font-size: 13px;
      color: #535963;
      margin-top: 2px;
      display: block; }
    .real-estate-infos__profiles__item__phone {
      font-size: 13px;
      color: #8D949F;
      margin-top: 2px;
      display: block; }
    .real-estate-infos__profiles__item__message {
      color: #FF4C3F;
      bottom: 12px;
      font-size: 11px;
      text-decoration: none;
      line-height: 11px; }
      .real-estate-infos__profiles__item__message:before {
        content: "";
        width: 12px;
        height: 10px;
        display: inline-block;
        background: url(./assets/svg/icon-btn--message.svg);
        margin-right: 4px; }

.homepage-introduction {
  padding-left: 35px;
  padding-top: 20px;
  padding-right: 45px; }
  @media (max-width: 991px) {
    .homepage-introduction {
      padding-left: 25px;
      padding-right: 25px; } }
  .homepage-introduction__introduction p {
    font-size: 15px;
    color: #535963; }
  .homepage-introduction__introduction b {
    font-weight: 500; }
  .homepage-introduction__introduction h1 {
    font-weight: 500; }
  @media (max-width: 991px) {
    .homepage-introduction__introduction {
      text-align: center;
      margin-bottom: 45px; }
      .homepage-introduction__introduction h1 {
        font-size: 20px;
        color: #535963;
        font-weight: normal; } }
  .homepage-introduction__links {
    margin-top: 45px;
    position: relative; }
    .homepage-introduction__links p {
      font-size: 15px;
      color: #535963;
      font-weight: 100; }
      .homepage-introduction__links p b {
        font-weight: 800; }
    .homepage-introduction__links__item {
      display: block;
      font-size: 18px;
      color: #535963;
      margin-bottom: 35px;
      min-height: 95px;
      position: relative; }
      .homepage-introduction__links__item__title {
        display: block; }
      .homepage-introduction__links__item__content {
        line-height: 23px;
        display: inline-block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 140px; }
      .homepage-introduction__links__item__icon {
        width: 100px;
        height: 100px;
        border-radius: 100%;
        display: inline-block;
        background: white;
        position: absolute;
        left: 0; }
        .homepage-introduction__links__item__icon svg {
          width: 88px;
          height: 88px;
          margin-left: 6px;
          margin-top: 6px; }
      .homepage-introduction__links__item .button {
        margin-top: 15px;
        line-height: 20px; }
      @media (max-width: 1339px) {
        .homepage-introduction__links__item .homepage-introduction__links__item__title {
          font-size: 16px;
          line-height: 20px; } }

.home_sale_stepper {
  width: 450px;
  margin: 50px auto; }
  .home_sale_stepper .stepper {
    max-width: none;
    padding: 0; }
    .home_sale_stepper .stepper .stepper-progressbar-indicator {
      height: 4px; }
    .home_sale_stepper .stepper .stepper-progressbar {
      width: 515px;
      margin: 0 auto;
      top: 13px;
      left: -25px;
      z-index: 0;
      height: 4px; }
    .home_sale_stepper .stepper .step-circle-container {
      width: 22px;
      height: 22px;
      z-index: 2;
      border: 4px solid #B9C0C9; }
      .home_sale_stepper .stepper .step-circle-container svg {
        display: none;
        height: 15px;
        width: 15px; }
      .home_sale_stepper .stepper .step-circle-container.highlighted {
        border: 4px solid #27ae60; }
        .home_sale_stepper .stepper .step-circle-container.highlighted svg {
          display: inline-block; }
      .home_sale_stepper .stepper .step-circle-container.highlighted_doing {
        border: 4px solid #27ae60; }
        .home_sale_stepper .stepper .step-circle-container.highlighted_doing svg {
          fill: #27ae60; }
    .home_sale_stepper .stepper .step-title-container {
      font-size: 12px;
      width: 100px;
      text-transform: none;
      font-weight: 600;
      margin-top: 5px; }

.project_bloc .project_img {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 5px solid white;
  height: 200px;
  width: 100%;
  margin-bottom: 5px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: white; }
  .project_bloc .project_img svg {
    fill: #888f9a;
    height: 50px;
    width: 50px; }

.project_bloc .project_info {
  margin-bottom: 20px; }
  .project_bloc .project_info p {
    color: #535963;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
    max-width: 200px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap; }
    .project_bloc .project_info p.code_city {
      font-size: 12px;
      font-weight: normal; }

.project_info .stat_project {
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center; }
  .project_info .stat_project a {
    text-decoration: none;
    color: #535963; }
  .project_info .stat_project span {
    margin-right: 10px;
    display: flex;
    align-items: center; }
    .project_info .stat_project span svg {
      height: 15px;
      width: 15px;
      margin-right: 3px; }

@media screen and (max-width: 480px) {
  .project_bloc {
    margin-bottom: 10px; } }

@media screen and (min-width: 600px) and (max-width: 1200px) {
  .project-grid {
    grid-template-columns: repeat(3, 1fr) !important; } }

@media screen and (min-width: 1600px) {
  .project-grid {
    grid-template-columns: repeat(6, 1fr) !important; }
  .project_bloc .project_info p {
    max-width: 250px; } }

.conversations {
  padding: 0px; }
  .conversations__container {
    display: flex;
    height: calc(100vh - 215px); }
  @media (max-width: 991px) {
    .conversations {
      padding: 0 0; } }
  .conversations__header {
    overflow: hidden;
    margin-bottom: 15px; }
    .conversations__header__search {
      background: white;
      width: 385px;
      border-radius: 3px;
      border: 1px solid #DADDE3;
      padding: 7px 10px 7px 40px;
      box-sizing: border-box;
      float: left;
      position: relative; }
      @media (max-width: 991px) {
        .conversations__header__search {
          display: none; } }
      .conversations__header__search:before {
        content: "";
        background-image: url(./assets/svg/conversations--search.svg);
        width: 15px;
        height: 15px;
        position: absolute;
        left: 13px;
        top: 10px;
        background-size: 15px 15px; }
      .conversations__header__search input {
        border: none;
        outline: none;
        font-size: 14px;
        width: 100%; }
    .conversations__header__controls {
      float: right;
      display: flex;
      align-items: center; }
      .conversations__header__controls .button {
        padding: 11px 20px 11px 20px;
        font-weight: 600;
        font-size: 13px; }
        .conversations__header__controls .button svg {
          width: 15px;
          height: 15px;
          fill: white;
          float: left;
          margin-right: 7px; }
      @media (max-width: 991px) {
        .conversations__header__controls {
          text-align: center;
          float: none;
          display: none; } }
  .conversations-list__container {
    max-width: 470px;
    min-width: 437px;
    overflow: hidden;
    border: 1px solid #dadada;
    border-radius: 4px;
    background: #FFFFFF;
    border-radius: 5px; }
  .conversations-list__list {
    height: 95%; }
  .conversations-list__header {
    margin: 0 25px;
    font-size: 13px;
    color: #2A2E34;
    display: block;
    position: relative; }
    .conversations-list__header .conversations-list__header-icons {
      width: 13px;
      height: 12px;
      margin-right: 5px;
      fill: none;
      stroke: #000000;
      stroke-width: 2;
      stroke-miterlimit: 10; }
    .conversations-list__header:before {
      content: " ";
      border-bottom: 2px solid #DADDE3;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 5; }
    .conversations-list__header__item {
      font-size: 13px;
      color: #8E949F;
      text-decoration: none;
      padding: 15px 0;
      margin: 0 15px;
      display: inline-block;
      z-index: 10;
      position: relative;
      transition: color .4s ease-in-out;
      display: flex;
      align-items: center; }
      .conversations-list__header__item:after {
        content: " ";
        border-bottom: 2px solid #FF4C3F;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 5;
        width: 0%;
        margin: auto;
        text-align: center;
        opacity: 0;
        transition: all .2s ease-in-out; }
      .conversations-list__header__item:first-child {
        margin-left: 0; }
      .conversations-list__header__item:last-child {
        margin-right: 0; }
      .conversations-list__header__item:hover, .conversations-list__header__item.active {
        color: #2A2E34; }
        .conversations-list__header__item:hover:after, .conversations-list__header__item.active:after {
          width: 100%;
          opacity: 1; }
  .conversations-list__message {
    background: #F0F3F5;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    display: block;
    border-bottom: 1px solid #DADDE3;
    padding: 15px 15px 15px 80px;
    text-decoration: none;
    position: relative;
    height: 130px;
    overflow: hidden;
    box-sizing: border-box;
    outline: none;
    margin: 0 15px; }
    .conversations-list__message__wrapper {
      position: relative; }
      .conversations-list__message__wrapper:hover .conversations-list__message, .conversations-list__message__wrapper:focus .conversations-list__message, .conversations-list__message__wrapper.is-checked .conversations-list__message {
        border-left: 1px solid #DADDE3;
        border-right: 1px solid #DADDE3;
        z-index: 999; }
      .conversations-list__message__wrapper:hover.can-be-checked .conversations-list__message__checkbox, .conversations-list__message__wrapper:focus.can-be-checked .conversations-list__message__checkbox, .conversations-list__message__wrapper.is-checked.can-be-checked .conversations-list__message__checkbox {
        opacity: 1;
        visibility: visible;
        z-index: 1000; }
    .conversations-list__message > * {
      margin-left: 25px; }
    .conversations-list__message .icon_archive {
      position: absolute;
      height: 16px;
      top: -1px;
      right: -129px; }
    .conversations-list__message__picture {
      position: absolute;
      left: 15px;
      background: white;
      border-radius: 100%;
      width: 50px;
      height: 50px;
      display: block;
      background-size: cover;
      background-position: center;
      background-image: url(./assets/svg/conversations--default-picture.svg); }
    .conversations-list__message__checkbox {
      position: absolute;
      left: 25px;
      width: 15px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 250ms ease-in; }
    .conversations-list__message__favorite-label {
      position: absolute;
      right: 10px;
      top: -1px;
      width: 9px;
      height: 15px;
      background-size: 9px 15px;
      background-image: url(./assets/svg/conversations--favorite-label.svg); }
    .conversations-list__message__name {
      align-items: center;
      gap: 10px;
      width: 85%;
      font-size: 13px;
      font-weight: normal;
      color: #535963;
      word-break: break-word; }
    .conversations-list__message__subject {
      display: block;
      font-size: 13px;
      font-weight: normal;
      color: #535963; }
    .conversations-list__message__excerpt {
      display: block;
      font-size: 12px;
      margin-top: 4px;
      color: #8D949F; }
    .conversations-list__message__date {
      font-size: 10px;
      color: #8D949F; }
    .conversations-list__message:hover, .conversations-list__message:focus {
      background: #f4f5f67c; }
    .conversations-list__message__unread {
      font-size: 10px;
      color: black;
      margin-right: 10px;
      align-self: center;
      display: inline-block;
      margin-left: 10px;
      vertical-align: middle; }
      .conversations-list__message__unread div {
        display: flex;
        align-items: center; }
      .conversations-list__message__unread svg {
        width: 13px;
        margin-right: 2px;
        height: 12px;
        vertical-align: middle; }
    .conversations-list__message.unread {
      background: white; }
      .conversations-list__message.unread .conversations-list__message__name:after {
        background: #F1F3F5;
        border-radius: 3px;
        margin-left: 5px;
        font-size: 10px;
        padding: 2px 5px;
        display: inline-block;
        color: #8D949F;
        margin-top: -2px; }
      .conversations-list__message.unread .conversations-list__message__date,
      .conversations-list__message.unread .conversations-list__message__name,
      .conversations-list__message.unread .conversations-list__message__subject {
        color: black;
        font-weight: 700; }
    .conversations-list__message--with-attachments .conversations-list__message__excerpt:before {
      content: "";
      width: 10px;
      height: 10px;
      background: url(./assets/svg/conversations--attachements.svg);
      background-size: 10px 10px;
      display: inline-block;
      margin-right: 5px; }
  .conversations-messages__container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    border: 1px solid #dadada;
    border-radius: 4px;
    background: #FFFFFF;
    border-radius: 5px;
    margin-left: 20px;
    overflow: hidden; }
  .conversations-messages__header {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap; }
  .conversations-messages__header, .conversations-messages__header-form {
    border-bottom: 1px solid #DADDE3;
    margin-bottom: 10px;
    padding: 12px 25px 8px 25px;
    overflow: auto; }
    .conversations-messages__header__link, .conversations-messages__header-form__link {
      float: left;
      font-size: 13px;
      color: #535963;
      line-height: 25px;
      text-decoration: none;
      margin-right: 15px; }
      .conversations-messages__header__link:last-child, .conversations-messages__header-form__link:last-child {
        margin-right: 0; }
      .conversations-messages__header__link svg, .conversations-messages__header-form__link svg {
        width: 21px;
        height: 21px;
        float: left;
        margin-right: 15px; }
    .conversations-messages__header__project, .conversations-messages__header-form__project {
      font-size: 13px;
      color: #535963;
      line-height: 25px;
      display: flex;
      align-items: center;
      margin-bottom: 0; }
      .conversations-messages__header__project svg, .conversations-messages__header-form__project svg {
        width: 16px;
        height: 16px;
        fill: #535963;
        margin-right: 15px; }
      .conversations-messages__header__project_name, .conversations-messages__header-form__project_name {
        font-weight: 600; }
      .conversations-messages__header__project_batch, .conversations-messages__header-form__project_batch {
        margin-left: 10px; }
  .conversations-messages__header-responsive {
    border-bottom: 1px solid #DADDE3;
    padding: 20px;
    overflow: auto;
    display: none; }
    .conversations-messages__header-responsive__back {
      margin-left: 15px; }
      .conversations-messages__header-responsive__back svg {
        height: 20px;
        width: 11px;
        fill: #d8d8d8;
        stroke: #e6e6e6;
        stroke-width: 1px; }
    .conversations-messages__header-responsive .conversations-messages__header__link {
      float: right;
      margin-left: 40px;
      margin-right: 0px; }
  .conversations-messages__header-form {
    box-sizing: border-box;
    padding: 0 0 0 60px;
    position: relative;
    overflow: visible; }
    .conversations-messages__header-form:before {
      content: " ";
      background-image: url(./assets/svg/conversations--messages-form-header.svg);
      width: 15px;
      height: 15px;
      background-size: 15px 15px;
      top: 17px;
      left: 30px;
      position: absolute; }
    .conversations-messages__header-form__subject {
      position: relative;
      padding: 5px 0 15px 60px;
      border-bottom: 1px solid #DADDE3; }
      .conversations-messages__header-form__subject input {
        border: none;
        font-size: 13px;
        color: #8D949F;
        outline: none;
        width: 100%; }
      .conversations-messages__header-form__subject:before {
        content: " ";
        background-image: url(./assets/svg/conversations--subject.svg);
        width: 15px;
        height: 15px;
        background-size: 15px 15px;
        top: 8px;
        left: 30px;
        position: absolute; }
    .conversations-messages__header-form__select-list {
      padding: 13px 0 10px 0;
      overflow: visible; }
      .conversations-messages__header-form__select-list__placeholder {
        font-size: 13px;
        color: #8D949F;
        padding: 4px 0; }
      .conversations-messages__header-form__select-list__item {
        font-weight: 700;
        font-size: 13px;
        color: #535963;
        background: #F1F3F5;
        border-radius: 4px;
        padding: 3px 8px;
        margin-right: 6px;
        display: inline-block;
        float: left;
        margin-bottom: 5px; }
        .conversations-messages__header-form__select-list__item__remove {
          width: 10px;
          height: 10px;
          background-image: url(./assets/svg/conversations--messages-form-header-remove.svg);
          background-size: 10px 10px;
          display: inline-block;
          margin-left: 5px;
          margin-top: 3px;
          float: right; }
  .conversations-messages__message-item {
    border-bottom: 1px solid #DADDE3;
    padding: 20px 20px 20px 95px;
    position: relative; }
    .conversations-messages__message-item.message-item__alert {
      padding: 20px 40px; }
    .conversations-messages__message-item.message-item__draft {
      opacity: 0.5;
      cursor: pointer; }
      .conversations-messages__message-item.message-item__draft .conversations-messages__compose__trash {
        opacity: 1;
        visibility: visible; }
        .conversations-messages__message-item.message-item__draft .conversations-messages__compose__trash svg {
          fill: black; }
    .conversations-messages__message-item .message-item-category {
      position: relative;
      top: -2px;
      margin-left: 4px; }
    .conversations-messages__message-item:last-child {
      border-bottom: none; }
    .conversations-messages__message-item__infos--message {
      display: flex;
      justify-content: space-between; }
      .conversations-messages__message-item__infos--message__subject {
        font-size: 15px;
        color: #535963;
        font-weight: 500;
        margin-top: 6px; }
      .conversations-messages__message-item__infos--message__sender {
        font-size: 16px;
        color: #535963;
        font-weight: 700;
        margin-right: 5px; }
      .conversations-messages__message-item__infos--message__recipient {
        font-size: 16px;
        color: #535963; }
    .conversations-messages__message-item__infos__subject {
      font-size: 15px;
      color: #535963;
      font-weight: 500;
      margin-top: 6px; }
    .conversations-messages__message-item__infos__sender {
      font-size: 16px;
      color: #535963;
      font-weight: 700;
      margin-right: 5px; }
    .conversations-messages__message-item__infos__recipient {
      font-size: 16px;
      color: #535963; }
    .conversations-messages__message-item__time-info {
      font-size: 13px;
      color: #8D949F;
      flex-grow: 1;
      white-space: nowrap;
      text-align: right;
      padding-left: 5px; }
    .conversations-messages__message-item__message-status-promoter, .conversations-messages__message-item__message-status-consumer {
      font-size: 10px;
      color: #535963;
      position: absolute;
      right: 22px;
      bottom: 20px; }
      .conversations-messages__message-item__message-status-promoter:before, .conversations-messages__message-item__message-status-consumer:before {
        background-image: url(./assets/svg/conversations--sent.svg);
        width: 12px;
        height: 10px;
        background-size: 12px 10px;
        content: " ";
        float: left;
        display: inline-block;
        margin-right: 8px; }
    .conversations-messages__message-item__profile-picture {
      position: absolute;
      left: 30px;
      top: 20px;
      border-radius: 100%;
      background: white;
      width: 50px;
      height: 50px;
      background-size: cover;
      background-position: center;
      background-image: url(./assets/svg/conversations--default-picture.svg); }
    .conversations-messages__message-item__content {
      font-size: 15px;
      color: #535963;
      padding-right: 100px;
      margin-top: 30px; }
    .conversations-messages__message-item__attachments {
      background-image: url(./assets/svg/conversations--attachements.svg);
      background-repeat: no-repeat;
      background-position-x: left;
      background-position-y: center;
      background-size: 15px 15px;
      padding: 0px 10px 10px 26px; }
      .conversations-messages__message-item__attachments__item {
        background: #F1F1F1;
        color: #535963;
        font-size: 10px;
        text-decoration: none;
        padding: 7px 10px 7px 10px;
        position: relative;
        margin-right: 15px;
        display: inline-block;
        border-radius: 5px; }
        @media (max-width: 991px) {
          .conversations-messages__message-item__attachments__item {
            margin-bottom: 15px; } }
        .conversations-messages__message-item__attachments__item:last-child {
          margin-bottom: 0px; }
        .conversations-messages__message-item__attachments__item:before {
          content: " ";
          position: absolute;
          left: 0;
          top: 0;
          bottom: 0;
          width: 27px;
          background: black;
          background-repeat: no-repeat;
          background-position: center center;
          background-size: 15px 15px;
          fill: white;
          display: none; }
        .conversations-messages__message-item__attachments__item--word:before {
          background-color: #1B559E;
          background-image: url(./assets/svg/attachements--word.svg); }
        .conversations-messages__message-item__attachments__item--pdf:before {
          background-color: #DE001C;
          background-image: url(./assets/svg/attachements--pdf.svg); }
  .conversations-messages__compose {
    border-top: 1px solid #DADDE3;
    padding: 0 0 0 95px;
    background: white;
    min-height: 85px;
    transition: all .3s ease-in-out;
    position: relative; }
    .conversations-messages__compose--static {
      position: relative;
      border-top: none; }
    .conversations-messages__compose .conversations-messages__message-item__infos {
      transition: all .5s ease-in-out;
      transform: translateY(30px);
      opacity: 0;
      visibility: hidden;
      height: 0;
      overflow: hidden; }
    .conversations-messages__compose .better-elastic-textarea {
      transition: all .7s ease-in-out;
      transform: translateY(30px);
      opacity: 0;
      visibility: hidden;
      height: 0;
      overflow: hidden;
      resize: none; }
    .conversations-messages__compose textarea {
      resize: none;
      width: 100%;
      height: 100%;
      min-height: 100px;
      max-height: 300px;
      overflow: scroll; }
    .conversations-messages__compose__input {
      width: 100%;
      box-sizing: border-box;
      display: block;
      border: 0;
      outline: none;
      padding: 35px 30px 35px 0;
      transition: all .5s ease-in-out; }
    .conversations-messages__compose__send-button-fake {
      position: absolute;
      right: 25px;
      bottom: 25px;
      opacity: .5;
      transition: all .3s ease-in-out; }
    .conversations-messages__compose__send-button {
      padding: 8px 20px;
      margin-right: 8px; }
      .conversations-messages__compose__send-button:last-child {
        margin-right: 0px; }
      .conversations-messages__compose__send-button svg {
        float: left;
        width: 11px;
        height: 11px;
        margin-top: 2px;
        margin-right: 10px; }
    .conversations-messages__compose__send-button-ia {
      padding: 8px 20px;
      margin-right: 8px;
      font-weight: bold;
      background: linear-gradient(306deg, #d030a3 0%, #94288f, 100%, #00d4ff 100%) !important; }
      .conversations-messages__compose__send-button-ia svg {
        float: left;
        width: 11px;
        height: 11px;
        margin-top: 2px;
        margin-right: 10px; }
    .conversations-messages__compose__controls-left {
      position: absolute;
      bottom: 35px;
      left: 95px;
      transform: translateY(20px);
      opacity: 0;
      visibility: hidden;
      transition: all .3s ease-in-out;
      background: white; }
    .conversations-messages__compose__add-attachment {
      font-size: 12px;
      color: #8D949F;
      text-decoration: none;
      display: inline-block;
      margin-left: 32px;
      line-height: 20px; }
      .conversations-messages__compose__add-attachment:before {
        content: " ";
        display: inline-block;
        background: url("./assets/svg/conversations--attachements.svg");
        width: 20px;
        height: 20px;
        background-size: 20px 20px;
        float: left;
        margin-right: 10px; }
    .conversations-messages__compose__profile-picture {
      position: absolute;
      left: 30px;
      top: 20px;
      border-radius: 100%;
      background: white;
      width: 50px;
      height: 50px;
      background-size: cover;
      background-position: center;
      background-image: url(./assets/svg/conversations--default-picture.svg); }
    .conversations-messages__compose__message-body {
      border: none;
      outline: none;
      font-size: 15px;
      color: #535963;
      margin-top: 30px; }
    .conversations-messages__compose__trash {
      position: absolute;
      right: 27px;
      bottom: 37px;
      transform: translateY(20px);
      opacity: 0;
      visibility: hidden;
      transition: all .3s ease-in-out; }
      .conversations-messages__compose__trash svg {
        width: 17px;
        height: 20px;
        fill: #8D949F; }
    .conversations-messages__compose--open {
      min-height: 250px;
      padding-top: 20px; }
      .conversations-messages__compose--open .conversations-messages__compose__trash,
      .conversations-messages__compose--open .conversations-messages__compose__controls-left {
        transform: translateY(0);
        opacity: 1;
        visibility: visible; }
      .conversations-messages__compose--open .conversations-messages__message-item__infos {
        transform: translateY(0px);
        opacity: 1;
        visibility: visible;
        height: auto; }
      .conversations-messages__compose--open .conversations-messages__compose__input {
        transform: translateY(-50px);
        opacity: 0;
        visibility: hidden; }
      .conversations-messages__compose--open .conversations-messages__compose__help-button-empty-msg {
        visibility: hidden;
        transform: translateY(20px);
        opacity: 0; }
      .conversations-messages__compose--open .conversations-messages__compose__send-button-fake {
        visibility: hidden;
        transform: translateY(20px);
        opacity: 0; }
      .conversations-messages__compose--open .better-elastic-textarea {
        transform: translateY(0px);
        opacity: 1;
        visibility: visible;
        height: auto;
        overflow: inherit; }
  .conversations__new-mobile-button {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: #535963;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    display: inline-block;
    position: fixed;
    bottom: 25px;
    right: 15px;
    z-index: 1000;
    overflow: hidden;
    background-image: url(./assets/svg/conversations--message.svg);
    background-size: 30px 25px;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .5s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px) rotate(30deg); }
    .conversations__new-mobile-button:hover {
      background-color: #40464F; }
    @media (max-width: 991px) {
      .conversations__new-mobile-button {
        opacity: 1;
        visibility: visible;
        transform: translateX(0px) rotate(0deg); } }

@media (max-width: 991px) {
  .conversations-messages__container.conversations-messages__container--open {
    transform: scale3d(1, 1, 1) translateY(0);
    opacity: 1;
    visibility: visible; }
  .conversations-list__container {
    width: 100%;
    padding-top: 15px; }
  .conversations-list__list {
    margin: 0;
    width: 100%; }
  .conversations-messages__compose__profile-picture {
    width: 40px;
    height: 40px;
    top: 23px; }
  .conversations-messages__compose__send-button-fake {
    display: none; } }

.conversation_message_content {
  flex: 1;
  overflow: scroll;
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */ }

.conversation_message_content::-webkit-scrollbar {
  display: none; }

/* Assurer que le contenu est toujours scrollable */
.conversations-messages__compose.conversations-messages__compose--static.conversations-messages__compose--open {
  flex: 1; }

@media screen and (max-width: 992px) {
  .conversations {
    padding: 15px !important; }
    .conversations-list__container {
      min-width: 290px;
      max-width: 100%; } }

@media screen and (max-width: 400px) {
  .conversations-list__header-icons {
    display: none; } }

@media screen and (max-width: 768px) {
  .conversations-messages__container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin-left: 0;
    z-index: 1000;
    transform: scale3d(0.9, 0.9, 0.9) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease-in-out; }
  .conversations-messages__header-responsive {
    display: inherit; }
  .conversations-messages__header {
    display: none; } }

_:-ms-fullscreen, :root .conversation-messages__nomessages {
  height: 30%;
  position: relative;
  top: 25%; }

@media screen and (min-width: 769px) {
  .conversation_buttonback {
    display: none; } }

.remodal-close {
  width: 15px;
  height: 15px;
  background-image: url("./assets/svg/modal--close.svg");
  background-repeat: no-repeat;
  background-size: 15px 15px;
  position: absolute;
  top: 25px;
  right: 25px; }

.remodal-overlay {
  background: rgba(42, 46, 52, 0.45); }

.modal__body {
  text-align: center;
  font-size: 15px;
  color: #535963;
  font-weight: 500;
  line-height: 25px; }
  .modal__body--height-600 {
    min-height: 600px; }

.modal__title {
  font-size: 20px;
  color: #535963;
  font-weight: 700;
  margin-bottom: 30px; }

.modal__round-icon {
  width: 110px;
  height: 110px;
  background: #F1F3F5;
  border-radius: 100%;
  display: inline-block;
  margin-bottom: 30px; }
  .modal__round-icon svg {
    width: 100px;
    height: 90px;
    margin-top: 10px;
    transform: scale(0.6);
    transition: all .5s ease-in-out;
    fill-opacity: 0; }

.modal__button {
  outline: none;
  border: none;
  padding: 12px 30px;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  background: #535963;
  line-height: 25px;
  margin-top: 30px;
  margin-bottom: 10px; }
  .modal__button svg {
    fill: white;
    float: left;
    width: 20px;
    height: 20px;
    margin-right: 10px; }

.modal__select {
  position: relative;
  text-align: left;
  display: block;
  max-width: 490px;
  margin: auto;
  border-radius: 4px;
  padding: 15px 30px; }
  .modal__select .contact-select-simple {
    top: 56px;
    width: 490px;
    left: 0;
    right: 0;
    margin: auto; }

.remodal-is-opened .modal__round-icon svg,
.remodal-is-opening .modal__round-icon svg {
  transform: scale(1);
  fill-opacity: 1; }

@media only screen and (min-width: 641px) {
  .remodal--big {
    max-width: 760px !important; } }

.modal-photoChoice {
  width: 100% !important;
  padding: 30px !important;
  text-align: left;
  background-color: #FFF !important; }
  .modal-photoChoice .contentPhoto_choice {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    margin: 40px 0; }
    .modal-photoChoice .contentPhoto_choice .photoChoice {
      background-color: #F4F4F4;
      border-radius: 5px;
      width: 180px;
      height: 180px;
      padding: 15px;
      margin: 15px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: all 0.5s;
      cursor: pointer; }
      .modal-photoChoice .contentPhoto_choice .photoChoice:hover, .modal-photoChoice .contentPhoto_choice .photoChoice:active {
        background-color: #e6e6e6; }
      .modal-photoChoice .contentPhoto_choice .photoChoice .nameChoice {
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 0; }
      .modal-photoChoice .contentPhoto_choice .photoChoice .descriptionChoice {
        text-transform: uppercase;
        margin-bottom: 0; }
      .modal-photoChoice .contentPhoto_choice .photoChoice svg {
        width: 80px;
        height: 80px; }
      .modal-photoChoice .contentPhoto_choice .photoChoice.selected {
        color: #FFF;
        background-color: green; }
        .modal-photoChoice .contentPhoto_choice .photoChoice.selected svg {
          fill: #FFF; }

.modal-large {
  max-width: 1200px !important;
  border-radius: 10px; }
  .modal-large .modal__header {
    border-bottom: 1px solid #f2f2f4;
    padding-bottom: 20px;
    text-align: left; }

.modal-medium {
  max-width: 700px !important;
  border-radius: 10px; }
  .modal-medium .modal__header {
    border-bottom: 1px solid #f2f2f4;
    padding-bottom: 20px;
    text-align: left; }

.form_modal_photoChoice {
  margin-top: 20px; }
  .form_modal_photoChoice textarea {
    background-color: #F4F4F4;
    border-radius: 5px;
    width: 100%;
    padding: 20px;
    border: 1px solid #CDC9C9;
    box-sizing: border-box;
    outline: none; }

@media only screen and (min-width: 641px) {
  .modal-photoChoice {
    max-width: 750px !important; } }

@media only screen and (max-width: 768px) {
  .modal-photoChoice .contentPhoto_choice {
    margin: 30px 0;
    justify-content: space-around; }
    .modal-photoChoice .contentPhoto_choice .photoChoice {
      width: 120px;
      height: 120px; }
    .modal-photoChoice .contentPhoto_choice svg {
      width: 50px;
      height: 50px; } }

.modal-exception__left-panel {
  width: 15% !important;
  min-height: 150px !important;
  display: flex;
  justify-content: center;
  align-items: center; }

.modal-exception__left-panel-error {
  background: #ffddd7 !important; }

.modal-exception__left-panel-warning {
  background: #fdead2 !important; }

.modal-exception__left-panel-success {
  background: #dcfaee !important; }

.modal-exception__left-panel-info {
  background: #dedddc !important; }

.modal-exception__left-panel-svg {
  width: 50px;
  height: 50px;
  fill: white; }

.modal-exception__right-panel {
  min-height: 20px !important;
  padding-bottom: 20px;
  width: 85% !important; }

.modal-exception__right-panel-title {
  padding: 20px;
  text-align: left;
  font-weight: bold; }

.modal-exception__right-panel-title-error {
  color: #d32e2e; }

.modal-exception__right-panel-title-warning {
  color: #e0843d; }

.modal-exception__right-panel-title-success {
  color: #27ae60; }

.modal-exception__right-panel-title-info {
  color: #535963; }

.modal-document-sectional-list table {
  box-shadow: unset !important; }
  .modal-document-sectional-list table .category-title {
    padding-bottom: 10px;
    font-weight: bold;
    padding-top: 20px; }
  .modal-document-sectional-list table .document-icon {
    width: 30px;
    line-height: 20px; }
  .modal-document-sectional-list table .document-filename {
    font-weight: normal; }
  .modal-document-sectional-list table .document-link {
    text-align: right; }
  .modal-document-sectional-list table td {
    border-top: none !important;
    border-bottom: none !important;
    background: white !important;
    padding: 0; }

.modal-content-email {
  display: flex;
  flex-direction: column;
  gap: 8px; }
  .modal-content-email .title {
    font-size: 18px;
    font-weight: bold; }
  .modal-content-email .button-action {
    display: flex;
    gap: 12px; }

.modal-cgu .modal__body input[type=checkbox] {
  margin-right: 10px; }

.modal-cgu .modal__body a,
.modal-cgu .modal__body a:active,
.modal-cgu .modal__body a:visited {
  font-weight: bold;
  text-decoration: underline;
  color: #535963; }
  .modal-cgu .modal__body a:hover,
  .modal-cgu .modal__body a:active:hover,
  .modal-cgu .modal__body a:visited:hover {
    color: #333; }

.contact-select {
  width: 490px;
  height: 590px;
  background: #FFFFFF;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 1000;
  position: absolute;
  top: 45px; }
  .contact-select__search {
    background: white;
    width: 100%;
    border-radius: 3px;
    border: 1px solid #DADDE3;
    padding: 7px 10px 7px 40px;
    box-sizing: border-box;
    float: left;
    position: relative;
    margin-bottom: 15px; }
    .contact-select__search:before {
      content: "";
      background-image: url(./assets/svg/conversations--search.svg);
      width: 15px;
      height: 15px;
      position: absolute;
      left: 13px;
      top: 10px;
      background-size: 15px 15px; }
    .contact-select__search__reset {
      background-image: url(./assets/svg/conversations--messages-form-header-remove.svg);
      width: 15px;
      height: 15px;
      position: absolute;
      right: 13px;
      top: 9px;
      background-size: 15px 15px; }
    .contact-select__search input {
      border: none;
      outline: none;
      font-size: 13px;
      width: 100%; }
  .contact-select__list {
    position: absolute;
    top: 51px;
    left: 5px;
    bottom: 75px;
    right: 5px;
    overflow: hidden;
    width: 100%; }
    .contact-select__list .mCSB_dragger {
      height: 157px !important; }
    .contact-select__list__program__row {
      margin-top: 10px;
      overflow: auto; }
    .contact-select__list__inner {
      height: 100%;
      padding: 0 0 0 20px;
      box-sizing: border-box; }
    .contact-select__list__group-title {
      font-size: 12px;
      color: #8D949F;
      font-weight: 500;
      text-transform: uppercase;
      margin-bottom: 10px;
      margin-top: 25px; }
    .contact-select__list__item {
      font-size: 12px;
      color: #535963;
      text-decoration: none;
      display: block;
      border-bottom: 1px solid #DADDE3;
      padding: 8px 0;
      transition: all .3s linear;
      position: relative; }
      .contact-select__list__item b {
        font-size: 13px;
        color: #535963;
        font-weight: 700; }
      .contact-select__list__item__section-marker {
        font-size: 13px;
        color: #8D949F;
        text-transform: uppercase;
        font-weight: 500;
        position: absolute;
        left: -20px; }
      .contact-select__list__item:hover {
        background: #F1F3F5; }
      .contact-select__list__item--selected {
        background: #F1F3F5; }
        .contact-select__list__item--selected:after {
          content: " ";
          background-image: url(./assets/svg/ui-checked.svg);
          width: 15px;
          height: 15px;
          background-size: 15px 15px;
          position: absolute;
          right: 10px; }
    .contact-select__list__item-program {
      overflow: hidden;
      margin-bottom: 20px;
      width: 47%;
      margin-right: 5%;
      float: left; }
      .contact-select__list__item-program:nth-of-type(even) {
        margin-right: 0%; }
      .contact-select__list__item-program__picture {
        background: #333;
        height: 110px;
        width: 100%;
        background-size: cover;
        background-position: center center;
        position: relative; }
      .contact-select__list__item-program--checked .contact-select__list__item-program__picture:before {
        content: " ";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(83, 89, 99, 0.56); }
      .contact-select__list__item-program--checked .contact-select__list__item-program__picture:after {
        content: " ";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-image: url(./assets/svg/ui-checked-white.svg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 48px 48px;
        z-index: 500; }
      .contact-select__list__item-program__text {
        font-size: 13px;
        color: #2A2E34;
        font-weight: 600;
        margin-top: 10px; }
  .contact-select__select-all {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #F1F3F5;
    font-size: 13px;
    color: #535963;
    padding: 30px 40px; }
    .contact-select__select-all label {
      margin-left: 10px; }

.contact-select-simple {
  position: absolute;
  width: 440px;
  background: #FFFFFF;
  top: 45px;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  z-index: 1000;
  line-height: 16px; }
  .contact-select-simple__item {
    padding: 10px 0 10px 80px;
    text-decoration: none;
    display: block;
    position: relative; }
    .contact-select-simple__item:hover {
      background: #F1F3F5; }
    .contact-select-simple__item__picture {
      width: 33px;
      height: 33px;
      border-radius: 100%;
      position: absolute;
      left: 32px;
      top: 8px;
      background-size: cover;
      background-position: center center; }
    .contact-select-simple__item__title {
      font-weight: 100;
      font-size: 13px;
      color: #535963;
      display: block; }
    .contact-select-simple__item__name {
      font-weight: 600;
      font-size: 13px;
      color: #535963;
      display: block; }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-70%) scale(0.9); }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1); } }

.signin-form {
  box-shadow: 0 2px 4px 0 rgba(4, 5, 6, 0.15);
  background: white;
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  max-width: 600px;
  width: 100%;
  margin: auto;
  border-radius: 4px; }
  @media (min-width: 768px) {
    .signin-form {
      top: 50%;
      transform: translateY(-50%);
      -webkit-animation-name: fadeInDown;
      animation-name: fadeInDown;
      -webkit-animation-duration: 1s;
      animation-duration: 1s;
      -webkit-animation-fill-mode: both;
      animation-fill-mode: both; } }
  @media (max-width: 767px) {
    .signin-form {
      transform: translateY(0);
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      width: auto; } }
  .signin-form .button {
    padding: 10px 30px;
    float: right; }
  .signin-form__container {
    text-align: center; }
  .signin-form__forgot {
    float: left;
    display: block; }
    .signin-form__forgot a {
      color: #333;
      text-decoration: none;
      line-height: 18px;
      font-size: 12px;
      display: block;
      transition: all .3s ease-in-out; }
      .signin-form__forgot a svg {
        float: left;
        width: 12px;
        height: 12px;
        margin-right: 8px;
        fill: #b1b1b1;
        margin-top: 2px;
        transition: all .3s ease-in-out; }
      .signin-form__forgot a:hover {
        color: #333; }
        .signin-form__forgot a:hover svg {
          fill: #333; }
  .signin-form__sso {
    padding-bottom: 20px; }
    .signin-form__sso_button {
      float: none !important; }
  .signin-form__form {
    text-align: left;
    padding: 30px 40px 40px 40px;
    overflow: hidden; }
    .signin-form__form input {
      box-sizing: border-box;
      outline: none;
      border: 1px solid #DADDE3;
      border-radius: 7px;
      background: #fdfdfd; }
      .signin-form__form input:focus {
        border-color: #8D949F; }
    .signin-form__form label {
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 11px;
      margin-bottom: 10px;
      font-weight: 800;
      color: #333;
      display: block; }
  .signin-form__header {
    display: block;
    text-align: center;
    border-bottom: 1px solid #e8e8e8; }
    .signin-form__header__title {
      text-transform: uppercase;
      font-size: 18px;
      padding: 30px 0;
      transition: all .4s ease-in-out; }
      .signin-form__header__title b {
        color: red;
        font-weight: normal; }
    .signin-form__header__form {
      display: block; }
  .signin-form__text {
    text-align: center;
    line-height: 35px;
    color: #535963;
    padding: 50px 20px; }

.pictures {
  padding: 0 10px 0 30px;
  display: block;
  margin-top: 30px; }
  .pictures__title {
    font-size: 24px;
    color: #535963;
    text-align: center;
    margin-bottom: 45px;
    margin-top: 40px; }
  .pictures__header {
    padding: 0 20px 0 0;
    margin-bottom: 20px; }
    .pictures__header select {
      float: left;
      margin-right: 15px; }
    .pictures__header__left {
      float: left;
      width: 60%; }
    .pictures__header__right {
      float: right; }
    .pictures__header .button {
      margin-left: 15px; }
      .pictures__header .button svg {
        width: 15px;
        height: 15px;
        float: left;
        fill: white;
        margin-right: 8px;
        stroke: white; }
    .pictures__header select {
      padding: 11px 20px 11px 20px;
      background-position: 92% 16px; }
    @media (max-width: 1339px) {
      .pictures__header select {
        width: 200px;
        min-width: auto; } }
    @media (max-width: 991px) {
      .pictures__header select {
        display: block;
        width: 100%;
        margin: 0;
        margin-bottom: 15px; }
      .pictures__header .button {
        display: block;
        margin: 0;
        margin-bottom: 15px;
        overflow: hidden; }
      .pictures__header .pictures__header__right,
      .pictures__header .pictures__header__left {
        float: none; } }
  .pictures__grid__sizer {
    width: 20%; }
    @media (max-width: 1339px) {
      .pictures__grid__sizer {
        width: 25%; } }
    @media (max-width: 991px) {
      .pictures__grid__sizer {
        width: 33.333%; } }
    @media (max-width: 767px) {
      .pictures__grid__sizer {
        width: 50%; } }
    @media (max-width: 543px) {
      .pictures__grid__sizer {
        width: 100%; } }
  .pictures__grid__item {
    margin-bottom: 20px;
    background: white;
    display: inline-block;
    position: relative;
    width: calc(20% - 20px);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer; }
    .pictures__grid__item--error {
      box-shadow: 0px 0px 4px 2px rgba(255, 0, 0, 0.72); }
    @media (max-width: 1339px) {
      .pictures__grid__item {
        width: calc(25% - 20px); } }
    @media (max-width: 991px) {
      .pictures__grid__item {
        width: calc(33.333% - 20px); } }
    @media (max-width: 767px) {
      .pictures__grid__item {
        width: calc(50% - 20px); } }
    @media (max-width: 543px) {
      .pictures__grid__item {
        width: 100%; } }
    .pictures__grid__item--add-photos {
      text-align: center;
      border: 3px dashed #DADDE3;
      padding: 40px 20px;
      box-sizing: border-box;
      opacity: .6;
      transition: opacity .2s ease-in-out;
      text-decoration: none; }
      .pictures__grid__item--add-photos:hover {
        opacity: 1; }
      .pictures__grid__item--add-photos svg {
        width: 70px;
        height: 60px;
        margin: auto;
        margin-left: 20px; }
      .pictures__grid__item--add-photos__title {
        display: block;
        font-size: 20px;
        color: #DADDE3;
        font-weight: 800;
        margin-top: 15px; }
    .pictures__grid__item__picture {
      position: relative;
      overflow: hidden; }
      .pictures__grid__item__picture__controls {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: rgba(42, 46, 52, 0.6);
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease-in-out; }
        .pictures__grid__item__picture__controls__icons {
          position: absolute;
          top: 50%;
          left: 0;
          right: 0;
          opacity: 0;
          visibility: hidden;
          transform: translateY(-30%);
          margin: auto;
          transition: all .5s ease-in-out; }
          .pictures__grid__item__picture__controls__icons svg {
            width: 50px;
            height: 50px; }
      .pictures__grid__item__picture img {
        width: 100%; }
      .pictures__grid__item__picture:before {
        position: absolute;
        content: " ";
        left: 0;
        right: 0;
        bottom: 0;
        height: 100px;
        background: rgba(212, 212, 212, 0);
        background: -moz-linear-gradient(top, rgba(212, 212, 212, 0) 0%, rgba(0, 0, 0, 0.51) 100%);
        background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(212, 212, 212, 0)), color-stop(100%, rgba(0, 0, 0, 0.51)));
        background: -webkit-linear-gradient(top, rgba(212, 212, 212, 0) 0%, rgba(0, 0, 0, 0.51) 100%);
        background: -o-linear-gradient(top, rgba(212, 212, 212, 0) 0%, rgba(0, 0, 0, 0.51) 100%);
        background: -ms-linear-gradient(top, rgba(212, 212, 212, 0) 0%, rgba(0, 0, 0, 0.51) 100%);
        background: linear-gradient(to bottom, rgba(212, 212, 212, 0) 0%, rgba(0, 0, 0, 0.51) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d4d4d4', endColorstr='#000000', GradientType=0 );
        opacity: .6;
        transform: translateY(40px);
        transition: all .3s ease-in-out; }
      .pictures__grid__item__picture__bottom__likes {
        position: absolute;
        right: 10px;
        bottom: 12px;
        color: white; }
        .pictures__grid__item__picture__bottom__likes:after {
          content: " ";
          display: inline-block;
          float: right;
          width: 20px;
          height: 20px;
          background: url("./assets/svg/pictures__heart-white.svg");
          background-size: 20px 20px;
          margin-left: 5px;
          fill: white; }
        .pictures__grid__item__picture__bottom__likes--filled:after {
          background: url("./assets/svg/pictures__heart-filled.svg"); }
      .pictures__grid__item__picture__bottom__comments {
        position: absolute;
        left: 10px;
        bottom: 12px;
        color: white; }
        .pictures__grid__item__picture__bottom__comments:before {
          content: " ";
          display: inline-block;
          float: left;
          width: 20px;
          height: 20px;
          background: url("./assets/svg/pictures__comments-white.svg");
          background-size: 20px 20px;
          margin-right: 5px; }
      .pictures__grid__item__picture__bottom__likes, .pictures__grid__item__picture__bottom__comments {
        text-decoration: none;
        font-size: 13px;
        color: #FFFFFF; }
    .pictures__grid__item:hover .pictures__grid__item__picture:before {
      opacity: 1;
      transform: translateY(0px); }
    .pictures__grid__item:hover .pictures__grid__item__picture__controls {
      opacity: 1;
      visibility: visible; }
    .pictures__grid__item:hover .pictures__grid__item__picture__controls__icons {
      opacity: 1;
      transform: translateY(-50%);
      visibility: visible; }
    .pictures__grid__item__name {
      font-size: 13px;
      color: #2A2E34;
      padding: 10px; }
      .pictures__grid__item__name input {
        border: none;
        outline: none;
        width: 100%;
        box-sizing: border-box; }
    .pictures__grid__item__upload-progress {
      display: block;
      height: 3px;
      background: #CDD3DC;
      overflow: hidden; }
      .pictures__grid__item__upload-progress__progress {
        width: 0%;
        height: 3px;
        background: #535963;
        transition: all .3s ease-in-out; }
    .pictures__grid__item__date {
      font-size: 11px;
      padding: 5px; }
    .pictures__grid__item__category {
      font-size: 11px;
      padding: 5px;
      height: 15px; }

.ReactModal__Body--open {
  visibility: visible !important; }

.ReactModal__Overlay {
  opacity: 0 !important; }

.ReactModal__Overlay--after-open {
  opacity: 1 !important;
  transition: opacity 250ms ease-out !important; }

.react-datepicker__tether-element {
  z-Index: 1025 !important; }

.pictures-detail {
  background: #F1F3F5;
  position: relative;
  padding: 40px 450px 40px 20px;
  max-width: auto !important;
  overflow: hidden; }
  @media only screen and (min-width: 641px) {
    .pictures-detail {
      max-width: 1200px !important; } }
  .pictures-detail__picture {
    background: white; }
    .pictures-detail__picture figure {
      margin: 0;
      position: relative; }
    .pictures-detail__picture img {
      width: 100%; }
    .pictures-detail__picture__next, .pictures-detail__picture__prev {
      position: absolute;
      top: 50%;
      background: red;
      width: 20px;
      height: 40px;
      margin-top: -20px;
      background-size: 20px 40px; }
    .pictures-detail__picture__next {
      right: 20px;
      background: url(./assets/svg/carret-right.svg); }
    .pictures-detail__picture__prev {
      left: 20px;
      background: url(./assets/svg/carret-left.svg); }
    .pictures-detail__picture__share {
      display: block;
      text-align: left;
      padding: 15px;
      overflow: auto; }
      .pictures-detail__picture__share > div {
        max-width: 110px !important; }
        .pictures-detail__picture__share > div > a {
          display: flex !important;
          justify-content: flex-end;
          align-items: center;
          padding: 0;
          margin-right: 10px !important;
          height: 30px; }
          .pictures-detail__picture__share > div > a > div {
            padding-right: 10px; }
      .pictures-detail__picture__share__title {
        float: left;
        margin-right: 30px;
        display: inline-block;
        line-height: 35px;
        font-size: 15px;
        color: #535963; }
      .pictures-detail__picture__share a {
        margin-right: 30px;
        float: left; }
      .pictures-detail__picture__share svg {
        width: 35px;
        height: 35px; }
      .pictures-detail__picture__share img {
        width: 35px;
        height: 35px; }
  .pictures-detail__right-infos {
    width: 400px;
    position: absolute;
    top: 40px;
    right: 20px;
    bottom: 0;
    text-align: left; }
    .pictures-detail__right-infos__comments {
      max-height: 41vh;
      overflow: hidden; }
      .pictures-detail__right-infos__comments__item {
        padding-left: 65px;
        position: relative;
        border-top: 1px solid #DADDE3;
        padding-bottom: 25px;
        padding-top: 20px;
        margin-top: 20px; }
        .pictures-detail__right-infos__comments__item__name {
          font-size: 16px;
          font-weight: 600;
          color: #535963; }
        .pictures-detail__right-infos__comments__item__time-info {
          font-size: 13px;
          color: #8D949F; }
        .pictures-detail__right-infos__comments__item__comment {
          font-size: 15px;
          color: #535963;
          margin-top: 10px; }
        .pictures-detail__right-infos__comments__item__profile-picture {
          position: absolute;
          width: 50px;
          height: 50px;
          left: 0;
          top: 20px;
          border-radius: 100%;
          background: #333; }
    .pictures-detail__right-infos__title {
      font-size: 18px;
      color: #535963;
      font-weight: 500;
      padding-bottom: 20px;
      border-bottom: 1px solid #DADDE3; }
    .pictures-detail__right-infos__comments-count, .pictures-detail__right-infos__likes-count {
      display: block;
      font-size: 15px;
      color: #535963;
      padding: 10px 0;
      text-decoration: none;
      transition: color .8s ease-in-out; }
      .pictures-detail__right-infos__comments-count svg, .pictures-detail__right-infos__likes-count svg {
        width: 20px;
        height: 20px;
        float: left;
        fill: #535963;
        margin-right: 15px; }
      .pictures-detail__right-infos__comments-count .pictures-detail__right-infos__likes-count--checked-svg, .pictures-detail__right-infos__likes-count .pictures-detail__right-infos__likes-count--checked-svg {
        display: none; }
    .pictures-detail__right-infos__likes-count--checked {
      color: #FF4C3F; }
      .pictures-detail__right-infos__likes-count--checked .pictures-detail__right-infos__likes-count--checked-svg {
        display: block; }
      .pictures-detail__right-infos__likes-count--checked .pictures-detail__right-infos__likes-count-svg {
        display: none; }
    .pictures-detail__right-infos__comment-compose {
      background: #FFFFFF;
      border: 1px solid #DADDE3;
      border-radius: 5px;
      padding: 24px 60px;
      position: relative;
      margin-top: 25px;
      margin-bottom: 20px; }
      .pictures-detail__right-infos__comment-compose__profile-picture {
        position: absolute;
        left: 13px;
        top: 20px;
        border-radius: 100%;
        background: #444;
        width: 30px;
        height: 30px;
        background-size: cover;
        background-position: center center; }
      .pictures-detail__right-infos__comment-compose textarea {
        outline: none;
        border: none;
        resize: none; }

@media (max-width: 900px) {
  .pictures-detail__picture__legend {
    display: none; }
  .pictures-detail {
    padding: 0;
    padding-bottom: 90px; }
  .pictures-detail__picture {
    margin-top: 60px; }
  .pictures-detail__right-infos {
    position: relative;
    display: block;
    width: auto;
    padding: 0 20px;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto; }
  .pictures-detail__picture__share a {
    float: right;
    margin: 0;
    margin-left: 10px; }
    .pictures-detail__picture__share a svg, .pictures-detail__picture__share a img {
      width: 30px;
      height: 30px; } }

.content_container {
  padding-top: 100px; }
  @media (max-width: 991px) {
    .content_container {
      padding-top: 70px; } }

.page-content {
  padding: 35px; }

ul.tabs {
  margin: 0px;
  padding: 0px;
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
  border-bottom: 1px solid #e2e2e2; }

ul.tabs li {
  background: none;
  display: inline-block;
  padding: 10px 10px;
  cursor: pointer;
  margin-right: 10px;
  transition: all .4s ease-in-out;
  color: #7d7d7d;
  border-bottom: 2px solid transparent;
  margin: 0px; }
  @media (max-width: 767px) {
    ul.tabs li {
      display: block;
      text-align: center; } }

ul.tabs li.vertical {
  display: block; }

ul.tabs li.current {
  border-bottom: 2px solid #FF4C3F;
  color: #333; }

.tab-content {
  display: none; }

.tab-content.current {
  display: inherit; }

.modal-new-project__interlocuteurs {
  padding: 10px; }
  .modal-new-project__interlocuteurs__item {
    padding: 0 10px;
    margin: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    overflow: auto; }
    .modal-new-project__interlocuteurs__item__trash svg {
      width: 20px;
      height: 20px; }

.modal-new-project .certificate-mandatory-for-generation .form-group {
  display: inline-flex;
  align-items: center; }
  .modal-new-project .certificate-mandatory-for-generation .form-group input {
    margin-right: 8px;
    flex: 1; }
  .modal-new-project .certificate-mandatory-for-generation .form-group label {
    margin: 0; }

.modal-new-project .certificate-mandatory-for-generation .certificate-is-disabled {
  font-size: 12px; }

.mygrid {
  display: flex;
  justify-content: flex-start;
  flex-flow: row wrap; }

.alert_bloc {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 20px;
  max-width: 400px;
  border-radius: 5px;
  margin-right: 20px;
  padding: 15px; }
  .alert_bloc img {
    width: 65px;
    height: 65px;
    margin-right: 20px; }
  .alert_bloc .title-info {
    font-size: 16px;
    color: #535963;
    font-weight: 600;
    margin-bottom: 5px; }
  .alert_bloc .title-doc {
    font-size: 16px;
    color: #888F9A;
    font-weight: normal;
    word-break: break-all;
    margin-bottom: 0; }
  .alert_bloc button {
    padding: 11px 20px !important;
    border: none; }

.adminDoc_bloc {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  max-width: 250px;
  border-radius: 5px;
  flex-flow: column;
  justify-content: space-between;
  display: flex;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative; }
  .adminDoc_bloc .primary-navigation__item__icon__notification {
    background: #ef5555 none repeat scroll 0 0;
    border-radius: 100%;
    color: white;
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    height: 18px;
    line-height: 18px;
    position: absolute;
    right: 16px;
    top: 15px;
    width: 18px; }
  .adminDoc_bloc:hover {
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.1); }
  .adminDoc_bloc .bloc-sale {
    box-shadow: none;
    flex: 1; }
  .adminDoc_bloc .img_doc {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D9DDE2;
    height: 286px;
    max-width: 250px; }
    .adminDoc_bloc .img_doc img {
      height: 100%;
      width: auto; }

.folder_title {
  font-size: 14px;
  color: #535963;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: center; }

.folder_number {
  font-size: 12px;
  color: #888F9A; }
  .folder_number svg {
    width: 20px;
    height: 20px;
    margin: 0 10px;
    fill: #535963;
    vertical-align: middle; }

.cat_doc_bloc {
  height: 180px;
  width: 180px;
  box-sizing: border-box;
  margin-right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  margin-bottom: 30px;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.5s; }
  .cat_doc_bloc .primary-navigation__item__icon__notification {
    background: #ef5555 none repeat scroll 0 0;
    border-radius: 100%;
    color: white;
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    height: 18px;
    line-height: 18px;
    position: absolute;
    right: 46px;
    top: 55px;
    width: 18px; }
  .cat_doc_bloc svg {
    flex: 1;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    opacity: 0.7; }
  .cat_doc_bloc img {
    flex: 1;
    width: 60px;
    height: 60px;
    margin-bottom: 20px; }
  .cat_doc_bloc:hover {
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.1); }

.documents_button_back {
  position: absolute;
  right: 15px; }

.documents_folder {
  background-color: #FFF;
  border-radius: 3px;
  color: #4a4a4a;
  text-align: center;
  width: 200px;
  height: 200px;
  padding: 40px 15px 15px 15px;
  margin: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  flex-shrink: 0;
  transition: all 0.5s;
  box-sizing: border-box;
  cursor: pointer; }
  .documents_folder:hover, .documents_folder:active {
    background-color: #e6e6e6; }
  .documents_folder .nameCategorie {
    font-weight: bold;
    margin-bottom: 0; }
  .documents_folder .numberFile {
    margin-bottom: 0;
    font-size: 12px;
    margin-top: 5px;
    color: #909090; }
  .documents_folder img,
  .documents_folder svg {
    width: 80px;
    height: 80px; }

.documents_folders {
  display: flex;
  flex-flow: row wrap; }

.documents {
  padding: 0 10px 0 30px;
  display: block;
  margin-top: 30px; }
  .documents a {
    text-decoration: none; }
  .documents__header {
    padding: 0 20px 0 0;
    margin-bottom: 20px; }
    .documents__header select {
      float: left;
      margin-right: 15px; }
    .documents__header__left {
      float: left; }
    .documents__header__right {
      float: right; }
    .documents__header .button {
      margin-left: 15px; }
      .documents__header .button svg {
        width: 15px;
        height: 15px;
        float: left;
        fill: white;
        margin-right: 8px;
        stroke: white; }
    .documents__header select {
      padding: 11px 20px 11px 20px;
      background-position: 92% 16px; }
    @media (max-width: 1339px) {
      .documents__header select {
        width: 200px;
        min-width: auto; } }
    @media (max-width: 991px) {
      .documents__header select {
        display: block;
        width: 100%;
        margin: 0;
        margin-bottom: 15px; }
      .documents__header .button {
        display: block;
        margin: 0;
        margin-bottom: 15px;
        overflow: hidden; }
      .documents__header .documents__header__right,
      .documents__header .documents__header__left {
        float: none; } }
  .documents__table {
    padding-right: 15px; }
    .documents__table__title {
      color: #333;
      font-size: 16px; }
    .documents__table table th {
      text-transform: uppercase;
      position: relative; }
    .documents__table a svg {
      fill: #333;
      width: 20px;
      height: 20px; }
    .documents__table__icon {
      padding: 7px 10px 5px 10px;
      display: inline-block; }
      .documents__table__icon svg {
        width: 15px;
        height: 15px; }
      .documents__table__icon--pdf {
        background: #de001c; }
  .documents__grid__sizer {
    width: 20%; }
    @media (max-width: 1339px) {
      .documents__grid__sizer {
        width: 25%; } }
    @media (max-width: 991px) {
      .documents__grid__sizer {
        width: 33.333%; } }
    @media (max-width: 767px) {
      .documents__grid__sizer {
        width: 50%; } }
    @media (max-width: 543px) {
      .documents__grid__sizer {
        width: 100%; } }
  .documents__grid__item {
    margin-bottom: 20px;
    background: white;
    display: inline-block;
    position: relative;
    width: calc(20% - 20px);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer; }
    @media (max-width: 1339px) {
      .documents__grid__item {
        width: calc(25% - 20px); } }
    @media (max-width: 991px) {
      .documents__grid__item {
        width: calc(33.333% - 20px); } }
    @media (max-width: 767px) {
      .documents__grid__item {
        width: calc(50% - 20px); } }
    @media (max-width: 543px) {
      .documents__grid__item {
        width: 100%; } }
    .documents__grid__item--add-photos {
      text-align: center;
      border: 3px dashed #DADDE3;
      padding: 40px 20px;
      box-sizing: border-box;
      opacity: .6;
      transition: opacity .2s ease-in-out;
      text-decoration: none; }
      .documents__grid__item--add-photos:hover {
        opacity: 1; }
      .documents__grid__item--add-photos svg {
        width: 70px;
        height: 60px;
        margin: auto;
        margin-left: 20px; }
      .documents__grid__item--add-photos__title {
        display: block;
        font-size: 20px;
        color: #DADDE3;
        font-weight: 800;
        margin-top: 15px; }
    .documents__grid__item__footer {
      padding: 0 10px 10px 10px;
      box-sizing: border-box;
      font-size: 12px;
      color: #2A2E34;
      display: flex;
      justify-content: space-between; }
      .documents__grid__item__footer span {
        padding-left: 5px; }
      .documents__grid__item__footer svg {
        height: 15px;
        width: 15px;
        vertical-align: bottom; }
      .documents__grid__item__footer__signature {
        fill: #de001c; }
    .documents__grid__item__picture {
      position: relative;
      overflow: hidden; }
      .documents__grid__item__picture__label {
        position: absolute;
        right: 0;
        background: #8d949e;
        top: 30px;
        padding: 3px 7px;
        color: white;
        text-transform: uppercase;
        font-size: 11px; }
      .documents__grid__item__picture__type {
        position: absolute;
        right: 0;
        top: 0;
        background: #de001c;
        width: 20px;
        height: 19px;
        padding-top: 1px;
        text-align: center; }
        .documents__grid__item__picture__type svg {
          fill: white;
          width: 12px;
          height: 12px;
          margin: auto; }
      .documents__grid__item__picture__controls {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: rgba(42, 46, 52, 0.6);
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease-in-out; }
        .documents__grid__item__picture__controls__icons {
          position: absolute;
          top: 50%;
          left: 0;
          right: 0;
          opacity: 0;
          visibility: hidden;
          transform: translateY(-30%);
          margin: auto;
          transition: all .5s ease-in-out; }
          .documents__grid__item__picture__controls__icons svg {
            width: 50px;
            height: 50px; }
      .documents__grid__item__picture img {
        width: 100%; }
      .documents__grid__item__picture:before {
        position: absolute;
        content: " ";
        left: 0;
        right: 0;
        bottom: 0;
        height: 100px;
        background: rgba(212, 212, 212, 0);
        background: -moz-linear-gradient(top, rgba(212, 212, 212, 0) 0%, rgba(0, 0, 0, 0.51) 100%);
        background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(212, 212, 212, 0)), color-stop(100%, rgba(0, 0, 0, 0.51)));
        background: -webkit-linear-gradient(top, rgba(212, 212, 212, 0) 0%, rgba(0, 0, 0, 0.51) 100%);
        background: -o-linear-gradient(top, rgba(212, 212, 212, 0) 0%, rgba(0, 0, 0, 0.51) 100%);
        background: -ms-linear-gradient(top, rgba(212, 212, 212, 0) 0%, rgba(0, 0, 0, 0.51) 100%);
        background: linear-gradient(to bottom, rgba(212, 212, 212, 0) 0%, rgba(0, 0, 0, 0.51) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d4d4d4', endColorstr='#000000', GradientType=0 );
        opacity: .6;
        transform: translateY(40px);
        transition: all .3s ease-in-out; }
      .documents__grid__item__picture__bottom__likes {
        position: absolute;
        right: 10px;
        bottom: 12px;
        color: white; }
        .documents__grid__item__picture__bottom__likes:after {
          content: " ";
          display: inline-block;
          float: right;
          width: 20px;
          height: 20px;
          background: url("./assets/svg/pictures__heart-white.svg");
          background-size: 20px 20px;
          margin-left: 5px;
          fill: white; }
        .documents__grid__item__picture__bottom__likes--filled:after {
          background: url("./assets/svg/pictures__heart-filled.svg"); }
      .documents__grid__item__picture__bottom__comments {
        position: absolute;
        left: 10px;
        bottom: 12px;
        color: white; }
        .documents__grid__item__picture__bottom__comments:before {
          content: " ";
          display: inline-block;
          float: left;
          width: 20px;
          height: 20px;
          background: url("./assets/svg/pictures__comments-white.svg");
          background-size: 20px 20px;
          margin-right: 5px; }
      .documents__grid__item__picture__bottom__likes, .documents__grid__item__picture__bottom__comments {
        text-decoration: none;
        font-size: 13px;
        color: #FFFFFF; }
    .documents__grid__item:hover .documents__grid__item__picture:before {
      opacity: 1;
      transform: translateY(0px); }
    .documents__grid__item:hover .documents__grid__item__picture__controls {
      opacity: 1;
      visibility: visible; }
    .documents__grid__item:hover .documents__grid__item__picture__controls__icons {
      opacity: 1;
      transform: translateY(-50%);
      visibility: visible; }
    .documents__grid__item__name {
      font-size: 13px;
      color: #2A2E34;
      margin: 10px;
      text-overflow: ellipsis;
      height: 15px;
      overflow: hidden; }
      .documents__grid__item__name input {
        border: none;
        outline: none;
        width: 100%;
        box-sizing: border-box; }
    .documents__grid__item__upload-progress {
      display: block;
      height: 3px;
      background: #CDD3DC;
      overflow: hidden; }
      .documents__grid__item__upload-progress__progress {
        width: 0%;
        height: 3px;
        background: #535963;
        transition: all .3s ease-in-out; }

.editLimitSignature .form-group {
  margin-bottom: 0px; }

.editLimitSignature svg {
  margin-left: 5px; }

.editLimitSignature a {
  margin-right: 0px; }

.officeContainer {
  overflow: hidden; }

.officeContainer iframe {
  position: relative !important;
  display: block; }

.officeValidateButton {
  text-align: center;
  margin-top: 10px; }

.officeRemodal {
  padding: 0px !important; }

.services {
  padding: 30px; }
  .services__header {
    margin-bottom: 20px; }
    .services__header__right {
      float: right; }
      .services__header__right__button-category {
        margin-right: 10px; }
    .services__header svg {
      stroke: white; }
  .services__category {
    height: 30px; }
    .services__category__name {
      display: inline-block;
      width: auto !important;
      margin-right: 10px; }
    .services__category__line {
      flex: 1; }
    .services__category__line:before {
      content: '';
      display: inherit;
      width: 100%;
      margin: 10px auto;
      border-top: 1px solid #DFDFDF; }
    .services__category__actions {
      width: 50px !important; }
      .services__category__actions svg {
        width: 15px;
        height: 15px;
        margin-left: 10px;
        cursor: pointer; }
  .services__item {
    background: #FFFFFF;
    box-shadow: 0 2px 4px 0 rgba(4, 5, 6, 0.15);
    border-radius: 3px; }
    .services__item__header {
      border-bottom: 1px solid #DADDE3;
      padding: 13px 10px 9px 10px;
      overflow: auto;
      font-size: 13px; }
      .services__item__header a {
        text-decoration: none;
        color: #535963; }
      .services__item__header__icon-back {
        background: #D2F6F1;
        display: inline-block;
        width: 30px;
        height: 30px;
        float: left;
        text-align: center; }
        .services__item__header__icon-back svg {
          width: 24px;
          height: 22px;
          margin-top: 4px; }
      .services__item__header__carret-back {
        margin: 6px 0;
        margin-left: 10px;
        margin-right: 15px;
        float: left; }
        .services__item__header__carret-back svg {
          width: 9px;
          height: 18px; }
      .services__item__header__text {
        float: left;
        margin: 7px 0; }
    .services__item__content {
      padding: 35px 50px 100px 50px;
      font-size: 15px;
      color: #535963;
      line-height: 20px; }
      @media (max-width: 767px) {
        .services__item__content {
          padding: 20px 20px 60px 20px; } }
      .services__item__content h1 small,
      .services__item__content h2 small,
      .services__item__content h3 small {
        font-size: 25px;
        font-weight: 100;
        color: #888; }
      .services__item__content h1 {
        line-height: 32px; }
      .services__item__content h2 {
        line-height: 28px; }
      .services__item__content h3 {
        line-height: 22px; }
  .services__list__item {
    background: #FFFFFF;
    margin-bottom: 10px;
    text-decoration: none;
    text-align: center;
    transition: transform .3s ease-in-out;
    box-shadow: 1px 1px 1px 1px lightgrey;
    display: block; }
    .services__list__item__controls {
      position: absolute;
      inset: 0;
      background: rgba(42, 46, 52, 0.6);
      text-align: center;
      opacity: 0;
      visibility: hidden;
      transition: all .3s ease-in-out;
      z-index: 1000;
      margin-left: 0px;
      margin-right: 0px;
      margin-bottom: 0px; }
      .services__list__item__controls__icons {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-30%);
        margin: auto;
        transition: all .5s ease-in-out; }
        .services__list__item__controls__icons svg {
          width: 45px;
          height: 45px;
          margin: 2px; }
    .services__list__item__cover-icon {
      background: white;
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative; }
      .services__list__item__cover-icon img {
        width: 55px;
        height: 55px; }
      .services__list__item__cover-icon > svg {
        width: 128px;
        height: 118px;
        margin-top: 45px;
        transition: transform .3s ease-in-out; }
    .services__list__item__title-wrapper {
      border-top: 1px solid #efefef; }
    .services__list__item__title {
      font-size: 18px;
      font-weight: 600;
      color: #535963;
      line-height: 23px;
      margin-top: 10px;
      display: block;
      min-height: 60px; }
    .services__list__item.have-no-controls:hover svg {
      transform: scale(1.1); }
    .services__list__item:hover .services__list__item:before {
      opacity: 1;
      transform: translateY(0px); }
    .services__list__item:hover .services__list__item__controls {
      opacity: 1;
      visibility: visible; }
    .services__list__item:hover .services__list__item__controls__icons {
      opacity: 1;
      transform: translateY(-50%);
      visibility: visible; }

.modal-service {
  background: #F1F3F5;
  max-width: 1080px; }
  .modal-service__tips {
    margin-left: 20px;
    margin-top: 100px; }
    .modal-service__tips__item {
      border-left: 1px solid #DADDE3;
      line-height: 20px;
      padding-left: 15px; }
  .modal-service .modal__body {
    text-align: left !important;
    padding: 20px 35px; }
    @media (max-width: 767px) {
      .modal-service .modal__body {
        padding: 10px 15px; } }
  @media (max-width: 767px) {
    .modal-service .hide-responsive {
      display: none; } }
  .modal-service h1 {
    font-size: 24px;
    color: #535963; }
  .modal-service select {
    height: 50px;
    background-position: 92% 21px;
    line-height: 21px; }
  .modal-service .button-lg {
    margin-top: 40px; }
    .modal-service .button-lg svg {
      margin-top: 4px;
      margin-right: 15px; }
  .modal-service .form-control {
    background: white; }
  .modal-service__icon-list {
    max-height: 250px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    overflow: auto;
    margin-bottom: 20px;
    margin-top: 20px; }
    .modal-service__icon-list::-webkit-scrollbar {
      width: 8px; }
    .modal-service__icon-list::-webkit-scrollbar-track {
      background: transparent; }
    .modal-service__icon-list::-webkit-scrollbar-thumb {
      background: #aeb3ba;
      border-radius: 5px; }
    .modal-service__icon-list__item {
      border-radius: 8px;
      border: 1px solid #DADDE3;
      background: white;
      width: 70px;
      height: 70px;
      display: inline-block;
      float: left;
      text-align: center;
      margin-right: 15px;
      transition: all .3s ease-in-out;
      margin-bottom: 20px; }
      .modal-service__icon-list__item__remove-link {
        position: absolute;
        top: 60px;
        left: 60px; }
        .modal-service__icon-list__item__remove-link svg {
          width: 30px;
          height: 30px; }
      .modal-service__icon-list__item:last-child {
        margin-right: 1px; }
      @supports (display: -moz-grid) {
        .modal-service__icon-list__item:last-child {
          margin-right: 0px; } }
      .modal-service__icon-list__item svg {
        width: 20px;
        height: 25px;
        transition: all .3s ease-in-out; }
      .modal-service__icon-list__item:hover {
        border-color: #333; }
        .modal-service__icon-list__item:hover svg {
          transform: scale(1.1); }

.advancement {
  padding: 30px 25px;
  margin: 0 auto; }
  .advancement__header {
    margin-bottom: 20px; }
    .advancement__header select {
      float: left;
      margin-right: 15px; }
    .advancement__header__left {
      float: left; }
    .advancement__header__right {
      float: right; }
    .advancement__header .button {
      margin-left: 15px; }
      .advancement__header .button svg {
        width: 15px;
        height: 15px;
        float: left;
        fill: white;
        margin-right: 8px;
        stroke: white; }
    .advancement__header select {
      padding: 11px 20px 11px 20px;
      background-position: 92% 16px; }
    @media (max-width: 1339px) {
      .advancement__header select {
        width: 200px;
        min-width: auto; } }
    @media (max-width: 991px) {
      .advancement__header select {
        display: block;
        width: 100%;
        margin: 0;
        margin-bottom: 15px; }
      .advancement__header .button {
        display: block;
        margin: 0;
        margin-bottom: 15px;
        overflow: hidden; }
      .advancement__header .documents__header__right,
      .advancement__header .documents__header__left {
        float: none; } }
  .advancement__aside {
    width: 19%;
    min-height: 100px;
    float: left; }
    .advancement__aside--right {
      margin-left: 2%; }
    .advancement__aside--left {
      margin-right: 2%; }
    .advancement__aside__item {
      background: #FFFFFF;
      border: 1px solid #DADDE3;
      display: block;
      border-radius: 3px; }
  .advancement__timeline {
    width: 58%;
    float: left;
    padding-bottom: 100px; }
    .advancement__timeline__item {
      position: relative;
      display: block;
      background: #FFFFFF;
      border: 1px solid #DADADA;
      min-height: 100px;
      margin-bottom: 20px;
      border-radius: 4px; }
      .advancement__timeline__item::after {
        content: '';
        position: absolute;
        left: calc(50% - 3px);
        bottom: -22px;
        width: 6px;
        height: 21px;
        background-color: #FF4C3F; }
      .advancement__timeline__item:last-child::after {
        display: none; }
      .advancement__timeline__item__header {
        padding: 15px 0;
        overflow: auto;
        position: relative; }
        .advancement__timeline__item__header__draft {
          float: right;
          width: 80px;
          font-style: italic;
          margin-right: 0px;
          text-align: center;
          line-height: 30px;
          color: lightgray;
          height: 30px; }
        .advancement__timeline__item__header__label {
          margin-left: 15px;
          text-transform: uppercase;
          top: 22px;
          font-size: 11px;
          color: #535963; }
        .advancement__timeline__item__header__info {
          display: flex;
          align-items: center;
          gap: 10px;
          padding: 10px 20px; }
          .advancement__timeline__item__header__info__avatar {
            border-radius: 50%;
            width: 42px;
            height: 42px;
            object-fit: cover; }
          .advancement__timeline__item__header__info__author {
            color: #2E3844;
            font-size: 14px;
            line-height: 20px;
            opacity: 1; }
          .advancement__timeline__item__header__info__date {
            color: #2E3844;
            font-size: 12px;
            line-height: 16px;
            opacity: 0.6; }
        .advancement__timeline__item__header__date {
          float: left;
          border-right: 1px solid #DADDE3;
          text-align: right;
          width: 43px;
          padding-right: 10px;
          line-height: 14px; }
          .advancement__timeline__item__header__date__day {
            font-size: 20px;
            color: #535963;
            font-weight: 600; }
          .advancement__timeline__item__header__date__month {
            font-size: 13px;
            color: #535963;
            font-weight: 500; }
        .advancement__timeline__item__header__title {
          float: left;
          font-weight: 400;
          font-size: 16px;
          color: #2E3844;
          margin: 3px 15px; }
      .advancement__timeline__item__figure {
        padding: 0;
        margin: 0; }
        .advancement__timeline__item__figure img {
          width: 100%; }
      .advancement__timeline__item__carousel .owl-prev,
      .advancement__timeline__item__carousel .owl-next {
        position: absolute;
        top: 50%;
        transform: translateY(-55%);
        width: 20px;
        height: 75px;
        background-size: 20px 58px;
        background-repeat: no-repeat; }
      .advancement__timeline__item__carousel .owl-next {
        right: 0;
        padding-right: 20px;
        background-image: url(./assets/svg/carousel-next.svg);
        background-position: left center; }
      .advancement__timeline__item__carousel .owl-prev {
        left: 0;
        padding-left: 20px;
        background-position: right center;
        background-image: url(./assets/svg/carousel-prev.svg); }
      .advancement__timeline__item__text-content__text {
        font-size: 14px;
        color: #2e3844;
        padding: 20px 20px 10px 20px;
        overflow-wrap: break-word; }
        .advancement__timeline__item__text-content__text iframe {
          width: 100% !important; }
        .advancement__timeline__item__text-content__text h1 {
          font-size: 2em !important;
          color: inherit; }
        .advancement__timeline__item__text-content__text h2 {
          font-size: 1.5em !important;
          color: inherit; }
        .advancement__timeline__item__text-content__text h3 {
          font-size: 1.17em !important;
          color: inherit; }
      .advancement__timeline__item__text-content__button {
        text-align: center;
        padding: 0px 0px 30px 0px; }
        .advancement__timeline__item__text-content__button .button {
          padding: 7px 15px; }
      .advancement__timeline__item__controls {
        border-top: 1px solid #F1F3F5;
        background: white;
        overflow: auto;
        padding: 15px; }
        .advancement__timeline__item__controls ul {
          list-style: none;
          padding: 0;
          margin: 0; }
        .advancement__timeline__item__controls li {
          float: left;
          margin-right: 20px;
          line-height: 15px; }
          .advancement__timeline__item__controls li:last-child {
            margin-right: 0px; }
        .advancement__timeline__item__controls a {
          font-size: 13px;
          color: #535963;
          text-decoration: none; }
          .advancement__timeline__item__controls a svg {
            float: left;
            fill: #535963;
            width: 20px;
            height: 18px;
            margin-right: 8px; }
        .advancement__timeline__item__controls__projects-countable {
          background: #333 none repeat scroll 0 0;
          border-radius: 100%;
          color: white;
          display: inline-block;
          font-size: 10px;
          font-weight: 600;
          height: 13px;
          line-height: 15px;
          position: relative;
          right: 10px;
          top: 5px;
          width: 12px;
          padding: 2px;
          text-align: center; }

.modal-post .jodit_wysiwyg {
  color: #2e3844;
  font-size: 14px;
  font-family: "Avenir", sans-serif; }

@media (max-width: 991px) {
  .advancement__timeline {
    width: 100%; }
  .advancement__aside {
    display: none; } }

.modal-post {
  background: #F1F3F5;
  max-width: 900px;
  padding: 0;
  margin: 0; }
  .modal-post .form-group-margin {
    margin-top: 15px; }
  .modal-post__header {
    display: block;
    overflow: auto;
    line-height: 12px; }
    @media (max-width: 767px) {
      .modal-post__header {
        line-height: inherit; } }
    .modal-post__header h1 {
      display: inline-block;
      float: left; }
    .modal-post__header select {
      float: left;
      display: inline-block;
      max-width: 230px !important;
      min-width: 230px !important;
      width: 200px !important;
      margin-left: 15px;
      height: 40px !important;
      line-height: 39px !important;
      padding: 0px 20px;
      background-position: 92% 16px !important; }
      @media (max-width: 767px) {
        .modal-post__header select {
          float: none;
          display: block;
          width: 100% !important;
          max-width: 100% !important;
          margin: 10px 0 0 0; } }
  .modal-post__planning__item {
    position: relative;
    padding-left: 40px;
    font-size: 13px;
    color: #8D949F;
    margin-bottom: 30px; }
    .modal-post__planning__item__date {
      margin-top: 15px; }
    .modal-post__planning__item__title {
      font-size: 14px;
      color: #040406;
      font-weight: 500;
      margin-bottom: 5px; }
    .modal-post__planning__item__check {
      position: absolute;
      left: 0;
      top: 0;
      border: 1px solid #DADDE3;
      height: 25px;
      width: 25px;
      border-radius: 100%; }
      .modal-post__planning__item__check.checked {
        border-color: #535963; }
        .modal-post__planning__item__check.checked:after {
          content: " ";
          width: 15px;
          height: 15px;
          background: #535963;
          border-radius: 100%;
          position: absolute;
          top: 5px;
          left: 5px; }
  .modal-post__gallery {
    margin-bottom: 20px; }
    .modal-post__gallery__item {
      display: block;
      background: #333;
      height: 100px;
      margin-right: 10px;
      margin-bottom: 15px;
      background-size: cover;
      background-position: center;
      border-radius: 3px;
      transition: all .3s ease-in-out;
      overflow: hidden;
      box-sizing: border-box; }
      .modal-post__gallery__item:hover {
        transform: scale(1.05); }
      .modal-post__gallery__item.selected {
        border: 4px solid #f46d5a; }
  .modal-post select {
    width: 100%;
    margin-bottom: 15px; }
  @media (max-width: 767px) {
    .modal-post .hide-responsive {
      display: none; } }
  .modal-post h1 {
    font-size: 22px;
    font-weight: 500;
    color: #535963; }
  .modal-post select {
    height: 50px;
    background-position: 92% 21px;
    line-height: 21px; }
  .modal-post .button-lg {
    margin-top: 10px; }
    .modal-post .button-lg svg {
      margin-top: 4px;
      margin-right: 15px; }
  .modal-post .form-control {
    background: white; }
  .modal-post__icon-list {
    display: block;
    overflow: auto;
    margin-bottom: 30px;
    margin-top: 18px; }
    .modal-post__icon-list__item {
      border-radius: 8px;
      border: 1px solid #DADDE3;
      background: white;
      width: 50px;
      height: 50px;
      display: inline-block;
      float: left;
      text-align: center;
      margin-right: 15px;
      transition: all .3s ease-in-out;
      margin-bottom: 10px; }
      .modal-post__icon-list__item:last-child {
        margin-right: 0px; }
      .modal-post__icon-list__item svg {
        width: 20px;
        height: 25px;
        margin-top: 12px;
        transition: all .3s ease-in-out; }
      .modal-post__icon-list__item:hover {
        border-color: #333; }
        .modal-post__icon-list__item:hover svg {
          transform: scale(1.1); }
  .modal-post__footer {
    background: white;
    min-height: 100px;
    text-align: left;
    padding: 30px 65px; }
    @media (max-width: 767px) {
      .modal-post__footer {
        padding: 10px 25px; } }
  .modal-post .modal__body {
    text-align: left !important;
    padding: 30px 55px 15px 55px; }
    @media (max-width: 767px) {
      .modal-post .modal__body {
        padding: 10px 25px; } }
  .modal-post__publishOnAllProjects .form-group {
    height: 0px; }
  .modal-post__publishOnAllProjects .checkboxInline {
    height: 20px; }

.gauge {
  background: transparent;
  border: none; }
  .gauge .gauge__item {
    display: flex;
    justify-content: center;
    padding: 20px; }
    .gauge .gauge__item .gauge__content {
      position: relative; }
      .gauge .gauge__item .gauge__content::before {
        content: '';
        width: 6px;
        position: absolute;
        top: 26px;
        bottom: 26px;
        left: 10px;
        background-color: #D8D8D8; }
      .gauge .gauge__item .gauge__content::after {
        content: '';
        width: 6px;
        position: absolute;
        bottom: 26px;
        left: 10px;
        border-radius: 15px 15px 0 0;
        background-color: #FF4C3F;
        transition: all 0.5s; }
  .gauge .gauge__item__step {
    display: flex; }
    .gauge .gauge__item__step.gaugeEnd .gauge__item__gauge {
      padding-top: 0px; }
    .gauge .gauge__item__step.gaugeEnd .gauge__item__text {
      justify-content: flex-start; }
    .gauge .gauge__item__step.gaugeStart .gauge__item__text {
      justify-content: flex-end; }
    .gauge .gauge__item__step.gaugeStart .gauge__item__gauge {
      padding-bottom: 0px; }
      .gauge .gauge__item__step.gaugeStart .gauge__item__gauge .gauge__lineStep {
        background-color: #FF4C3F; }
  .gauge .gauge__item__gauge {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 30px 20px 30px 0; }
  .gauge .gauge__item__step.validated .gauge__lineStep {
    background-color: #FF4C3F; }
  .gauge .gauge__item__step.validated .gauge__roundedStep {
    border: 6px solid #FF4C3F; }
  .gauge .gauge__item__step.validated .gauge__item__text .titleStep {
    color: #FF4C3F;
    opacity: 1; }
  .gauge .gauge__item__step.validated .gauge__item__text .dateStep {
    display: inherit; }
  .gauge .gauge__roundedStep {
    width: 14px;
    height: 14px;
    z-index: 999;
    background-color: #FFF;
    border: 6px solid #D8D8D8;
    border-radius: 50px; }
  .gauge .gauge__lineStep {
    width: 6px;
    height: 40px;
    position: relative;
    background-color: #D8D8D8; }
    .gauge .gauge__lineStep .roundToe {
      width: 6px;
      height: 6px;
      position: absolute;
      top: -4px;
      background-color: #FF4C3F;
      border-radius: 15px; }
  .gauge .gauge__item__text {
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .gauge .gauge__item__text .titleStep {
      font-size: 14px;
      text-transform: uppercase;
      font-weight: bold;
      color: #535963;
      opacity: 0.3; }
    .gauge .gauge__item__text .dateStep {
      display: none;
      font-size: 12px;
      color: #535963;
      opacity: 0.7; }

.search-input__wrapper {
  background: white;
  display: inline-block;
  vertical-align: top;
  border-radius: 3px;
  border: 1px solid #DADDE3;
  padding: 7px 10px 7px 40px;
  box-sizing: border-box;
  position: relative;
  width: 300px;
  margin-bottom: 15px; }
  .search-input__wrapper:before {
    content: "";
    background-image: url(./assets/svg/conversations--search.svg);
    width: 15px;
    height: 15px;
    position: absolute;
    left: 13px;
    top: 10px;
    background-size: 15px 15px; }
  .search-input__wrapper input {
    border: none;
    outline: none;
    color: #2E3844;
    font-size: 14px;
    width: 100%; }

.navigation-bar-container__subtitle {
  position: fixed;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: stretch;
  background-color: #FFFFFF;
  border-top: 1px solid #DADDE3;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 2; }
  .navigation-bar-container__subtitle__previous {
    width: 200px;
    border-right: 1px solid #DADDE3;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-sizing: border-box;
    padding: 20px;
    cursor: pointer;
    text-decoration: none; }
    .navigation-bar-container__subtitle__previous-icon {
      height: 20px; }
      .navigation-bar-container__subtitle__previous-icon svg {
        width: 20px;
        height: 20px;
        fill: #888F9A; }
    .navigation-bar-container__subtitle__previous-label {
      font-size: 11px;
      color: #888F9A; }
  .navigation-bar-container__subtitle__info {
    display: flex;
    align-items: center;
    padding: 20px; }
    .navigation-bar-container__subtitle__info__main-title {
      font-size: 13px;
      text-transform: uppercase;
      font-weight: bold; }
    .navigation-bar-container__subtitle__info__secondary-title {
      font-size: 11px;
      color: #888F9A;
      margin-left: 5px; }

.publish_all_operations .form-group {
  height: 0px; }

.loader-overlay__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001; }

.loader-overlay__loader {
  z-index: 1000;
  height: 100px;
  width: 100px;
  vertical-align: middle;
  display: inline-block;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #06b5f5;
  border-radius: 50%;
  animation: spin 2s linear infinite; }

.loader-overlay__svg {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  fill: white;
  width: 50px;
  height: 50px; }

.loader-overlay__progresses {
  width: 50%;
  position: absolute;
  font-size: 20px;
  color: white; }
  .loader-overlay__progresses__progress__label {
    position: relative;
    bottom: 5px; }
  .loader-overlay__progresses .progress {
    width: 100%; }
  .loader-overlay__progresses__progress-value {
    width: 20% !important;
    position: relative;
    bottom: 10px;
    left: 20px; }
  .loader-overlay__progresses .progressbar {
    overflow: hidden;
    width: 80%;
    border-radius: 30px;
    background-color: #D9DDE2;
    height: 8px; }
    .loader-overlay__progresses .progressbar .progressbar-indicator {
      background-color: #FF4C3F;
      height: 8px; }

.loader-table__wrapper, .loader-table__wrapper__hidden {
  display: flex;
  visibility: visible;
  height: 100px;
  overflow: hidden;
  padding: 10px;
  justify-content: center;
  align-items: center; }
  .loader-table__wrapper__hidden {
    visibility: hidden; }

.loader-table__loader {
  height: 25px;
  width: 25px; }

.signature-success__wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF; }

.signature-success__logo img {
  height: 110px; }

.signature-success__done {
  margin: 40px 0; }
  .signature-success__done svg {
    height: 100px;
    width: 100px;
    fill: #7ED321; }

.signature-success__text {
  font-size: 14px; }

.print-only {
  display: none; }

@media print {
  * {
    -webkit-print-color-adjust: exact;
    color-adjust: exact !important; }
  body {
    background: #ffffff; }
  .no-print {
    display: none; }
  .print-only {
    display: block; }
  .conversations-messages__body {
    padding: 0 50px; } }

.selectable-colored-bubble {
  padding: 25px;
  border-radius: 10px;
  width: 19%;
  cursor: pointer;
  border: 1px solid white; }
  .selectable-colored-bubble__selected {
    border: 1px solid #32CC66; }
  .selectable-colored-bubble__name {
    height: 40px; }
  .selectable-colored-bubble input[type='radio']:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -2px;
    left: -1px;
    position: relative;
    border-color: #d1d3d1;
    content: '';
    display: inline-block;
    visibility: visible; }
  .selectable-colored-bubble input[type='radio']:checked:after {
    width: 14px;
    height: 14px;
    border-radius: 15px;
    top: 1px;
    left: -1px;
    position: relative;
    background-color: #32CC66;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 1px solid #d1d3d1; }

.carousel__navigation__right {
  position: absolute;
  right: -50px;
  top: calc(50% - 25px);
  cursor: pointer; }
  .carousel__navigation__right svg {
    width: 50px;
    height: 50px;
    fill: #D9DDE2; }

.carousel__navigation__left {
  position: absolute;
  transform: rotate(180deg);
  left: -50px;
  top: calc(50% - 25px);
  cursor: pointer; }
  .carousel__navigation__left svg {
    width: 50px;
    height: 50px;
    fill: #D9DDE2; }

.carousel__picture-click {
  cursor: pointer; }

.dropdown-select {
  position: relative;
  display: inline-block;
  outline: none;
  height: 34px;
  box-sizing: border-box; }
  .dropdown-select a {
    position: relative;
    min-width: 50px;
    height: 100%;
    padding: 0px 40px 0px 20px;
    line-height: 34px;
    white-space: nowrap;
    background: #fff;
    border: 1px solid #535963;
    color: #535963;
    border-radius: 0px;
    font-size: 13px; }
  .dropdown-select .a:hover {
    opacity: 1 !important; }
  .dropdown-select .a:active {
    background: #fff !important; }
  .dropdown-select .a--disabled {
    opacity: 0.5; }
    .dropdown-select .a--disabled:hover {
      opacity: 0.5;
      transform: none;
      cursor: default; }
  .dropdown-select__wrapper {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    padding: 5px 0;
    margin: 5px 0 0;
    background: white;
    min-width: 200px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
  .dropdown-select__search {
    height: 25px;
    font-size: 14px;
    padding-top: 2px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2); }
    .dropdown-select__search input {
      outline: none;
      background-color: transparent;
      border: 0px solid;
      padding: 0 10px;
      color: #535963;
      width: 100%;
      box-sizing: border-box; }
  .dropdown-select__caret {
    position: absolute;
    width: 0;
    height: 0;
    right: 15px;
    top: 15px;
    vertical-align: top;
    border-top: 4px solid #535963;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    content: ""; }
  .dropdown-select__items {
    max-height: 200px;
    overflow-y: scroll;
    text-align: left; }
  .dropdown-select__item {
    user-select: none;
    padding: 5px 10px;
    color: #535963;
    cursor: pointer;
    font-size: 14px;
    text-transform: lowercase; }
    .dropdown-select__item:hover {
      background-color: #535963;
      color: #ffffff; }
  .dropdown-select__no-item {
    user-select: none;
    padding: 5px 10px;
    color: #535963;
    text-align: center;
    font-size: 14px; }

.slick-list, .slick-slider, .slick-track {
  position: relative;
  display: block; }

.slick-loading .slick-slide, .slick-loading .slick-track {
  visibility: hidden; }

.slick-slider {
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: 0; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-list, .slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  top: 0;
  left: 0; }

.slick-track:after, .slick-track:before {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir=rtl] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

@charset "UTF-8";
.slick-dots, .slick-next, .slick-prev {
  position: absolute;
  display: block;
  padding: 0; }

.slick-dots li button:before, .slick-next:before, .slick-prev:before {
  font-family: slick;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-loading .slick-list {
  background: center center no-repeat #fff; }

.slick-next, .slick-prev {
  font-size: 0;
  line-height: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: 0;
  background: 0 0; }

.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover {
  color: transparent;
  outline: 0;
  background: 0 0; }

.slick-next:focus:before, .slick-next:hover:before, .slick-prev:focus:before, .slick-prev:hover:before {
  opacity: 1; }

.slick-next.slick-disabled:before, .slick-prev.slick-disabled:before {
  opacity: .25; }

.slick-next:before, .slick-prev:before {
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: #fff; }

.slick-prev {
  left: -25px; }

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto; }

.slick-prev:before {
  content: 'â†'; }

.slick-next:before, [dir=rtl] .slick-prev:before {
  content: 'â†’'; }

.slick-next {
  right: -25px; }

[dir=rtl] .slick-next {
  right: auto;
  left: -25px; }

[dir=rtl] .slick-next:before {
  content: 'â†'; }

.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  bottom: -25px;
  width: 100%;
  margin: 0;
  list-style: none;
  text-align: center; }

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer; }

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: 0 0; }

.slick-dots li button:focus, .slick-dots li button:hover {
  outline: 0; }

.slick-dots li button:focus:before, .slick-dots li button:hover:before {
  opacity: 1; }

.slick-dots li button:before {
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: 'â€¢';
  text-align: center;
  opacity: .25;
  color: #000; }

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: #000; }

/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/JedWatson/react-select
*/
.Select {
  position: relative; }

.Select,
.Select div,
.Select input,
.Select span {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.Select.is-disabled > .Select-control {
  background-color: #F3F5F7; }

.Select.is-disabled > .Select-control:hover {
  box-shadow: none; }

.Select.is-disabled .Select-arrow-zone {
  cursor: default;
  pointer-events: none;
  opacity: 0.35; }

.Select-control {
  background-color: #fff;
  border-color: #d9d9d9 #ccc #b3b3b3;
  border-radius: 4px;
  border: 1px solid #ccc;
  color: #333;
  cursor: default;
  display: table;
  border-spacing: 0;
  border-collapse: separate;
  height: 36px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%; }

.Select-control:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06); }

.Select-control .Select-input:focus {
  outline: none; }

.is-searchable.is-open > .Select-control {
  cursor: text; }

.is-open > .Select-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.is-open > .Select-control .Select-arrow {
  top: -2px;
  border-color: transparent transparent #999;
  border-width: 0 5px 5px; }

.is-searchable.is-focused:not(.is-open) > .Select-control {
  cursor: text; }

.Select-placeholder,
.Select--single > .Select-control .Select-value {
  bottom: 0;
  color: #aaa;
  left: 0;
  line-height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.has-value.Select--single > .Select-control .Select-value .Select-value-label,
.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value .Select-value-label {
  color: #333; }

.has-value.Select--single > .Select-control .Select-value a.Select-value-label,
.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label {
  cursor: pointer;
  text-decoration: none; }

.has-value.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  color: #007eff;
  outline: none;
  text-decoration: underline; }

.Select-input {
  display: flex !important;
  align-items: center;
  height: 34px;
  padding-left: 10px;
  padding-right: 10px; }

.Select-input > input {
  width: 100%;
  background: none transparent;
  border: 0 none;
  box-shadow: none;
  cursor: default;
  display: inline-block;
  font-family: inherit;
  font-size: 14px;
  margin: 0;
  outline: none;
  line-height: 14px;
  /* For IE 8 compatibility */
  padding: 0;
  /* For IE 8 compatibility */
  -webkit-appearance: none; }

.is-focused .Select-input > input {
  cursor: text; }

.has-value.is-pseudo-focused .Select-input {
  opacity: 0; }

.Select-control:not(.is-searchable) > .Select-input {
  outline: none; }

.Select-loading-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 16px; }

.Select-loading {
  -webkit-animation: Select-animation-spin 400ms infinite linear;
  -o-animation: Select-animation-spin 400ms infinite linear;
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-right-color: #333;
  display: inline-block;
  position: relative;
  vertical-align: middle; }

.Select-clear-zone {
  -webkit-animation: Select-animation-fadeIn 200ms;
  -o-animation: Select-animation-fadeIn 200ms;
  animation: Select-animation-fadeIn 200ms;
  color: #999;
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 17px; }

.Select-clear-zone:hover {
  color: #D0021B; }

.Select-clear {
  display: inline-block;
  font-size: 18px;
  line-height: 1; }

.Select--multi .Select-clear-zone {
  width: 17px; }

.Select-arrow-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  padding-right: 5px; }

.Select-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 2.5px;
  display: inline-block;
  height: 0;
  width: 0;
  position: relative; }

.is-open .Select-arrow,
.Select-arrow-zone:hover > .Select-arrow {
  border-top-color: #666; }

.Select--multi .Select-multi-value-wrapper {
  display: inline-block; }

.Select .Select-aria-only {
  display: inline-block;
  height: 1px;
  width: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  float: left; }

@-webkit-keyframes Select-animation-fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes Select-animation-fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.Select-menu-outer {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #fff;
  border: none;
  box-sizing: border-box;
  margin-top: 5px;
  max-height: 200px;
  position: absolute;
  top: 100%;
  z-index: 1;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  box-shadow: rgba(51, 48, 79, 0.2) 0px 0px 5px 2px; }

.Select-menu {
  max-height: 198px;
  overflow-y: auto; }

.Select-option {
  box-sizing: border-box;
  background-color: #fff;
  color: #666666;
  cursor: pointer;
  display: block;
  padding: 8px 10px; }

.Select-option:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px; }

.Select-option.is-selected {
  background-color: #f5faff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.04);
  color: #333; }

.Select-option.is-focused {
  color: #333; }

.Select-option.is-disabled {
  color: #cccccc;
  cursor: default; }

.Select-noresults {
  box-sizing: border-box;
  color: #999999;
  cursor: default;
  display: block;
  padding: 8px 10px; }

.Select--multi .Select-input {
  vertical-align: middle;
  margin-left: 10px;
  padding: 0; }

.Select--multi.has-value .Select-input {
  margin-left: 5px; }

.Select--multi .Select-value {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  border-radius: 2px;
  border: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  color: #007eff;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.4;
  margin-left: 5px;
  margin-top: 5px;
  vertical-align: top; }

.Select--multi .Select-value-icon,
.Select--multi .Select-value-label {
  display: inline-block;
  vertical-align: middle; }

.Select--multi .Select-value-label {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  cursor: default;
  padding: 2px 5px; }

.Select--multi a.Select-value-label {
  color: #007eff;
  cursor: pointer;
  text-decoration: none; }

.Select--multi a.Select-value-label:hover {
  text-decoration: underline; }

.Select--multi .Select-value-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-right: 1px solid rgba(0, 126, 255, 0.24);
  padding: 1px 5px 3px; }

.Select--multi .Select-value-icon:hover,
.Select--multi .Select-value-icon:focus {
  color: #0071e6; }

.Select--multi.is-disabled .Select-value {
  background-color: #fcfcfc;
  border: 1px solid #e3e3e3;
  color: #333; }

.Select--multi.is-disabled .Select-value-icon {
  cursor: not-allowed;
  border-right: 1px solid #e3e3e3; }

@keyframes Select-animation-spin {
  to {
    transform: rotate(1turn); } }

@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn); } }

.custom-select {
  min-width: 250px;
  outline: none;
  display: inline-block;
  color: #8D949F;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 13px;
  position: relative;
  margin-right: 10px; }

.conversations-list__message.is-active {
  background: #f4f5f67c;
  border-left: 1px solid #DADDE3;
  border-right: 1px solid #DADDE3;
  z-index: 15; }

.form-group > label {
  margin-bottom: 5px; }

button {
  border-style: none; }

/* Add scrollbar by default */
::-webkit-scrollbar {
  width: 9px; }

::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.5); }

/* Hide scrollbar on navigation-menu */
.scroller-navigation::-webkit-scrollbar {
  width: 0px;
  background: transparent;
  /* make scrollbar transparent */ }

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

.button-container > span {
  vertical-align: middle; }

.button.width-loader {
  position: relative; }

.loader {
  vertical-align: middle;
  display: inline-block;
  margin-right: 10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #06b5f5;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  animation: spin 2s linear infinite; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.fr-toolbar .fr-command.fr-btn i, .fr-popup .fr-command.fr-btn i, .fa.fa-align-left, .fa.fa-align-center, .fa.fa-align-right, .fa.fa-align-justify {
  position: static;
  visibility: visible; }

.fr-popup {
  z-index: 1000 !important; }

.fr-popup .fr-input-line input[type=text], .fr-popup .fr-input-line textarea {
  padding: 17px 0 2px !important; }

.fr-popup .fr-checkbox-line label {
  display: inline-block; }

/** Conversations **/
.conversations-list__header {
  margin: 0 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 12px; }

.conversations-list__header__item {
  padding: 0 5px 15px 5px;
  margin: 0; }

.conversations-messages__compose {
  padding-right: 20px; }

.conversations-messages__compose--new textarea {
  height: inherit;
  max-height: 315px;
  overflow: scroll; }

@media screen and (max-width: 768px) {
  .conversations-messages__compose textarea {
    max-height: 425px; } }

/** datepicker **/
.react-datepicker__input-container {
  width: 100%; }

/** services **/
.services__list__item__title {
  font-size: 15px; }

/** header **/
.header__title {
  padding: 23px 0; }

@media (max-width: 991px) {
  .header__title {
    padding: 7px 0; }
    .header__title img {
      max-height: 54px !important; }
  .conversations-list__header {
    display: flex;
    flex-direction: column; } }

@media (max-width: 768px) {
  .header__title img {
    max-height: 54px !important; } }

/** home **/
@media (min-width: 992px) and (max-width: 1280px) {
  .real-estate-infos__profiles__item {
    height: 96px; }
  .real-estate-infos__profiles__item__message {
    position: static; } }

.real-estate-infos__profiles__item__message svg {
  fill: #FF4C3F; }

.real-estate-infos__profiles__item__message {
  bottom: 13px;
  color: #FF4C3F; }

.real-estate-infos__profiles__item__message:before {
  content: none;
  background: none;
  padding: 0; }

table td a svg {
  fill: #333;
  width: 20px;
  height: 20px; }

.publication-datepickier {
  height: 50px;
  color: #8D949F;
  font-size: 13px; }

.slick-list {
  height: auto;
  transition: height 500ms ease-in-out; }

.slick-slide.slick-active {
  left: 0 !important;
  border: none !important;
  margin: 0 auto !important;
  height: initial !important;
  clip: initial !important;
  overflow: visible !important;
  padding: inherit !important;
  position: inherit !important; }

.slick-next {
  right: 10px; }

.slick-prev {
  left: 10px;
  z-index: 10; }

.owl-prev {
  z-index: 10; }

.modal-post__gallery__item.special:hover div {
  visibility: visible;
  opacity: 1; }

.services__item__header__icon-back {
  background: transparent; }

.loaderx,
.loaderx:after {
  border-radius: 50%;
  width: 30px;
  height: 30px; }

.tab_container_sticky:first-child {
  position: sticky;
  position: -webkit-sticky;
  left: 0;
  z-index: 2; }

.tab_container_sticky:nth-child(2) {
  position: sticky;
  position: -webkit-sticky;
  left: 48px;
  z-index: 1; }

.loaderx {
  margin: 60px auto;
  font-size: 3px;
  position: relative;
  overflow: hidden;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(42, 46, 52, 0.2);
  border-right: 1.1em solid rgba(42, 46, 52, 0.2);
  border-bottom: 1.1em solid rgba(42, 46, 52, 0.2);
  border-left: 1.1em solid rgba(42, 46, 52, 0.8);
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear; }

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.header__status__loading {
  font-size: 12px;
  color: #535963;
  line-height: 30px;
  text-decoration: none;
  position: relative;
  padding: 2px 14px 2px 2px;
  margin: 30px 0;
  display: inline-block;
  overflow: hidden; }

.header__status__imagery {
  font-size: 12px;
  color: #535963;
  line-height: 30px;
  text-decoration: none;
  position: relative;
  padding-right: 14px;
  margin: 23px 0;
  display: inline-block; }

.header__status__imagery img {
  height: 54px; }

.header__status__navigation li {
  margin-left: 10px; }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }

.pictures__grid__item {
  width: 100%; }

.primary-navigation {
  width: 100px;
  overflow: hidden; }

.primary-navigation > .scroller-navigation {
  box-sizing: border-box;
  overflow: scroll;
  height: 100vh;
  width: 115px; }

.contact-select.cat {
  top: 49px; }

@media screen and (max-width: 992px) {
  .primary-navigation > .scroller-navigation {
    box-sizing: border-box;
    width: 85px !important; }
  .primary-navigation {
    width: 70px !important; }
  .contact-select-simple {
    top: 46px; }
  .contact-select {
    top: 49px; } }

/* Like/Unlike */
.pictures-detail__right-infos__likes-count--notchecked {
  color: #535963; }

.publication_liked {
  color: #FF4C3F; }

.homepage-introduction__introduction h1 {
  font-size: 19px; }

.header__status__profile:after {
  border-width: 0; }

.primary-navigation ul {
  font-size: 0; }

table tr, table td {
  padding-left: 15px;
  text-align: left; }

table td.numeric, table th.numeric {
  text-align: right; }

table td.center, table th.center {
  text-align: center; }

.conversation-messages__nomessages {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  flex-direction: column; }

.conversation-messages__nomessages svg {
  stroke: #535963;
  margin-bottom: 40px; }

.conversation-messages__nomessages p {
  color: #535963;
  font-size: 14px; }

.conversations-messages__compose {
  padding-left: 60px; }

.conversations-messages__compose__controls-left {
  left: 60px; }

.remodal {
  padding: 10px; }

.remodal-without-padding {
  padding: 0px !important; }

.modal-post__footer, .modal-post .modal__body {
  padding: 10px; }

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 650px; } }

.modal-post {
  max-width: 650px; }

.services__header__left {
  float: left; }

.base-fill {
  fill: #06b5f5; }

.chart {
  width: 100%;
  height: 300px;
  display: inline-block; }

.chart h1 {
  font-size: 18px;
  color: #535963; }

.chart h1 span {
  font-size: 13px;
  color: #535963; }

@media only screen and (min-width: 800px) {
  .chart {
    width: 400px;
    height: 300px;
    display: inline-block; } }

@media only screen and (min-width: 1280px) {
  .chart {
    width: 400px;
    height: 300px;
    display: inline-block; } }

.pieChart {
  display: inline-block;
  background-color: white;
  width: 300px;
  text-align: center;
  margin-right: 15px;
  margin-bottom: 15px; }

.pieChart h2 {
  text-align: center;
  font-size: 18px;
  color: #535963;
  margin-bottom: 0px; }

.pieChart p {
  text-align: center;
  font-size: 13px;
  color: #535963;
  margin-bottom: 0px; }

.pieChart div {
  display: inline-block; }

.remodal-close {
  z-index: 20; }

.Select-control {
  border-radius: 4px;
  border: none;
  background: #F3F5F7; }

.Select-placeholder {
  padding-top: 2px; }

.conversations__header__search {
  background: #F3F5F7;
  width: 300px;
  border-radius: 4px;
  border: none;
  padding: 8px 10px 8px 40px; }

.conversations__header__search > input {
  background: transparent; }

.conversations__header__search > input::placeholder {
  color: #2E3844; }

ul.tabs li {
  font-size: 12px; }

.confirm-holder .confirm button {
  color: #888f9a; }

.evaluationButton {
  display: inline-block;
  width: 100px;
  cursor: pointer; }

.evaluationButton svg {
  display: inline-block;
  width: 100px; }

.evaluationButtonWrapper {
  margin-top: 50px;
  margin-bottom: 50px; }

.conversations-messages__header, .conversations-messages__header-form {
  margin-bottom: 0; }

.conversations-messages__header-form__category, .conversations-messages__header-form__idproject {
  position: relative;
  border-bottom: 1px solid #dadde3;
  padding-left: 60px; }

.conversations-messages__header-form__category:before, .conversations-messages__header-form__idproject:before {
  content: " ";
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  top: 13px;
  left: 28px;
  position: absolute; }

.conversations-messages__header-form__category:before {
  background-image: url("./assets/svg/street-sign.svg"); }

.conversations-messages__header-form__idproject:before {
  background-image: url("./assets/svg/conversations--messages-form-header-project.svg"); }

.conversations-messages__header-form__batch {
  position: relative;
  border-bottom: 1px solid #dadde3;
  padding-left: 60px; }

.conversations-messages__header-form__batch:before {
  content: " ";
  background-image: url("./assets/svg/house.svg");
  width: 18px;
  height: 18px;
  background-size: 18px 18px;
  top: 15px;
  left: 28px;
  position: absolute; }

.conversations-messages__header-form__subject {
  padding: 10px 0 10px 60px; }

.conversations-messages__header-form__subject:before {
  top: 14px; }

.body-dark {
  background-color: #535963; }

.advancement, .conversations, .page-content, .services, .pictures, .documents {
  padding: 25px; }

.documents, .pictures {
  margin-top: 0; }

.documents__table, .pictures__table {
  padding-right: 0; }

.documents__header, .pictures__header {
  padding: 0; }

.services__header {
  overflow: initial; }

.modal-post__gallery__item {
  height: 65px; }

.modal-post h1 {
  font-size: 18px; }

.header__project-selector .Select-control {
  border: 0;
  background-color: transparent;
  display: flex;
  height: 45px;
  margin-bottom: -30px; }

.header__project-selector .Select-control:hover {
  box-shadow: none; }

.header__project-selector .custom-select {
  min-width: 0;
  width: 100%; }

.header__project-selector .Select-value {
  font-size: 11px;
  position: inherit !important;
  line-height: normal !important;
  padding: 0 !important; }

.header__project-selector .Select-value-label {
  font-weight: 500;
  max-width: 200px;
  display: block;
  text-align: left; }

.header__project-selector .Select-menu-outer {
  border: none;
  font-size: 11px; }

.header__project-selector .Select-menu-outer .Select-menu .Select-option {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }

.thin-datepicker .react-datepicker__input-container {
  width: 100px; }

.thin-datepicker .form-control {
  font-size: 13px; }

.conversations__header__controls .button svg {
  stroke: white; }

.conversations__header__controls {
  float: right;
  display: flex;
  align-items: center; }

table td {
  color: #535963;
  font-size: 13px; }

.confirm-holder .confirm {
  border-radius: 0px !important; }

.animated.simpleBounce {
  animation-duration: .7s;
  animation-fill-mode: both;
  animation-name: simpleBounce; }

@keyframes simpleBounce {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    transform: scale3d(0.4, 0.4, 0.4); }
  40% {
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    transform: scale3d(1, 1, 1); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }

.conversations-list__message__excerpt {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 30px; }

.conversations-list__message__subject {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.Select-control .Select-placeholder {
  color: #2E3844; }

.advancement__header .Select-menu-outer {
  z-index: 1000; }

.conversations-list__list {
  margin: 0;
  width: 100%;
  position: relative; }

.conversations-list__list::before {
  content: '';
  position: absolute;
  width: 15px;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #FFF;
  z-index: 999; }

.conversation_message_content {
  margin-right: -15px;
  padding-right: 15px; }

.conversations-list__container {
  width: 100%;
  padding-top: 15px;
  z-index: 0; }

.InfoContent .form-group {
  max-width: 450px; }

@media screen and (max-width: 990px) {
  .pictures [class*="grid-5"] {
    grid-template-columns: repeat(4, 1fr); } }

.full-modal {
  margin: 5px 5px 5px 5px !important;
  height: calc(99vh - 20px) !important;
  width: calc(100vw - 20px) !important;
  max-width: 100% !important;
  padding: 0 !important;
  overflow: hidden !important; }

.ReactModal__Body--open {
  overflow: hidden;
  position: fixed; }

.modal_pdftron-editor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999; }

.modal__pdf-tron {
  display: flex;
  flex-direction: column;
  background: white;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1024; }

.modal__pdf-tron > .modal__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 16px; }

.modal__pdf-tron > .modal__header > .action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap; }

.modal__pdf-tron > .modal__header > .action > .title {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  color: #2e3844;
  padding-right: 12px;
  font-size: 14px; }

.modal__pdf-tron > .modal__header > .content__count {
  margin-top: 12px;
  display: flex;
  justify-content: center; }

.modal__pdf-tron > .modal__header > .content__count > span {
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center; }

.modal__pdf-tron > .modal__header > .content__count > span > svg {
  width: 20px;
  height: 20px;
  margin-right: 8px; }

.modal__pdf-tron > .modal__header > .content__count > span {
  font-weight: bold;
  color: white;
  font-size: 14px;
  padding: 8px 16px; }

.modal__pdf-tron > .modal__header > .action > .content-button {
  display: flex;
  align-items: center;
  justify-content: end; }

.modal__pdf-tron > .modal__header > .action > .content-button > .close {
  width: 15px;
  height: 15px;
  background-image: url("./assets/svg/modal--close.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 14px;
  cursor: pointer; }

.modal__pdf-tron > .viewer__pdf-tron {
  height: inherit;
  width: 100%; }

.modal__pdf-tron > .modal__field-price {
  top: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: rgba(28, 28, 28, 0.337); }

.modal__pdf-tron > .modal__field-price > .modal__number-format {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  min-width: 380px; }

.modal__pdf-tron > .modal__field-price > .modal__number-format > .header__close {
  display: flex;
  width: 100%;
  justify-content: end; }

.modal__pdf-tron > .modal__field-price > .modal__number-format > .header__close > .close {
  width: 15px;
  height: 15px;
  background-image: url("./assets/svg/modal--close.svg");
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer; }

.modal__pdf-tron > .modal__field-price > .modal__number-format > span {
  margin: 16px 0px;
  font-weight: bold; }

.modal__pdf-tron > .modal__field-price > .modal__number-format > a {
  margin: 16px 0px; }

.container_module_title {
  margin-bottom: 32px; }

.module_title {
  font-size: 32px;
  font-weight: 700; }

.label_tooltip {
  display: flex;
  flex-direction: column; }

.label_tooltip > .content {
  display: flex;
  align-items: center; }

.label_tooltip > .content > .label_tooltip_data {
  font-size: 14px; }

.label_tooltip > .content > .content_tag {
  display: flex;
  align-items: center;
  margin-left: 8px;
  font-size: 10px;
  color: #7D7D7D;
  fill: #7D7D7D;
  font-weight: 500; }

.label_tooltip > .content > .content_tag:hover {
  cursor: pointer;
  color: #2A2E34;
  fill: #2A2E34;
  font-weight: 600;
  text-decoration: underline; }

.label_tooltip > .content .content_tag > svg {
  width: 16px;
  height: 16px; }

.external-sale-container .form-group select.form-control {
  min-width: inherit; }

/* Styles communs pour tous les types de toastr */
.redux-toastr .top-right {
  width: 450px;
  right: 10px;
  top: 55px; }

.redux-toastr .toastr {
  opacity: 1; }

.redux-toastr .top-right .toastr div {
  display: flex;
  align-items: center;
  background-color: white; }

.redux-toastr .top-right .toastr .toastr-left-container {
  display: flex;
  height: 70px;
  width: 96px;
  justify-content: center;
  background-color: white;
  position: relative; }

.redux-toastr .top-right .toastr .toastr-middle-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 0;
  margin: 12px 0; }

.redux-toastr .top-right .toastr .toastr-left-container .holder {
  width: 70px;
  height: 70px;
  position: relative;
  top: 0;
  left: 0;
  margin: 0; }

.redux-toastr .top-right .toastr .toastr-left-container .holder .toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  scale: 0.7;
  border-radius: 50%; }

.redux-toastr .top-right .toastr .toastr-left-container .holder .toast-icon svg {
  width: 34px;
  height: 34px; }

.redux-toastr .toastr .toastr-right-container {
  padding: 2px;
  width: auto; }

.toastr.success {
  border-left: 4px solid #50e2ae; }

.toastr.success .toastr-left-container .holder .toast-icon {
  background: #dcfaee; }

.toastr.error {
  border-left: 4px solid #f75234; }

.toastr.error .toastr-left-container .holder .toast-icon {
  background: #fddcd6; }

.toastr.warning {
  border-left: 4px solid #f3961f; }

.toastr.warning .toastr-left-container .holder .toast-icon {
  background: #fdead2; }

.toastr.info {
  border-left: 4px solid #59544d; }

.toastr.info .toastr-left-container .holder .toast-icon {
  background: #dedddc; }

.redux-toastr .top-right .toastr .toastr-middle-container .title {
  opacity: 1;
  color: #2e3844;
  font-family: "Avenir", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: SemiBold;
  letter-spacing: 0px;
  text-align: left;
  line-height: 20px;
  margin: 0px; }

.redux-toastr .top-right .toastr .toastr-middle-container .message {
  opacity: 0.6;
  color: #2e3844;
  font-family: "Avenir", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: Regular;
  letter-spacing: 0px;
  text-align: left;
  line-height: 20px;
  margin: 0px; }

.redux-toastr .toastr .close-toastr {
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%; }

.exception-container .exception-container-element {
  margin: 15px 4px;
  padding: 5px;
  box-shadow: 0px 4px 20px -10px rgba(0, 0, 0, 0.4); }

.redux-toastr .toastr .close-toastr:hover {
  background: #E2E6EA; }

.container-manager-email {
  display: flex;
  flex-direction: column;
  gap: 16px; }

.container-manager-email > .description {
  font-size: 14px; }

.container-manager-email > .section {
  display: flex;
  flex-direction: column;
  gap: 10px; }

.container-manager-email > .section > .title {
  font-size: 14px;
  font-weight: bold; }

.container-manager-email > .section > .consumer-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  padding-right: 4px; }

.radio-input-security {
  accent-color: black;
  width: 15px;
  height: 15px; }

.external-access-content-access-denied {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center; }

.external-access-content {
  color: #1D1B17;
  width: 100%;
  display: flex;
  gap: 32px;
  flex-direction: column;
  text-align: center;
  height: 100vh;
  justify-content: center;
  align-items: center; }

.external-access-content .text-link {
  color: #1D1B17; }

.external-access-content > .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px; }

.external-access-content > .section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center; }

.external-access-content > .section > .description {
  white-space: pre-line;
  line-height: 25px;
  margin: 0 24px; }

.external-access-content > .section > a {
  background: #1D1B17 !important; }

@keyframes shake {
  0% {
    transform: translateX(0); }
  25% {
    transform: translateX(-5px); }
  50% {
    transform: translateX(5px); }
  75% {
    transform: translateX(-5px); }
  100% {
    transform: translateX(0); } }

.external-access-content > .section > div > .input-error {
  border: 2px solid #f75234;
  animation: shake 0.5s; }

.otp-input {
  width: 40px;
  height: 40px;
  font-size: 20px;
  text-align: center; }

@media (min-width: 768px) {
  .otp-input {
    width: 50px;
    height: 50px;
    font-size: 22px; } }

@media (min-width: 1024px) {
  .otp-input {
    width: 60px;
    height: 60px;
    font-size: 24px; } }

.react-datepicker__tether-element-attached-top .react-datepicker__triangle, .react-datepicker__tether-element-attached-bottom .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow {
  margin-left: -8px;
  position: absolute; }

.react-datepicker__tether-element-attached-top .react-datepicker__triangle, .react-datepicker__tether-element-attached-bottom .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow, .react-datepicker__tether-element-attached-top .react-datepicker__triangle::before, .react-datepicker__tether-element-attached-bottom .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before {
  box-sizing: content-box;
  position: absolute;
  border: 8px solid transparent;
  height: 0;
  width: 1px; }

.react-datepicker__tether-element-attached-top .react-datepicker__triangle::before, .react-datepicker__tether-element-attached-bottom .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before {
  content: "";
  z-index: -1;
  border-width: 8px;
  left: -8px;
  border-bottom-color: #aeaeae; }

.react-datepicker__tether-element-attached-top .react-datepicker__triangle {
  top: 0;
  margin-top: -8px; }

.react-datepicker__tether-element-attached-top .react-datepicker__triangle, .react-datepicker__tether-element-attached-top .react-datepicker__triangle::before {
  border-top: none;
  border-bottom-color: #f0f0f0; }

.react-datepicker__tether-element-attached-top .react-datepicker__triangle::before {
  top: -1px;
  border-bottom-color: #aeaeae; }

.react-datepicker__tether-element-attached-bottom .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow {
  bottom: 0;
  margin-bottom: -8px; }

.react-datepicker__tether-element-attached-bottom .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow, .react-datepicker__tether-element-attached-bottom .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before {
  border-bottom: none;
  border-top-color: #fff; }

.react-datepicker__tether-element-attached-bottom .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before {
  bottom: -1px;
  border-top-color: #aeaeae; }

.react-datepicker {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  background-color: #fff;
  color: #000;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  display: inline-block;
  position: relative; }

.react-datepicker__triangle {
  position: absolute;
  left: 50px; }

.react-datepicker__tether-element-attached-bottom.react-datepicker__tether-element {
  margin-top: -20px; }

.react-datepicker__header {
  text-align: center;
  background-color: #f0f0f0;
  border-bottom: 1px solid #aeaeae;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
  padding-top: 8px;
  position: relative; }

.react-datepicker__year-dropdown-container--select,
.react-datepicker__month-dropdown-container--select,
.react-datepicker__year-dropdown-container--scroll,
.react-datepicker__month-dropdown-container--scroll {
  display: inline-block;
  margin: 0 2px; }

.react-datepicker__current-month {
  margin-top: 0;
  color: #000;
  font-weight: bold;
  font-size: 0.944rem; }

.react-datepicker__navigation {
  line-height: 1.7rem;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 10px;
  width: 0;
  border: 0.45rem solid transparent;
  z-index: 1; }

.react-datepicker__navigation--previous {
  left: 10px;
  border-right-color: #ccc; }

.react-datepicker__navigation--previous:hover {
  border-right-color: #b3b2b2; }

.react-datepicker__navigation--next {
  right: 10px;
  border-left-color: #ccc; }

.react-datepicker__navigation--next:hover {
  border-left-color: #b3b2b2; }

.react-datepicker__navigation--years {
  position: relative;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.react-datepicker__navigation--years-previous {
  top: 4px;
  border-top-color: #ccc; }

.react-datepicker__navigation--years-previous:hover {
  border-top-color: #b3b2b2; }

.react-datepicker__navigation--years-upcoming {
  top: -4px;
  border-bottom-color: #ccc; }

.react-datepicker__navigation--years-upcoming:hover {
  border-bottom-color: #b3b2b2; }

.react-datepicker__month-container {
  display: inline;
  float: left; }

.react-datepicker__month {
  margin: 0.4rem;
  text-align: center; }

.react-datepicker__week-number {
  color: #ccc;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem; }

.react-datepicker__day-name,
.react-datepicker__day {
  color: #000;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem; }

.react-datepicker__day {
  cursor: pointer; }

.react-datepicker__day:hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0; }

.react-datepicker__day--today {
  font-weight: bold; }

.react-datepicker__day--highlighted {
  border-radius: 0.3rem;
  background-color: #3dcc4a;
  color: #fff; }

.react-datepicker__day--highlighted:hover {
  background-color: #32be3f; }

.react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff; }

.react-datepicker__day--selected:hover, .react-datepicker__day--in-selecting-range:hover, .react-datepicker__day--in-range:hover {
  background-color: #1d5d90; }

.react-datepicker__day--keyboard-selected {
  border-radius: 0.3rem;
  background-color: #2a87d0;
  color: #fff; }

.react-datepicker__day--keyboard-selected:hover {
  background-color: #1d5d90; }

.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range) {
  background-color: rgba(33, 107, 165, 0.5); }

.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range) {
  background-color: #f0f0f0;
  color: #000; }

.react-datepicker__day--disabled {
  cursor: default;
  color: #ccc; }

.react-datepicker__day--disabled:hover {
  background-color: transparent; }

.react-datepicker__input-container {
  position: relative;
  display: inline-block; }

.react-datepicker__year-read-view,
.react-datepicker__month-read-view {
  border: 1px solid transparent;
  border-radius: 0.3rem; }

.react-datepicker__year-read-view:hover,
.react-datepicker__month-read-view:hover {
  cursor: pointer; }

.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow {
  border-top-color: #b3b2b2; }

.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow {
  border-top-color: #ccc;
  float: right;
  margin-left: 20px;
  top: 8px;
  position: relative;
  border-width: 0.45rem; }

.react-datepicker__year-dropdown,
.react-datepicker__month-dropdown {
  background-color: #f0f0f0;
  position: absolute;
  width: 50%;
  left: 25%;
  top: 30px;
  text-align: center;
  border-radius: 0.3rem;
  border: 1px solid #aeaeae; }

.react-datepicker__year-dropdown:hover,
.react-datepicker__month-dropdown:hover {
  cursor: pointer; }

.react-datepicker__year-dropdown--scrollable,
.react-datepicker__month-dropdown--scrollable {
  height: 150px;
  overflow-y: scroll; }

.react-datepicker__year-option,
.react-datepicker__month-option {
  line-height: 20px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.react-datepicker__year-option:first-of-type,
.react-datepicker__month-option:first-of-type {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem; }

.react-datepicker__year-option:last-of-type,
.react-datepicker__month-option:last-of-type {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem; }

.react-datepicker__year-option:hover,
.react-datepicker__month-option:hover {
  background-color: #ccc; }

.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming {
  border-bottom-color: #b3b2b2; }

.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous {
  border-top-color: #b3b2b2; }

.react-datepicker__year-option--selected,
.react-datepicker__month-option--selected {
  position: absolute;
  left: 15px; }

.react-datepicker__close-icon {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  display: inline-block;
  height: 0;
  outline: 0;
  padding: 0;
  vertical-align: middle; }

.react-datepicker__close-icon::after {
  background-color: #216ba5;
  border-radius: 50%;
  bottom: 0;
  box-sizing: border-box;
  color: #fff;
  content: "\00d7";
  cursor: pointer;
  font-size: 12px;
  height: 16px;
  width: 16px;
  line-height: 1;
  margin: -8px auto 0;
  padding: 2px;
  position: absolute;
  right: 7px;
  text-align: center;
  top: 50%; }

.react-datepicker__today-button {
  background: #f0f0f0;
  border-top: 1px solid #aeaeae;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  clear: left; }

.react-datepicker__tether-element {
  z-index: 2147483647; }

.react-datepicker__portal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 2147483647; }

.react-datepicker__portal .react-datepicker__day-name,
.react-datepicker__portal .react-datepicker__day {
  width: 3rem;
  line-height: 3rem; }

@media (max-width: 400px), (max-height: 550px) {
  .react-datepicker__portal .react-datepicker__day-name,
  .react-datepicker__portal .react-datepicker__day {
    width: 2rem;
    line-height: 2rem; } }

.react-datepicker__portal .react-datepicker__current-month {
  font-size: 1.44rem; }

.react-datepicker__portal .react-datepicker__navigation {
  border: 0.81rem solid transparent; }

.react-datepicker__portal .react-datepicker__navigation--previous {
  border-right-color: #ccc; }

.react-datepicker__portal .react-datepicker__navigation--previous:hover {
  border-right-color: #b3b2b2; }

.react-datepicker__portal .react-datepicker__navigation--next {
  border-left-color: #ccc; }

.react-datepicker__portal .react-datepicker__navigation--next:hover {
  border-left-color: #b3b2b2; }

.rc-slider {
  position: relative;
  height: 14px;
  padding: 5px 0;
  width: 100%;
  border-radius: 6px;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.rc-slider * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.rc-slider-rail {
  position: absolute;
  width: 100%;
  background-color: #e9e9e9;
  height: 2px; }

.rc-slider-track {
  position: absolute;
  left: 0;
  height: 2px;
  border-radius: 6px;
  background-color: #FF4C3F; }

.rc-slider-handle {
  position: absolute;
  margin-left: -7px;
  margin-top: -6px;
  width: 14px;
  height: 14px;
  cursor: pointer;
  border-radius: 50%;
  border: solid 2px #FF4C3F;
  background-color: #fff; }

.rc-slider-handle:hover {
  border-color: #57c5f7; }

.rc-slider-handle-active:active {
  border-color: #57c5f7;
  box-shadow: 0 0 5px #57c5f7; }

.rc-slider-mark {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  font-size: 12px; }

.rc-slider-mark-text {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  color: #999; }

.rc-slider-mark-text-active {
  color: #666; }

.rc-slider-step {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent; }

.rc-slider-dot {
  position: absolute;
  bottom: -2px;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  border: 2px solid #e9e9e9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle; }

.rc-slider-dot:first-child {
  margin-left: -4px; }

.rc-slider-dot:last-child {
  margin-left: -4px; }

.rc-slider-dot-active {
  border-color: #96dbfa; }

.rc-slider-disabled {
  background-color: #e9e9e9; }

.rc-slider-disabled .rc-slider-track {
  background-color: #ccc; }

.rc-slider-disabled .rc-slider-handle,
.rc-slider-disabled .rc-slider-dot {
  border-color: #ccc;
  background-color: #fff;
  cursor: not-allowed; }

.rc-slider-disabled .rc-slider-mark-text,
.rc-slider-disabled .rc-slider-dot {
  cursor: not-allowed !important; }

.rc-slider-vertical {
  width: 14px;
  height: 100%;
  padding: 0 5px; }

.rc-slider-vertical .rc-slider-rail {
  height: 100%;
  width: 4px; }

.rc-slider-vertical .rc-slider-track {
  left: 5px;
  bottom: 0;
  width: 4px; }

.rc-slider-vertical .rc-slider-handle {
  margin-left: -5px;
  margin-bottom: -7px; }

.rc-slider-vertical .rc-slider-mark {
  top: 0;
  left: 18px;
  height: 100%; }

.rc-slider-vertical .rc-slider-step {
  height: 100%;
  width: 4px; }

.rc-slider-vertical .rc-slider-dot {
  left: 2px;
  margin-bottom: -4px; }

.rc-slider-vertical .rc-slider-dot:first-child {
  margin-bottom: -4px; }

.rc-slider-vertical .rc-slider-dot:last-child {
  margin-bottom: -4px; }

.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: block !important;
  -webkit-animation-play-state: paused;
  animation-play-state: paused; }

.rc-slider-tooltip-zoom-down-leave {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: block !important;
  -webkit-animation-play-state: paused;
  animation-play-state: paused; }

.rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active,
.rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active {
  -webkit-animation-name: rcSliderTooltipZoomDownIn;
  animation-name: rcSliderTooltipZoomDownIn;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
  -webkit-animation-name: rcSliderTooltipZoomDownOut;
  animation-name: rcSliderTooltipZoomDownOut;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1); }

.rc-slider-tooltip-zoom-down-leave {
  -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); }

@-webkit-keyframes rcSliderTooltipZoomDownIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0); }
  100% {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1); } }

@keyframes rcSliderTooltipZoomDownIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0); }
  100% {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1); } }

@-webkit-keyframes rcSliderTooltipZoomDownOut {
  0% {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1); }
  100% {
    opacity: 0;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0); } }

@keyframes rcSliderTooltipZoomDownOut {
  0% {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1); }
  100% {
    opacity: 0;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0); } }

.rc-slider-tooltip {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: visible;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.rc-slider-tooltip * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.rc-slider-tooltip-hidden {
  display: none; }

.rc-slider-tooltip-placement-top {
  padding: 4px 0 8px 0; }

.rc-slider-tooltip-inner {
  padding: 6px 2px;
  min-width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #6c6c6c;
  border-radius: 6px;
  box-shadow: 0 0 4px #d9d9d9; }

.rc-slider-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow {
  bottom: 4px;
  left: 50%;
  margin-left: -4px;
  border-width: 4px 4px 0;
  border-top-color: #6c6c6c; }

.rv-treemap {
  font-size: 12px;
  position: relative; }

.rv-treemap__leaf {
  overflow: hidden;
  position: absolute; }

.rv-treemap__leaf--circle {
  align-items: center;
  border-radius: 100%;
  display: flex;
  justify-content: center; }

.rv-treemap__leaf__content {
  overflow: hidden;
  padding: 10px;
  text-overflow: ellipsis; }

.rv-xy-plot {
  color: #c3c3c3;
  position: relative; }

.rv-xy-plot canvas {
  pointer-events: none; }

.rv-xy-plot .rv-xy-canvas {
  pointer-events: none;
  position: absolute; }

.rv-xy-plot__inner {
  display: block; }

.rv-xy-plot__axis__line {
  fill: none;
  stroke-width: 2px;
  stroke: #e6e6e9; }

.rv-xy-plot__axis__tick__line {
  stroke: #e6e6e9; }

.rv-xy-plot__axis__tick__text {
  fill: #6b6b76;
  font-size: 11px; }

.rv-xy-plot__axis__title text {
  fill: #6b6b76;
  font-size: 11px; }

.rv-xy-plot__grid-lines__line {
  stroke: #e6e6e9; }

.rv-xy-plot__circular-grid-lines__line {
  fill-opacity: 0;
  stroke: #e6e6e9; }

.rv-xy-plot__series, .rv-xy-plot__series path {
  pointer-events: all; }

.rv-xy-plot__circular-grid-lines__line {
  fill-opacity: 0;
  stroke: #e6e6e9; }

.rv-xy-plot__series, .rv-xy-plot__series path {
  pointer-events: all; }

.rv-xy-plot__series--line {
  fill: none;
  stroke: #000;
  stroke-width: 2px; }

.rv-crosshair {
  position: absolute;
  font-size: 11px;
  pointer-events: none; }

.rv-crosshair__line {
  background: #47d3d9;
  width: 1px; }

.rv-crosshair__inner {
  position: absolute;
  text-align: left;
  top: 0; }

.rv-crosshair__inner__content {
  border-radius: 4px;
  background: #3a3a48;
  color: #fff;
  font-size: 12px;
  padding: 7px 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); }

.rv-crosshair__inner--left {
  right: 4px; }

.rv-crosshair__inner--right {
  left: 4px; }

.rv-crosshair__title {
  font-weight: bold;
  white-space: nowrap; }

.rv-crosshair__item {
  white-space: nowrap; }

.rv-hint {
  position: absolute;
  pointer-events: none; }

.rv-hint__content {
  border-radius: 4px;
  padding: 7px 10px;
  font-size: 12px;
  background: #3a3a48;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: left;
  white-space: nowrap; }

.rv-discrete-color-legend {
  box-sizing: border-box;
  overflow-y: auto;
  font-size: 12px; }

.rv-discrete-color-legend.horizontal {
  white-space: nowrap; }

.rv-discrete-color-legend-item {
  color: #3a3a48;
  border-radius: 1px;
  padding: 9px 10px; }

.rv-discrete-color-legend-item.horizontal {
  display: inline-block; }

.rv-discrete-color-legend-item.horizontal .rv-discrete-color-legend-item__title {
  margin-left: 0;
  display: block; }

.rv-discrete-color-legend-item__color {
  background: #dcdcdc;
  display: inline-block;
  height: 2px;
  vertical-align: middle;
  width: 14px; }

.rv-discrete-color-legend-item__title {
  margin-left: 10px; }

.rv-discrete-color-legend-item.disabled {
  color: #b8b8b8; }

.rv-discrete-color-legend-item.clickable {
  cursor: pointer; }

.rv-discrete-color-legend-item.clickable:hover {
  background: #f9f9f9; }

.rv-search-wrapper {
  display: flex;
  flex-direction: column; }

.rv-search-wrapper__form {
  flex: 0; }

.rv-search-wrapper__form__input {
  width: 100%;
  color: #a6a6a5;
  border: 1px solid #e5e5e4;
  padding: 7px 10px;
  font-size: 12px;
  box-sizing: border-box;
  border-radius: 2px;
  margin: 0 0 9px;
  outline: 0; }

.rv-search-wrapper__contents {
  flex: 1;
  overflow: auto; }

.rv-continuous-color-legend {
  font-size: 12px; }

.rv-continuous-color-legend .rv-gradient {
  height: 4px;
  border-radius: 2px;
  margin-bottom: 5px; }

.rv-continuous-size-legend {
  font-size: 12px; }

.rv-continuous-size-legend .rv-bubbles {
  text-align: justify;
  overflow: hidden;
  margin-bottom: 5px;
  width: 100%; }

.rv-continuous-size-legend .rv-bubble {
  background: #d8d9dc;
  display: inline-block;
  vertical-align: bottom; }

.rv-continuous-size-legend .rv-spacer {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  width: 100%; }

.rv-legend-titles {
  height: 16px;
  position: relative; }

.rv-legend-titles__left, .rv-legend-titles__right, .rv-legend-titles__center {
  position: absolute;
  white-space: nowrap;
  overflow: hidden; }

.rv-legend-titles__center {
  display: block;
  text-align: center;
  width: 100%; }

.rv-legend-titles__right {
  right: 0; }

.rv-radial-chart .rv-xy-plot__series--label {
  pointer-events: none; }

/* ---------------------------------- */
/* ==Grillade v6                      */
/* ---------------------------------- */
/* IMPORTANT : this is the KNACSS v6 old Grid System based on Flexbox */
/* You only need it for projects on older browsers (IE11-) */
@media (min-width: 576px) {
  [class*=" grid-"],
  [class^="grid-"] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; }
    [class*=" grid-"] > *,
    [class^="grid-"] > * {
      box-sizing: border-box;
      min-width: 0;
      min-height: 0; } }

@media (min-width: 576px) {
  .grid,
  .grid--reverse {
    display: flex; }
    .grid > *,
    .grid--reverse > * {
      flex: 1 1 0%;
      box-sizing: border-box;
      min-width: 0;
      min-height: 0; }
    .grid.has-gutter > * + *,
    .grid--reverse.has-gutter > * + * {
      margin-left: calc(1rem - 0.01px); }
    .grid.has-gutter-l > * + *,
    .grid--reverse.has-gutter-l > * + * {
      margin-left: calc(2rem - 0.01px); }
    .grid.has-gutter-xl > * + *,
    .grid--reverse.has-gutter-xl > * + * {
      margin-left: calc(4rem - 0.01px); } }

@media (min-width: 576px) {
  [class*="grid-2"] > * {
    width: calc(100% / 2 - 0.01px); }
  [class*="grid-2"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-2"].has-gutter > * {
      width: calc(100% / 2 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-2"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-2"].has-gutter-l > * {
      width: calc(100% / 2 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-2"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-2"].has-gutter-xl > * {
      width: calc(100% / 2 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; }
  [class*="grid-3"] > * {
    width: calc(100% / 3 - 0.01px); }
  [class*="grid-3"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-3"].has-gutter > * {
      width: calc(100% / 3 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-3"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-3"].has-gutter-l > * {
      width: calc(100% / 3 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-3"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-3"].has-gutter-xl > * {
      width: calc(100% / 3 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; }
  [class*="grid-4"] > * {
    width: calc(100% / 4 - 0.01px); }
  [class*="grid-4"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-4"].has-gutter > * {
      width: calc(100% / 4 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-4"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-4"].has-gutter-l > * {
      width: calc(100% / 4 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-4"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-4"].has-gutter-xl > * {
      width: calc(100% / 4 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; }
  [class*="grid-5"] > * {
    width: calc(100% / 5 - 0.01px); }
  [class*="grid-5"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-5"].has-gutter > * {
      width: calc(100% / 5 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-5"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-5"].has-gutter-l > * {
      width: calc(100% / 5 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-5"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-5"].has-gutter-xl > * {
      width: calc(100% / 5 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; }
  [class*="grid-6"] > * {
    width: calc(100% / 6 - 0.01px); }
  [class*="grid-6"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-6"].has-gutter > * {
      width: calc(100% / 6 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-6"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-6"].has-gutter-l > * {
      width: calc(100% / 6 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-6"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-6"].has-gutter-xl > * {
      width: calc(100% / 6 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; }
  [class*="grid-7"] > * {
    width: calc(100% / 7 - 0.01px); }
  [class*="grid-7"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-7"].has-gutter > * {
      width: calc(100% / 7 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-7"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-7"].has-gutter-l > * {
      width: calc(100% / 7 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-7"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-7"].has-gutter-xl > * {
      width: calc(100% / 7 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; }
  [class*="grid-8"] > * {
    width: calc(100% / 8 - 0.01px); }
  [class*="grid-8"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-8"].has-gutter > * {
      width: calc(100% / 8 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-8"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-8"].has-gutter-l > * {
      width: calc(100% / 8 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-8"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-8"].has-gutter-xl > * {
      width: calc(100% / 8 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; }
  [class*="grid-9"] > * {
    width: calc(100% / 9 - 0.01px); }
  [class*="grid-9"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-9"].has-gutter > * {
      width: calc(100% / 9 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-9"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-9"].has-gutter-l > * {
      width: calc(100% / 9 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-9"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-9"].has-gutter-xl > * {
      width: calc(100% / 9 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; }
  [class*="grid-10"] > * {
    width: calc(100% / 10 - 0.01px); }
  [class*="grid-10"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-10"].has-gutter > * {
      width: calc(100% / 10 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-10"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-10"].has-gutter-l > * {
      width: calc(100% / 10 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-10"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-10"].has-gutter-xl > * {
      width: calc(100% / 10 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; }
  [class*="grid-11"] > * {
    width: calc(100% / 11 - 0.01px); }
  [class*="grid-11"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-11"].has-gutter > * {
      width: calc(100% / 11 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-11"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-11"].has-gutter-l > * {
      width: calc(100% / 11 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-11"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-11"].has-gutter-xl > * {
      width: calc(100% / 11 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; }
  [class*="grid-12"] > * {
    width: calc(100% / 12 - 0.01px); }
  [class*="grid-12"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-12"].has-gutter > * {
      width: calc(100% / 12 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-12"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-12"].has-gutter-l > * {
      width: calc(100% / 12 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-12"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-12"].has-gutter-xl > * {
      width: calc(100% / 12 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; } }

.push {
  margin-left: auto !important; }

.pull {
  margin-right: auto !important; }

.item-first {
  order: -1; }

.item-last {
  order: 1; }

[class*="grid-"][class*="--reverse"] {
  flex-direction: row-reverse; }

@media (min-width: 576px) {
  .full {
    flex: 0 0 auto;
    width: calc(100% / 1 - 0.01px); }
  .has-gutter > .full {
    width: calc(100% / 1 - 1rem - 0.01px); }
  .has-gutter-l > .full {
    width: calc(100% / 1 - 2rem - 0.01px); }
  .has-gutter-xl > .full {
    width: calc(100% / 1 - 4rem - 0.01px); }
  .one-half {
    flex: 0 0 auto;
    width: calc(100% / 2 - 0.01px); }
  .has-gutter > .one-half {
    width: calc(100% / 2 - 1rem - 0.01px); }
  .has-gutter-l > .one-half {
    width: calc(100% / 2 - 2rem - 0.01px); }
  .has-gutter-xl > .one-half {
    width: calc(100% / 2 - 4rem - 0.01px); }
  .one-third {
    flex: 0 0 auto;
    width: calc(100% / 3 - 0.01px); }
  .has-gutter > .one-third {
    width: calc(100% / 3 - 1rem - 0.01px); }
  .has-gutter-l > .one-third {
    width: calc(100% / 3 - 2rem - 0.01px); }
  .has-gutter-xl > .one-third {
    width: calc(100% / 3 - 4rem - 0.01px); }
  .one-quarter {
    flex: 0 0 auto;
    width: calc(100% / 4 - 0.01px); }
  .has-gutter > .one-quarter {
    width: calc(100% / 4 - 1rem - 0.01px); }
  .has-gutter-l > .one-quarter {
    width: calc(100% / 4 - 2rem - 0.01px); }
  .has-gutter-xl > .one-quarter {
    width: calc(100% / 4 - 4rem - 0.01px); }
  .two-quarter {
    flex: 0 0 auto;
    width: calc(100% / 4 * 2 - 0.01px); }
  .has-gutter > .two-quarter {
    width: calc(100% / 4 * 2 - 1rem - 0.01px); }
  .has-gutter-l > .two-quarter {
    width: calc(100% / 4 * 2 - 2rem - 0.01px); }
  .has-gutter-xl > .two-quarter {
    width: calc(100% / 4 * 2 - 4rem - 0.01px); }
  .one-fifth {
    flex: 0 0 auto;
    width: calc(100% / 5 - 0.01px); }
  .has-gutter > .one-fifth {
    width: calc(100% / 5 - 1rem - 0.01px); }
  .has-gutter-l > .one-fifth {
    width: calc(100% / 5 - 2rem - 0.01px); }
  .has-gutter-xl > .one-fifth {
    width: calc(100% / 5 - 4rem - 0.01px); }
  .two-fifth {
    flex: 0 0 auto;
    width: calc(100% / 5 * 2 - 0.01px); }
  .has-gutter > .two-fifth {
    width: calc(100% / 5 * 2 - 1rem - 0.01px); }
  .has-gutter-l > .two-fifth {
    width: calc(100% / 5 * 2 - 2rem - 0.01px); }
  .has-gutter-xl > .two-fifth {
    width: calc(100% / 5 * 2 - 4rem - 0.01px); }
  .one-sixth {
    flex: 0 0 auto;
    width: calc(100% / 6 - 0.01px); }
  .has-gutter > .one-sixth {
    width: calc(100% / 6 - 1rem - 0.01px); }
  .has-gutter-l > .one-sixth {
    width: calc(100% / 6 - 2rem - 0.01px); }
  .has-gutter-xl > .one-sixth {
    width: calc(100% / 6 - 4rem - 0.01px); }
  .two-thirds {
    flex: 0 0 auto;
    width: calc(100% / 3 * 2 - 0.01px); }
  .has-gutter > .two-thirds {
    width: calc(100% / 3 * 2 - 1rem - 0.01px); }
  .has-gutter-l > .two-thirds {
    width: calc(100% / 3 * 2 - 2rem - 0.01px); }
  .has-gutter-xl > .two-thirds {
    width: calc(100% / 3 * 2 - 4rem - 0.01px); }
  .three-quarters {
    flex: 0 0 auto;
    width: calc(100% / 4 * 3 - 0.01px); }
  .has-gutter > .three-quarters {
    width: calc(100% / 4 * 3 - 1rem - 0.01px); }
  .has-gutter-l > .three-quarters {
    width: calc(100% / 4 * 3 - 2rem - 0.01px); }
  .has-gutter-xl > .three-quarters {
    width: calc(100% / 4 * 3 - 4rem - 0.01px); }
  .five-sixths {
    flex: 0 0 auto;
    width: calc(100% / 6 * 5 - 0.01px); }
  .has-gutter > .five-sixths {
    width: calc(100% / 6 * 5 - 1rem - 0.01px); }
  .has-gutter-l > .five-sixths {
    width: calc(100% / 6 * 5 - 2rem - 0.01px); }
  .has-gutter-xl > .five-sixths {
    width: calc(100% / 6 * 5 - 4rem - 0.01px); } }

/* Responsive Small Breakpoint */
@media (min-width: 576px) and (max-width: 767px) {
  [class*="-small-1"] > * {
    width: calc(100% / 1 - 0.01px); }
  [class*="-small-1"].has-gutter > * {
    width: calc(100% / 1 - 1rem - 0.01px); }
  [class*="-small-1"].has-gutter-l > * {
    width: calc(100% / 1 - 2rem - 0.01px); }
  [class*="-small-1"].has-gutter-xl > * {
    width: calc(100% / 1 - 4rem - 0.01px); }
  [class*="-small-2"] > * {
    width: calc(100% / 2 - 0.01px); }
  [class*="-small-2"].has-gutter > * {
    width: calc(100% / 2 - 1rem - 0.01px); }
  [class*="-small-2"].has-gutter-l > * {
    width: calc(100% / 2 - 2rem - 0.01px); }
  [class*="-small-2"].has-gutter-xl > * {
    width: calc(100% / 2 - 4rem - 0.01px); }
  [class*="-small-3"] > * {
    width: calc(100% / 3 - 0.01px); }
  [class*="-small-3"].has-gutter > * {
    width: calc(100% / 3 - 1rem - 0.01px); }
  [class*="-small-3"].has-gutter-l > * {
    width: calc(100% / 3 - 2rem - 0.01px); }
  [class*="-small-3"].has-gutter-xl > * {
    width: calc(100% / 3 - 4rem - 0.01px); }
  [class*="-small-4"] > * {
    width: calc(100% / 4 - 0.01px); }
  [class*="-small-4"].has-gutter > * {
    width: calc(100% / 4 - 1rem - 0.01px); }
  [class*="-small-4"].has-gutter-l > * {
    width: calc(100% / 4 - 2rem - 0.01px); }
  [class*="-small-4"].has-gutter-xl > * {
    width: calc(100% / 4 - 4rem - 0.01px); } }

.mat-elevation-z0 {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.14), 0 0 0 0 rgba(0, 0, 0, 0.12); }

.mat-elevation-z1 {
  box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); }

.mat-elevation-z2 {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); }

.mat-elevation-z3 {
  box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 1px 8px 0 rgba(0, 0, 0, 0.12); }

.mat-elevation-z4 {
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); }

.mat-elevation-z5 {
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 5px 8px 0 rgba(0, 0, 0, 0.14), 0 1px 14px 0 rgba(0, 0, 0, 0.12); }

.mat-elevation-z6 {
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12); }

.mat-elevation-z7 {
  box-shadow: 0 4px 5px -2px rgba(0, 0, 0, 0.2), 0 7px 10px 1px rgba(0, 0, 0, 0.14), 0 2px 16px 1px rgba(0, 0, 0, 0.12); }

.mat-elevation-z8 {
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12); }

.mat-elevation-z9 {
  box-shadow: 0 5px 6px -3px rgba(0, 0, 0, 0.2), 0 9px 12px 1px rgba(0, 0, 0, 0.14), 0 3px 16px 2px rgba(0, 0, 0, 0.12); }

.mat-elevation-z10 {
  box-shadow: 0 6px 6px -3px rgba(0, 0, 0, 0.2), 0 10px 14px 1px rgba(0, 0, 0, 0.14), 0 4px 18px 3px rgba(0, 0, 0, 0.12); }

.mat-elevation-z11 {
  box-shadow: 0 6px 7px -4px rgba(0, 0, 0, 0.2), 0 11px 15px 1px rgba(0, 0, 0, 0.14), 0 4px 20px 3px rgba(0, 0, 0, 0.12); }

.mat-elevation-z12 {
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 12px 17px 2px rgba(0, 0, 0, 0.14), 0 5px 22px 4px rgba(0, 0, 0, 0.12); }

.mat-elevation-z13 {
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12); }

.mat-elevation-z14 {
  box-shadow: 0 7px 9px -4px rgba(0, 0, 0, 0.2), 0 14px 21px 2px rgba(0, 0, 0, 0.14), 0 5px 26px 4px rgba(0, 0, 0, 0.12); }

.mat-elevation-z15 {
  box-shadow: 0 8px 9px -5px rgba(0, 0, 0, 0.2), 0 15px 22px 2px rgba(0, 0, 0, 0.14), 0 6px 28px 5px rgba(0, 0, 0, 0.12); }

.mat-elevation-z16 {
  box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12); }

.mat-elevation-z17 {
  box-shadow: 0 8px 11px -5px rgba(0, 0, 0, 0.2), 0 17px 26px 2px rgba(0, 0, 0, 0.14), 0 6px 32px 5px rgba(0, 0, 0, 0.12); }

.mat-elevation-z18 {
  box-shadow: 0 9px 11px -5px rgba(0, 0, 0, 0.2), 0 18px 28px 2px rgba(0, 0, 0, 0.14), 0 7px 34px 6px rgba(0, 0, 0, 0.12); }

.mat-elevation-z19 {
  box-shadow: 0 9px 12px -6px rgba(0, 0, 0, 0.2), 0 19px 29px 2px rgba(0, 0, 0, 0.14), 0 7px 36px 6px rgba(0, 0, 0, 0.12); }

.mat-elevation-z20 {
  box-shadow: 0 10px 13px -6px rgba(0, 0, 0, 0.2), 0 20px 31px 3px rgba(0, 0, 0, 0.14), 0 8px 38px 7px rgba(0, 0, 0, 0.12); }

.mat-elevation-z21 {
  box-shadow: 0 10px 13px -6px rgba(0, 0, 0, 0.2), 0 21px 33px 3px rgba(0, 0, 0, 0.14), 0 8px 40px 7px rgba(0, 0, 0, 0.12); }

.mat-elevation-z22 {
  box-shadow: 0 10px 14px -6px rgba(0, 0, 0, 0.2), 0 22px 35px 3px rgba(0, 0, 0, 0.14), 0 8px 42px 7px rgba(0, 0, 0, 0.12); }

.mat-elevation-z23 {
  box-shadow: 0 11px 14px -7px rgba(0, 0, 0, 0.2), 0 23px 36px 3px rgba(0, 0, 0, 0.14), 0 9px 44px 8px rgba(0, 0, 0, 0.12); }

.mat-elevation-z24 {
  box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12); }

.mat-badge-content {
  font-weight: 600;
  font-size: 12px;
  font-family: Roboto,"Helvetica Neue",sans-serif; }

.mat-badge-small .mat-badge-content {
  font-size: 6px; }

.mat-badge-large .mat-badge-content {
  font-size: 24px; }

.mat-h1, .mat-headline, .mat-typography h1 {
  font: 400 24px/32px Roboto,"Helvetica Neue",sans-serif;
  margin: 0 0 16px; }

.mat-h2, .mat-title, .mat-typography h2 {
  font: 500 20px/32px Roboto,"Helvetica Neue",sans-serif;
  margin: 0 0 16px; }

.mat-h3, .mat-subheading-2, .mat-typography h3 {
  font: 400 16px/28px Roboto,"Helvetica Neue",sans-serif;
  margin: 0 0 16px; }

.mat-h4, .mat-subheading-1, .mat-typography h4 {
  font: 400 15px/24px Roboto,"Helvetica Neue",sans-serif;
  margin: 0 0 16px; }

.mat-h5, .mat-typography h5 {
  font: 400 11.62px/20px Roboto,"Helvetica Neue",sans-serif;
  margin: 0 0 12px; }

.mat-h6, .mat-typography h6 {
  font: 400 9.38px/20px Roboto,"Helvetica Neue",sans-serif;
  margin: 0 0 12px; }

.mat-body-2, .mat-body-strong {
  font: 500 14px/24px Roboto,"Helvetica Neue",sans-serif; }

.mat-body, .mat-body-1, .mat-typography {
  font: 400 14px/20px Roboto,"Helvetica Neue",sans-serif; }

.mat-body p, .mat-body-1 p, .mat-typography p {
  margin: 0 0 12px; }

.mat-caption, .mat-small {
  font: 400 12px/20px Roboto,"Helvetica Neue",sans-serif; }

.mat-display-4, .mat-typography .mat-display-4 {
  font: 300 112px/112px Roboto,"Helvetica Neue",sans-serif;
  margin: 0 0 56px;
  letter-spacing: -.05em; }

.mat-display-3, .mat-typography .mat-display-3 {
  font: 400 56px/56px Roboto,"Helvetica Neue",sans-serif;
  margin: 0 0 64px;
  letter-spacing: -.02em; }

.mat-display-2, .mat-typography .mat-display-2 {
  font: 400 45px/48px Roboto,"Helvetica Neue",sans-serif;
  margin: 0 0 64px;
  letter-spacing: -.005em; }

.mat-display-1, .mat-typography .mat-display-1 {
  font: 400 34px/40px Roboto,"Helvetica Neue",sans-serif;
  margin: 0 0 64px; }

.mat-bottom-sheet-container {
  font-family: Roboto,"Helvetica Neue",sans-serif;
  font-size: 16px;
  font-weight: 400; }

.mat-button, .mat-fab, .mat-flat-button, .mat-icon-button, .mat-mini-fab, .mat-raised-button, .mat-stroked-button {
  font-family: Roboto,"Helvetica Neue",sans-serif;
  font-size: 14px;
  font-weight: 500; }

.mat-button-toggle, .mat-card {
  font-family: Roboto,"Helvetica Neue",sans-serif; }

.mat-card-title {
  font-size: 24px;
  font-weight: 400; }

.mat-card-content, .mat-card-header .mat-card-title, .mat-card-subtitle {
  font-size: 14px; }

.mat-checkbox {
  font-family: Roboto,"Helvetica Neue",sans-serif; }

.mat-checkbox-layout .mat-checkbox-label {
  line-height: 24px; }

.mat-chip {
  font-size: 13px;
  line-height: 18px; }

.mat-chip .mat-chip-remove.mat-icon, .mat-chip .mat-chip-trailing-icon.mat-icon {
  font-size: 18px; }

.mat-table {
  font-family: Roboto,"Helvetica Neue",sans-serif; }

.mat-header-cell {
  font-size: 12px;
  font-weight: 500; }

.mat-cell, .mat-footer-cell {
  font-size: 14px; }

.mat-calendar {
  font-family: Roboto,"Helvetica Neue",sans-serif; }

.mat-calendar-body {
  font-size: 13px; }

.mat-calendar-body-label, .mat-calendar-period-button {
  font-size: 14px;
  font-weight: 500; }

.mat-calendar-table-header th {
  font-size: 11px;
  font-weight: 400; }

.mat-dialog-title {
  font: 500 20px/32px Roboto,"Helvetica Neue",sans-serif; }

.mat-expansion-panel-header {
  font-family: Roboto,"Helvetica Neue",sans-serif;
  font-size: 15px;
  font-weight: 400; }

.mat-expansion-panel-content {
  font: 400 14px/20px Roboto,"Helvetica Neue",sans-serif; }

.mat-form-field {
  font-size: inherit;
  font-weight: 400;
  line-height: 1.125;
  font-family: Roboto,"Helvetica Neue",sans-serif; }

.mat-form-field-wrapper {
  padding-bottom: 1.34375em; }

.mat-form-field-prefix .mat-icon, .mat-form-field-suffix .mat-icon {
  font-size: 150%;
  line-height: 1.125; }

.mat-form-field-prefix .mat-icon-button, .mat-form-field-suffix .mat-icon-button {
  height: 1.5em;
  width: 1.5em; }

.mat-form-field-prefix .mat-icon-button .mat-icon, .mat-form-field-suffix .mat-icon-button .mat-icon {
  height: 1.125em;
  line-height: 1.125; }

.mat-form-field-infix {
  padding: .5em 0;
  border-top: .84375em solid transparent; }

.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label, .mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label {
  -webkit-transform: translateY(-1.34375em) scale(0.75);
  transform: translateY(-1.34375em) scale(0.75);
  width: 133.33333333%; }

.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  -webkit-transform: translateY(-1.34374em) scale(0.75);
  transform: translateY(-1.34374em) scale(0.75);
  width: 133.33334333%; }

.mat-form-field-label-wrapper {
  top: -.84375em;
  padding-top: .84375em; }

.mat-form-field-label {
  top: 1.34375em; }

.mat-form-field-underline {
  bottom: 1.34375em; }

.mat-form-field-subscript-wrapper {
  font-size: 75%;
  margin-top: .66666667em;
  top: calc(100% - 1.79166667em); }

.mat-form-field-appearance-legacy .mat-form-field-wrapper {
  padding-bottom: 1.25em; }

.mat-form-field-appearance-legacy .mat-form-field-infix {
  padding: .4375em 0; }

.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label, .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label {
  -webkit-transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);
  -ms-transform: translateY(-1.28125em) scale(0.75);
  width: 133.33333333%; }

.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {
  -webkit-transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00101px);
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00101px);
  -ms-transform: translateY(-1.28124em) scale(0.75);
  width: 133.33334333%; }

.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  -webkit-transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00102px);
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00102px);
  -ms-transform: translateY(-1.28123em) scale(0.75);
  width: 133.33335333%; }

.mat-form-field-appearance-legacy .mat-form-field-label {
  top: 1.28125em; }

.mat-form-field-appearance-legacy .mat-form-field-underline {
  bottom: 1.25em; }

.mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper {
  margin-top: .54166667em;
  top: calc(100% - 1.66666667em); }

.mat-form-field-appearance-fill .mat-form-field-infix {
  padding: .25em 0 .75em; }

.mat-form-field-appearance-fill .mat-form-field-label {
  top: 1.09375em;
  margin-top: -.5em; }

.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label, .mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label {
  -webkit-transform: translateY(-0.59375em) scale(0.75);
  transform: translateY(-0.59375em) scale(0.75);
  width: 133.33333333%; }

.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  -webkit-transform: translateY(-0.59374em) scale(0.75);
  transform: translateY(-0.59374em) scale(0.75);
  width: 133.33334333%; }

.mat-form-field-appearance-outline .mat-form-field-infix {
  padding: 1em 0; }

.mat-form-field-appearance-outline .mat-form-field-label {
  top: 1.84375em;
  margin-top: -.25em; }

.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label, .mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label {
  -webkit-transform: translateY(-1.59375em) scale(0.75);
  transform: translateY(-1.59375em) scale(0.75);
  width: 133.33333333%; }

.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  -webkit-transform: translateY(-1.59374em) scale(0.75);
  transform: translateY(-1.59374em) scale(0.75);
  width: 133.33334333%; }

.mat-grid-tile-footer, .mat-grid-tile-header {
  font-size: 14px; }

.mat-grid-tile-footer .mat-line, .mat-grid-tile-header .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box; }

.mat-grid-tile-footer .mat-line:nth-child(n+2), .mat-grid-tile-header .mat-line:nth-child(n+2) {
  font-size: 12px; }

input.mat-input-element {
  margin-top: -.0625em; }

.mat-menu-item {
  font-family: Roboto,"Helvetica Neue",sans-serif;
  font-size: 16px;
  font-weight: 400; }

.mat-paginator, .mat-paginator-page-size .mat-select-trigger {
  font-family: Roboto,"Helvetica Neue",sans-serif;
  font-size: 12px; }

.mat-radio-button, .mat-select {
  font-family: Roboto,"Helvetica Neue",sans-serif; }

.mat-select-trigger {
  height: 1.125em; }

.mat-slide-toggle-content {
  font: 400 14px/20px Roboto,"Helvetica Neue",sans-serif; }

.mat-slider-thumb-label-text {
  font-family: Roboto,"Helvetica Neue",sans-serif;
  font-size: 12px;
  font-weight: 500; }

.mat-stepper-horizontal, .mat-stepper-vertical {
  font-family: Roboto,"Helvetica Neue",sans-serif; }

.mat-step-label {
  font-size: 14px;
  font-weight: 400; }

.mat-step-label-selected {
  font-size: 14px;
  font-weight: 500; }

.mat-tab-group {
  font-family: Roboto,"Helvetica Neue",sans-serif; }

.mat-tab-label, .mat-tab-link {
  font-family: Roboto,"Helvetica Neue",sans-serif;
  font-size: 14px;
  font-weight: 500; }

.mat-toolbar, .mat-toolbar h1, .mat-toolbar h2, .mat-toolbar h3, .mat-toolbar h4, .mat-toolbar h5, .mat-toolbar h6 {
  font: 500 20px/32px Roboto,"Helvetica Neue",sans-serif;
  margin: 0; }

.mat-tooltip {
  font-family: Roboto,"Helvetica Neue",sans-serif;
  font-size: 10px;
  padding-top: 6px;
  padding-bottom: 6px; }

.mat-tooltip-handset {
  font-size: 14px;
  padding-top: 9px;
  padding-bottom: 9px; }

.mat-list-item, .mat-list-option {
  font-family: Roboto,"Helvetica Neue",sans-serif; }

.mat-list .mat-list-item, .mat-nav-list .mat-list-item, .mat-selection-list .mat-list-item {
  font-size: 16px; }

.mat-list .mat-list-item .mat-line, .mat-nav-list .mat-list-item .mat-line, .mat-selection-list .mat-list-item .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box; }

.mat-list .mat-list-item .mat-line:nth-child(n+2), .mat-nav-list .mat-list-item .mat-line:nth-child(n+2), .mat-selection-list .mat-list-item .mat-line:nth-child(n+2) {
  font-size: 14px; }

.mat-list .mat-list-option, .mat-nav-list .mat-list-option, .mat-selection-list .mat-list-option {
  font-size: 16px; }

.mat-list .mat-list-option .mat-line, .mat-nav-list .mat-list-option .mat-line, .mat-selection-list .mat-list-option .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box; }

.mat-list .mat-list-option .mat-line:nth-child(n+2), .mat-nav-list .mat-list-option .mat-line:nth-child(n+2), .mat-selection-list .mat-list-option .mat-line:nth-child(n+2) {
  font-size: 14px; }

.mat-list[dense] .mat-list-item, .mat-nav-list[dense] .mat-list-item, .mat-selection-list[dense] .mat-list-item {
  font-size: 12px; }

.mat-list[dense] .mat-list-item .mat-line, .mat-nav-list[dense] .mat-list-item .mat-line, .mat-selection-list[dense] .mat-list-item .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box; }

.mat-list[dense] .mat-list-item .mat-line:nth-child(n+2), .mat-list[dense] .mat-list-option, .mat-nav-list[dense] .mat-list-item .mat-line:nth-child(n+2), .mat-nav-list[dense] .mat-list-option, .mat-selection-list[dense] .mat-list-item .mat-line:nth-child(n+2), .mat-selection-list[dense] .mat-list-option {
  font-size: 12px; }

.mat-list[dense] .mat-list-option .mat-line, .mat-nav-list[dense] .mat-list-option .mat-line, .mat-selection-list[dense] .mat-list-option .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box; }

.mat-list[dense] .mat-list-option .mat-line:nth-child(n+2), .mat-nav-list[dense] .mat-list-option .mat-line:nth-child(n+2), .mat-selection-list[dense] .mat-list-option .mat-line:nth-child(n+2) {
  font-size: 12px; }

.mat-list[dense] .mat-subheader, .mat-nav-list[dense] .mat-subheader, .mat-selection-list[dense] .mat-subheader {
  font-family: Roboto,"Helvetica Neue",sans-serif;
  font-size: 12px;
  font-weight: 500; }

.mat-option {
  font-family: Roboto,"Helvetica Neue",sans-serif;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.87); }

.mat-optgroup-label {
  font: 500 14px/24px Roboto,"Helvetica Neue",sans-serif;
  color: rgba(0, 0, 0, 0.54); }

.mat-simple-snackbar {
  font-family: Roboto,"Helvetica Neue",sans-serif;
  font-size: 14px; }

.mat-simple-snackbar-action {
  line-height: 1;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500; }

.mat-ripple {
  overflow: hidden; }

@media screen and (-ms-high-contrast: active) {
  .mat-ripple {
    display: none; } }

.mat-ripple.mat-ripple-unbounded {
  overflow: visible; }

.mat-ripple-element {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity, -webkit-transform 0s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity, transform 0s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity, transform 0s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0s cubic-bezier(0, 0, 0.2, 1);
  -webkit-transform: scale(0);
  transform: scale(0); }

.cdk-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none; }

.cdk-global-overlay-wrapper, .cdk-overlay-container {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; }

.cdk-overlay-container {
  position: fixed;
  z-index: 1000; }

.cdk-overlay-container:empty {
  display: none; }

.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000; }

.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  z-index: 1000;
  display: flex;
  max-width: 100%;
  max-height: 100%; }

.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0; }

.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 1; }

@media screen and (-ms-high-contrast: active) {
  .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
    opacity: .6; }
  .mat-badge-small .mat-badge-content {
    outline: solid 1px;
    border-radius: 0; } }

.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, 0.288); }

.cdk-overlay-transparent-backdrop, .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0; }

.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px; }

.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll; }

.cdk-text-field-autofill-monitored:-webkit-autofill {
  -webkit-animation-name: cdk-text-field-autofill-start;
  animation-name: cdk-text-field-autofill-start; }

.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
  -webkit-animation-name: cdk-text-field-autofill-end;
  animation-name: cdk-text-field-autofill-end; }

textarea.cdk-textarea-autosize {
  resize: none; }

textarea.cdk-textarea-autosize-measuring {
  height: auto !important;
  overflow: hidden !important;
  padding: 2px 0 !important;
  box-sizing: content-box !important; }

.mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1); }

.mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled), .mat-option:focus:not(.mat-option-disabled), .mat-option:hover:not(.mat-option-disabled) {
  background: rgba(0, 0, 0, 0.04); }

.mat-option.mat-active {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.87); }

.mat-option.mat-option-disabled {
  color: rgba(0, 0, 0, 0.38); }

.mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #1565c0; }

.mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #009688; }

.mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #f44336; }

.mat-optgroup-disabled .mat-optgroup-label {
  color: rgba(0, 0, 0, 0.38); }

.mat-pseudo-checkbox {
  color: rgba(0, 0, 0, 0.54); }

.mat-pseudo-checkbox::after {
  color: #fafafa; }

.mat-accent .mat-pseudo-checkbox-checked, .mat-accent .mat-pseudo-checkbox-indeterminate, .mat-pseudo-checkbox-checked, .mat-pseudo-checkbox-indeterminate {
  background: #009688; }

.mat-primary .mat-pseudo-checkbox-checked, .mat-primary .mat-pseudo-checkbox-indeterminate {
  background: #1565c0; }

.mat-warn .mat-pseudo-checkbox-checked, .mat-warn .mat-pseudo-checkbox-indeterminate {
  background: #f44336; }

.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled, .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {
  background: #b0b0b0; }

.mat-app-background {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87); }

.mat-theme-loaded-marker {
  display: none; }

.mat-autocomplete-panel {
  background: #fff;
  color: rgba(0, 0, 0, 0.87); }

.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {
  background: #fff; }

.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {
  color: rgba(0, 0, 0, 0.87); }

.mat-badge-accent .mat-badge-content {
  background: #009688;
  color: #fff; }

.mat-badge-warn .mat-badge-content {
  color: #fff;
  background: #f44336; }

.mat-badge {
  position: relative; }

.mat-badge-hidden .mat-badge-content {
  display: none; }

.mat-badge-content {
  color: #fff;
  background: #1565c0;
  position: absolute;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out,-webkit-transform .2s ease-in-out;
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none; }

.mat-badge-content.mat-badge-active {
  -webkit-transform: none;
  transform: none; }

.mat-badge-small .mat-badge-content {
  width: 16px;
  height: 16px;
  line-height: 16px; }

.mat-badge-small.mat-badge-above .mat-badge-content {
  top: -8px; }

.mat-badge-small.mat-badge-below .mat-badge-content {
  bottom: -8px; }

.mat-badge-small.mat-badge-before {
  margin-left: 16px; }

.mat-badge-small.mat-badge-before .mat-badge-content {
  left: -16px; }

[dir=rtl] .mat-badge-small.mat-badge-before {
  margin-left: 0;
  margin-right: 16px; }

[dir=rtl] .mat-badge-small.mat-badge-before .mat-badge-content {
  left: auto;
  right: -16px; }

.mat-badge-small.mat-badge-after {
  margin-right: 16px; }

.mat-badge-small.mat-badge-after .mat-badge-content {
  right: -16px; }

[dir=rtl] .mat-badge-small.mat-badge-after {
  margin-right: 0;
  margin-left: 16px; }

[dir=rtl] .mat-badge-small.mat-badge-after .mat-badge-content {
  right: auto;
  left: -16px; }

.mat-badge-small.mat-badge-overlap.mat-badge-before {
  margin-left: 8px; }

.mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -8px; }

[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-before {
  margin-left: 0;
  margin-right: 8px; }

[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -8px; }

.mat-badge-small.mat-badge-overlap.mat-badge-after {
  margin-right: 8px; }

.mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -8px; }

[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-after {
  margin-right: 0;
  margin-left: 16px; }

[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -8px; }

.mat-badge-medium .mat-badge-content {
  width: 22px;
  height: 22px;
  line-height: 22px; }

.mat-badge-medium.mat-badge-above .mat-badge-content {
  top: -11px; }

.mat-badge-medium.mat-badge-below .mat-badge-content {
  bottom: -11px; }

.mat-badge-medium.mat-badge-before {
  margin-left: 22px; }

.mat-badge-medium.mat-badge-before .mat-badge-content {
  left: -22px; }

[dir=rtl] .mat-badge-medium.mat-badge-before {
  margin-left: 0;
  margin-right: 22px; }

[dir=rtl] .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: auto;
  right: -22px; }

.mat-badge-medium.mat-badge-after {
  margin-right: 22px; }

.mat-badge-medium.mat-badge-after .mat-badge-content {
  right: -22px; }

[dir=rtl] .mat-badge-medium.mat-badge-after {
  margin-right: 0;
  margin-left: 22px; }

[dir=rtl] .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: auto;
  left: -22px; }

.mat-badge-medium.mat-badge-overlap.mat-badge-before {
  margin-left: 11px; }

.mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -11px; }

[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-before {
  margin-left: 0;
  margin-right: 11px; }

[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -11px; }

.mat-badge-medium.mat-badge-overlap.mat-badge-after {
  margin-right: 11px; }

.mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -11px; }

[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-after {
  margin-right: 0;
  margin-left: 22px; }

[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -11px; }

.mat-badge-large .mat-badge-content {
  width: 28px;
  height: 28px;
  line-height: 28px; }

@media screen and (-ms-high-contrast: active) {
  .mat-badge-large .mat-badge-content, .mat-badge-medium .mat-badge-content {
    outline: solid 1px;
    border-radius: 0; } }

.mat-badge-large.mat-badge-above .mat-badge-content {
  top: -14px; }

.mat-badge-large.mat-badge-below .mat-badge-content {
  bottom: -14px; }

.mat-badge-large.mat-badge-before {
  margin-left: 28px; }

.mat-badge-large.mat-badge-before .mat-badge-content {
  left: -28px; }

[dir=rtl] .mat-badge-large.mat-badge-before {
  margin-left: 0;
  margin-right: 28px; }

[dir=rtl] .mat-badge-large.mat-badge-before .mat-badge-content {
  left: auto;
  right: -28px; }

.mat-badge-large.mat-badge-after {
  margin-right: 28px; }

.mat-badge-large.mat-badge-after .mat-badge-content {
  right: -28px; }

[dir=rtl] .mat-badge-large.mat-badge-after {
  margin-right: 0;
  margin-left: 28px; }

[dir=rtl] .mat-badge-large.mat-badge-after .mat-badge-content {
  right: auto;
  left: -28px; }

.mat-badge-large.mat-badge-overlap.mat-badge-before {
  margin-left: 14px; }

.mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -14px; }

[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-before {
  margin-left: 0;
  margin-right: 14px; }

[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -14px; }

.mat-badge-large.mat-badge-overlap.mat-badge-after {
  margin-right: 14px; }

.mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -14px; }

[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-after {
  margin-right: 0;
  margin-left: 28px; }

[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -14px; }

.mat-bottom-sheet-container {
  background: #fff;
  color: rgba(0, 0, 0, 0.87); }

.mat-button, .mat-icon-button, .mat-stroked-button {
  color: inherit;
  background: 0 0; }

.mat-button.mat-primary, .mat-icon-button.mat-primary, .mat-stroked-button.mat-primary {
  color: #1565c0; }

.mat-button.mat-accent, .mat-icon-button.mat-accent, .mat-stroked-button.mat-accent {
  color: #009688; }

.mat-button.mat-warn, .mat-icon-button.mat-warn, .mat-stroked-button.mat-warn {
  color: #f44336; }

.mat-button.mat-accent[disabled], .mat-button.mat-primary[disabled], .mat-button.mat-warn[disabled], .mat-button[disabled][disabled], .mat-icon-button.mat-accent[disabled], .mat-icon-button.mat-primary[disabled], .mat-icon-button.mat-warn[disabled], .mat-icon-button[disabled][disabled], .mat-stroked-button.mat-accent[disabled], .mat-stroked-button.mat-primary[disabled], .mat-stroked-button.mat-warn[disabled], .mat-stroked-button[disabled][disabled] {
  color: rgba(0, 0, 0, 0.26); }

.mat-button.mat-primary .mat-button-focus-overlay, .mat-icon-button.mat-primary .mat-button-focus-overlay, .mat-stroked-button.mat-primary .mat-button-focus-overlay {
  background-color: rgba(21, 101, 192, 0.12); }

.mat-button.mat-accent .mat-button-focus-overlay, .mat-icon-button.mat-accent .mat-button-focus-overlay, .mat-stroked-button.mat-accent .mat-button-focus-overlay {
  background-color: rgba(0, 150, 136, 0.12); }

.mat-button.mat-warn .mat-button-focus-overlay, .mat-icon-button.mat-warn .mat-button-focus-overlay, .mat-stroked-button.mat-warn .mat-button-focus-overlay {
  background-color: rgba(244, 67, 54, 0.12); }

.mat-button[disabled] .mat-button-focus-overlay, .mat-icon-button[disabled] .mat-button-focus-overlay, .mat-stroked-button[disabled] .mat-button-focus-overlay {
  background-color: transparent; }

.mat-button.mat-primary .mat-ripple-element, .mat-icon-button.mat-primary .mat-ripple-element, .mat-stroked-button.mat-primary .mat-ripple-element {
  background-color: rgba(21, 101, 192, 0.1); }

.mat-button.mat-accent .mat-ripple-element, .mat-icon-button.mat-accent .mat-ripple-element, .mat-stroked-button.mat-accent .mat-ripple-element {
  background-color: rgba(0, 150, 136, 0.1); }

.mat-button.mat-warn .mat-ripple-element, .mat-icon-button.mat-warn .mat-ripple-element, .mat-stroked-button.mat-warn .mat-ripple-element {
  background-color: rgba(244, 67, 54, 0.1); }

.mat-fab, .mat-flat-button, .mat-mini-fab, .mat-raised-button {
  color: rgba(0, 0, 0, 0.87);
  background-color: #fff; }

.mat-fab.mat-accent, .mat-fab.mat-primary, .mat-fab.mat-warn, .mat-flat-button.mat-accent, .mat-flat-button.mat-primary, .mat-flat-button.mat-warn, .mat-mini-fab.mat-accent, .mat-mini-fab.mat-primary, .mat-mini-fab.mat-warn, .mat-raised-button.mat-accent, .mat-raised-button.mat-primary, .mat-raised-button.mat-warn {
  color: #fff; }

.mat-fab.mat-accent[disabled], .mat-fab.mat-primary[disabled], .mat-fab.mat-warn[disabled], .mat-fab[disabled][disabled], .mat-flat-button.mat-accent[disabled], .mat-flat-button.mat-primary[disabled], .mat-flat-button.mat-warn[disabled], .mat-flat-button[disabled][disabled], .mat-mini-fab.mat-accent[disabled], .mat-mini-fab.mat-primary[disabled], .mat-mini-fab.mat-warn[disabled], .mat-mini-fab[disabled][disabled], .mat-raised-button.mat-accent[disabled], .mat-raised-button.mat-primary[disabled], .mat-raised-button.mat-warn[disabled], .mat-raised-button[disabled][disabled] {
  color: rgba(0, 0, 0, 0.26);
  background-color: rgba(0, 0, 0, 0.12); }

.mat-fab.mat-primary, .mat-flat-button.mat-primary, .mat-mini-fab.mat-primary, .mat-raised-button.mat-primary {
  background-color: #1565c0; }

.mat-fab.mat-accent, .mat-flat-button.mat-accent, .mat-mini-fab.mat-accent, .mat-raised-button.mat-accent {
  background-color: #009688; }

.mat-fab.mat-warn, .mat-flat-button.mat-warn, .mat-mini-fab.mat-warn, .mat-raised-button.mat-warn {
  background-color: #f44336; }

.mat-fab.mat-accent .mat-ripple-element, .mat-fab.mat-primary .mat-ripple-element, .mat-fab.mat-warn .mat-ripple-element, .mat-flat-button.mat-accent .mat-ripple-element, .mat-flat-button.mat-primary .mat-ripple-element, .mat-flat-button.mat-warn .mat-ripple-element, .mat-mini-fab.mat-accent .mat-ripple-element, .mat-mini-fab.mat-primary .mat-ripple-element, .mat-mini-fab.mat-warn .mat-ripple-element, .mat-raised-button.mat-accent .mat-ripple-element, .mat-raised-button.mat-primary .mat-ripple-element, .mat-raised-button.mat-warn .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1); }

.mat-icon-button.mat-primary .mat-ripple-element {
  background-color: rgba(21, 101, 192, 0.2); }

.mat-icon-button.mat-accent .mat-ripple-element {
  background-color: rgba(0, 150, 136, 0.2); }

.mat-icon-button.mat-warn .mat-ripple-element {
  background-color: rgba(244, 67, 54, 0.2); }

.mat-button-toggle {
  color: rgba(0, 0, 0, 0.38); }

.mat-button-toggle .mat-button-toggle-focus-overlay {
  background-color: rgba(0, 0, 0, 0.12); }

.mat-button-toggle-checked {
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.54); }

.mat-button-toggle-disabled {
  background-color: #eee;
  color: rgba(0, 0, 0, 0.26); }

.mat-button-toggle-disabled.mat-button-toggle-checked {
  background-color: #bdbdbd; }

.mat-card {
  background: #fff;
  color: rgba(0, 0, 0, 0.87); }

.mat-card-subtitle {
  color: rgba(0, 0, 0, 0.54); }

.mat-checkbox-frame {
  border-color: rgba(0, 0, 0, 0.54); }

.mat-checkbox-checkmark {
  fill: #fafafa; }

.mat-checkbox-checkmark-path {
  stroke: #fafafa !important; }

.mat-checkbox-mixedmark {
  background-color: #fafafa; }

.mat-checkbox-checked.mat-primary .mat-checkbox-background, .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background {
  background-color: #1565c0; }

.mat-checkbox-checked.mat-accent .mat-checkbox-background, .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background {
  background-color: #009688; }

.mat-checkbox-checked.mat-warn .mat-checkbox-background, .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background {
  background-color: #f44336; }

.mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {
  background-color: #b0b0b0; }

.mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame {
  border-color: #b0b0b0; }

.mat-checkbox-disabled .mat-checkbox-label {
  color: #b0b0b0; }

.mat-checkbox:not(.mat-checkbox-disabled).mat-primary .mat-checkbox-ripple .mat-ripple-element {
  background-color: rgba(21, 101, 192, 0.26); }

.mat-checkbox:not(.mat-checkbox-disabled).mat-accent .mat-checkbox-ripple .mat-ripple-element {
  background-color: rgba(0, 150, 136, 0.26); }

.mat-checkbox:not(.mat-checkbox-disabled).mat-warn .mat-checkbox-ripple .mat-ripple-element {
  background-color: rgba(244, 67, 54, 0.26); }

.mat-chip.mat-standard-chip {
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.87); }

.mat-chip.mat-standard-chip .mat-chip-remove {
  color: rgba(0, 0, 0, 0.87);
  opacity: .4; }

.mat-chip.mat-standard-chip .mat-chip-remove:hover {
  opacity: .54; }

.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {
  background-color: #1565c0;
  color: #fff; }

.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {
  color: #fff;
  opacity: .4; }

.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove:hover {
  opacity: .54; }

.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn {
  background-color: #f44336;
  color: #fff; }

.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove {
  color: #fff;
  opacity: .4; }

.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove:hover {
  opacity: .54; }

.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent {
  background-color: #009688;
  color: #fff; }

.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove {
  color: #fff;
  opacity: .4; }

.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove:hover {
  opacity: .54; }

.mat-table {
  background: #fff; }

mat-footer-row, mat-header-row, mat-row, td.mat-cell, td.mat-footer-cell, th.mat-header-cell {
  border-bottom-color: rgba(0, 0, 0, 0.12); }

.mat-header-cell {
  color: rgba(0, 0, 0, 0.54); }

.mat-cell, .mat-footer-cell {
  color: rgba(0, 0, 0, 0.87); }

.mat-calendar-arrow {
  border-top-color: rgba(0, 0, 0, 0.54); }

.mat-datepicker-popup .mat-calendar-next-button, .mat-datepicker-popup .mat-calendar-previous-button, .mat-datepicker-toggle {
  color: rgba(0, 0, 0, 0.54); }

.mat-calendar-table-header {
  color: rgba(0, 0, 0, 0.38); }

.mat-calendar-table-header-divider::after {
  background: rgba(0, 0, 0, 0.12); }

.mat-calendar-body-label {
  color: rgba(0, 0, 0, 0.54); }

.mat-calendar-body-cell-content {
  color: rgba(0, 0, 0, 0.87);
  border-color: transparent; }

.mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected) {
  color: rgba(0, 0, 0, 0.38); }

.cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected), .cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected), .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected) {
  background-color: rgba(0, 0, 0, 0.04); }

.mat-calendar-body-today:not(.mat-calendar-body-selected) {
  border-color: rgba(0, 0, 0, 0.38); }

.mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected) {
  border-color: rgba(0, 0, 0, 0.18); }

.mat-calendar-body-selected {
  background-color: #1565c0;
  color: #fff; }

.mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(21, 101, 192, 0.4); }

.mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px #fff; }

.mat-datepicker-content {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.87); }

.mat-datepicker-content.mat-accent .mat-calendar-body-selected {
  background-color: #009688;
  color: #fff; }

.mat-datepicker-content.mat-accent .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(0, 150, 136, 0.4); }

.mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px #fff; }

.mat-datepicker-content.mat-warn .mat-calendar-body-selected {
  background-color: #f44336;
  color: #fff; }

.mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(244, 67, 54, 0.4); }

.mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px #fff; }

.mat-datepicker-toggle-active {
  color: #1565c0; }

.mat-datepicker-toggle-active.mat-accent {
  color: #009688; }

.mat-datepicker-toggle-active.mat-warn {
  color: #f44336; }

.mat-dialog-container {
  background: #fff;
  color: rgba(0, 0, 0, 0.87); }

.mat-divider {
  border-top-color: rgba(0, 0, 0, 0.12); }

.mat-divider-vertical {
  border-right-color: rgba(0, 0, 0, 0.12); }

.mat-expansion-panel {
  background: #fff;
  color: rgba(0, 0, 0, 0.87); }

.mat-action-row {
  border-top-color: rgba(0, 0, 0, 0.12); }

.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused, .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused, .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover {
  background: rgba(0, 0, 0, 0.04); }

.mat-expansion-panel-header-title {
  color: rgba(0, 0, 0, 0.87); }

.mat-expansion-indicator::after, .mat-expansion-panel-header-description {
  color: rgba(0, 0, 0, 0.54); }

.mat-expansion-panel-header[aria-disabled=true] {
  color: rgba(0, 0, 0, 0.26); }

.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description, .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title {
  color: inherit; }

.mat-form-field-label, .mat-hint {
  color: rgba(0, 0, 0, 0.6); }

.mat-form-field.mat-focused .mat-form-field-label {
  color: #1565c0; }

.mat-form-field.mat-focused .mat-form-field-label.mat-accent {
  color: #009688; }

.mat-form-field.mat-focused .mat-form-field-label.mat-warn {
  color: #f44336; }

.mat-focused .mat-form-field-required-marker {
  color: #009688; }

.mat-form-field-ripple {
  background-color: rgba(0, 0, 0, 0.87); }

.mat-form-field.mat-focused .mat-form-field-ripple {
  background-color: #1565c0; }

.mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {
  background-color: #009688; }

.mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {
  background-color: #f44336; }

.mat-form-field.mat-form-field-invalid .mat-form-field-label, .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker, .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent {
  color: #f44336; }

.mat-form-field.mat-form-field-invalid .mat-form-field-ripple {
  background-color: #f44336; }

.mat-error {
  color: #f44336; }

.mat-form-field-appearance-legacy .mat-form-field-label, .mat-form-field-appearance-legacy .mat-hint {
  color: rgba(0, 0, 0, 0.54); }

.mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(0, 0, 0, 0.42); }

.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0, rgba(0, 0, 0, 0.42) 33%, transparent 0);
  background-size: 4px 100%;
  background-repeat: repeat-x; }

.mat-form-field-appearance-standard .mat-form-field-underline {
  background-color: rgba(0, 0, 0, 0.42); }

.mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0, rgba(0, 0, 0, 0.42) 33%, transparent 0);
  background-size: 4px 100%;
  background-repeat: repeat-x; }

.mat-form-field-appearance-fill .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.04); }

.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.02); }

.mat-form-field-appearance-fill .mat-form-field-underline::before {
  background-color: rgba(0, 0, 0, 0.42); }

.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {
  color: rgba(0, 0, 0, 0.38); }

.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {
  background-color: transparent; }

.mat-form-field-appearance-outline .mat-form-field-outline {
  bottom: 1.34375em;
  color: rgba(0, 0, 0, 0.12); }

.mat-form-field-appearance-outline .mat-form-field-outline-thick {
  color: rgba(0, 0, 0, 0.87); }

.mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {
  color: #1565c0; }

.mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {
  color: #009688; }

.mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick, .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {
  color: #f44336; }

.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {
  color: rgba(0, 0, 0, 0.38); }

.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {
  color: rgba(0, 0, 0, 0.06); }

.mat-icon.mat-primary {
  color: #1565c0; }

.mat-icon.mat-accent {
  color: #009688; }

.mat-icon.mat-warn {
  color: #f44336; }

.mat-input-element:disabled {
  color: rgba(0, 0, 0, 0.38); }

.mat-input-element {
  caret-color: #1565c0; }

.mat-input-element::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.42); }

.mat-input-element::placeholder {
  color: rgba(0, 0, 0, 0.42); }

.mat-input-element::-moz-placeholder {
  color: rgba(0, 0, 0, 0.42); }

.mat-input-element::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.42); }

.mat-input-element:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.42); }

.mat-accent .mat-input-element {
  caret-color: #009688; }

.mat-form-field-invalid .mat-input-element, .mat-warn .mat-input-element {
  caret-color: #f44336; }

.mat-list .mat-list-item, .mat-list .mat-list-option, .mat-nav-list .mat-list-item, .mat-nav-list .mat-list-option, .mat-selection-list .mat-list-item, .mat-selection-list .mat-list-option {
  color: rgba(0, 0, 0, 0.87); }

.mat-list .mat-subheader, .mat-nav-list .mat-subheader, .mat-selection-list .mat-subheader {
  font-family: Roboto,"Helvetica Neue",sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.54); }

.mat-list-item-disabled {
  background-color: #eee; }

.mat-list-option.mat-list-item-focus, .mat-list-option:hover, .mat-nav-list .mat-list-item.mat-list-item-focus, .mat-nav-list .mat-list-item:hover {
  background: rgba(0, 0, 0, 0.04); }

.mat-menu-panel {
  background: #fff; }

.mat-menu-item {
  background: 0 0;
  color: rgba(0, 0, 0, 0.87); }

.mat-menu-item[disabled], .mat-menu-item[disabled]::after {
  color: rgba(0, 0, 0, 0.38); }

.mat-menu-item .mat-icon:not([color]), .mat-menu-item-submenu-trigger::after {
  color: rgba(0, 0, 0, 0.54); }

.mat-menu-item-highlighted:not([disabled]), .mat-menu-item.cdk-keyboard-focused:not([disabled]), .mat-menu-item.cdk-program-focused:not([disabled]), .mat-menu-item:hover:not([disabled]) {
  background: rgba(0, 0, 0, 0.04); }

.mat-paginator {
  background: #fff; }

.mat-paginator, .mat-paginator-page-size .mat-select-trigger {
  color: rgba(0, 0, 0, 0.54); }

.mat-paginator-decrement, .mat-paginator-increment {
  border-top: 2px solid rgba(0, 0, 0, 0.54);
  border-right: 2px solid rgba(0, 0, 0, 0.54); }

.mat-paginator-first, .mat-paginator-last {
  border-top: 2px solid rgba(0, 0, 0, 0.54); }

.mat-icon-button[disabled] .mat-paginator-decrement, .mat-icon-button[disabled] .mat-paginator-first, .mat-icon-button[disabled] .mat-paginator-increment, .mat-icon-button[disabled] .mat-paginator-last {
  border-color: rgba(0, 0, 0, 0.38); }

.mat-progress-bar-background {
  fill: #64b5f6; }

.mat-progress-bar-buffer {
  background-color: #64b5f6; }

.mat-progress-bar-fill::after {
  background-color: #1565c0; }

.mat-progress-bar.mat-accent .mat-progress-bar-background {
  fill: #b2dfdb; }

.mat-progress-bar.mat-accent .mat-progress-bar-buffer {
  background-color: #b2dfdb; }

.mat-progress-bar.mat-accent .mat-progress-bar-fill::after {
  background-color: #009688; }

.mat-progress-bar.mat-warn .mat-progress-bar-background {
  fill: #ffcdd2; }

.mat-progress-bar.mat-warn .mat-progress-bar-buffer {
  background-color: #ffcdd2; }

.mat-progress-bar.mat-warn .mat-progress-bar-fill::after {
  background-color: #f44336; }

.mat-progress-spinner circle, .mat-spinner circle {
  stroke: #1565c0; }

.mat-progress-spinner.mat-accent circle, .mat-spinner.mat-accent circle {
  stroke: #009688; }

.mat-progress-spinner.mat-warn circle, .mat-spinner.mat-warn circle {
  stroke: #f44336; }

.mat-radio-outer-circle {
  border-color: rgba(0, 0, 0, 0.54); }

.mat-radio-disabled .mat-radio-outer-circle {
  border-color: rgba(0, 0, 0, 0.38); }

.mat-radio-disabled .mat-radio-inner-circle, .mat-radio-disabled .mat-radio-ripple .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.38); }

.mat-radio-disabled .mat-radio-label-content {
  color: rgba(0, 0, 0, 0.38); }

.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {
  border-color: #1565c0; }

.mat-radio-button.mat-primary .mat-radio-inner-circle {
  background-color: #1565c0; }

.mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element {
  background-color: rgba(21, 101, 192, 0.26); }

.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
  border-color: #009688; }

.mat-radio-button.mat-accent .mat-radio-inner-circle {
  background-color: #009688; }

.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element {
  background-color: rgba(0, 150, 136, 0.26); }

.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {
  border-color: #f44336; }

.mat-radio-button.mat-warn .mat-radio-inner-circle {
  background-color: #f44336; }

.mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element {
  background-color: rgba(244, 67, 54, 0.26); }

.mat-select-content, .mat-select-panel-done-animating {
  background: #fff; }

.mat-select-value {
  color: rgba(0, 0, 0, 0.87); }

.mat-select-placeholder {
  color: rgba(0, 0, 0, 0.42); }

.mat-select-disabled .mat-select-value {
  color: rgba(0, 0, 0, 0.38); }

.mat-select-arrow {
  color: rgba(0, 0, 0, 0.54); }

.mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {
  background: rgba(0, 0, 0, 0.12); }

.mat-form-field.mat-focused.mat-primary .mat-select-arrow {
  color: #1565c0; }

.mat-form-field.mat-focused.mat-accent .mat-select-arrow {
  color: #009688; }

.mat-form-field .mat-select.mat-select-invalid .mat-select-arrow, .mat-form-field.mat-focused.mat-warn .mat-select-arrow {
  color: #f44336; }

.mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: rgba(0, 0, 0, 0.38); }

.mat-drawer-container {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87); }

.mat-drawer {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.87); }

.mat-drawer.mat-drawer-push {
  background-color: #fff; }

.mat-drawer-backdrop.mat-drawer-shown {
  background-color: rgba(0, 0, 0, 0.6); }

.mat-slide-toggle.mat-checked:not(.mat-disabled) .mat-slide-toggle-thumb {
  background-color: #009688; }

.mat-slide-toggle.mat-checked:not(.mat-disabled) .mat-slide-toggle-bar {
  background-color: rgba(0, 150, 136, 0.5); }

.mat-slide-toggle:not(.mat-checked) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.06); }

.mat-slide-toggle .mat-ripple-element {
  background-color: rgba(0, 150, 136, 0.12); }

.mat-slide-toggle.mat-primary.mat-checked:not(.mat-disabled) .mat-slide-toggle-thumb {
  background-color: #2196f3; }

.mat-slide-toggle.mat-primary.mat-checked:not(.mat-disabled) .mat-slide-toggle-bar {
  background-color: rgba(33, 150, 243, 0.5); }

.mat-slide-toggle.mat-primary:not(.mat-checked) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.06); }

.mat-slide-toggle.mat-primary .mat-ripple-element {
  background-color: rgba(33, 150, 243, 0.12); }

.mat-slide-toggle.mat-warn.mat-checked:not(.mat-disabled) .mat-slide-toggle-thumb {
  background-color: #f44336; }

.mat-slide-toggle.mat-warn.mat-checked:not(.mat-disabled) .mat-slide-toggle-bar {
  background-color: rgba(244, 67, 54, 0.5); }

.mat-slide-toggle.mat-warn:not(.mat-checked) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.06); }

.mat-slide-toggle.mat-warn .mat-ripple-element {
  background-color: rgba(244, 67, 54, 0.12); }

.mat-disabled .mat-slide-toggle-thumb {
  background-color: #bdbdbd; }

.mat-disabled .mat-slide-toggle-bar {
  background-color: rgba(0, 0, 0, 0.1); }

.mat-slide-toggle-thumb {
  background-color: #fafafa; }

.mat-slide-toggle-bar {
  background-color: rgba(0, 0, 0, 0.38); }

.mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26); }

.mat-primary .mat-slider-thumb, .mat-primary .mat-slider-thumb-label, .mat-primary .mat-slider-track-fill {
  background-color: #1565c0; }

.mat-primary .mat-slider-thumb-label-text {
  color: #fff; }

.mat-accent .mat-slider-thumb, .mat-accent .mat-slider-thumb-label, .mat-accent .mat-slider-track-fill {
  background-color: #009688; }

.mat-accent .mat-slider-thumb-label-text {
  color: #fff; }

.mat-warn .mat-slider-thumb, .mat-warn .mat-slider-thumb-label, .mat-warn .mat-slider-track-fill {
  background-color: #f44336; }

.mat-warn .mat-slider-thumb-label-text {
  color: #fff; }

.mat-slider-focus-ring {
  background-color: rgba(0, 150, 136, 0.2); }

.cdk-focused .mat-slider-track-background, .mat-slider:hover .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.38); }

.mat-slider-disabled .mat-slider-thumb, .mat-slider-disabled .mat-slider-track-background, .mat-slider-disabled .mat-slider-track-fill, .mat-slider-disabled:hover .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26); }

.mat-slider-min-value .mat-slider-focus-ring {
  background-color: rgba(0, 0, 0, 0.12); }

.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb, .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.87); }

.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb, .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.26); }

.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26);
  background-color: transparent; }

.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb, .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.38); }

.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb, .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26); }

.mat-slider-has-ticks .mat-slider-wrapper::after {
  border-color: rgba(0, 0, 0, 0.7); }

.mat-slider-horizontal .mat-slider-ticks {
  background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
  background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent); }

.mat-slider-vertical .mat-slider-ticks {
  background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent); }

.mat-step-header.cdk-keyboard-focused, .mat-step-header.cdk-program-focused, .mat-step-header:hover {
  background-color: rgba(0, 0, 0, 0.04); }

.mat-step-header .mat-step-label, .mat-step-header .mat-step-optional {
  color: rgba(0, 0, 0, 0.38); }

.mat-step-header .mat-step-icon {
  background-color: #1565c0;
  color: #fff; }

.mat-step-header .mat-step-icon-not-touched {
  background-color: rgba(0, 0, 0, 0.38);
  color: #fff; }

.mat-step-header .mat-step-label.mat-step-label-active {
  color: rgba(0, 0, 0, 0.87); }

.mat-stepper-horizontal, .mat-stepper-vertical {
  background-color: #fff; }

.mat-stepper-vertical-line::before {
  border-left-color: rgba(0, 0, 0, 0.12); }

.mat-stepper-horizontal-line {
  border-top-color: rgba(0, 0, 0, 0.12); }

.mat-tab-header, .mat-tab-nav-bar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12); }

.mat-tab-group-inverted-header .mat-tab-header, .mat-tab-group-inverted-header .mat-tab-nav-bar {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: none; }

.mat-tab-label, .mat-tab-link {
  color: rgba(0, 0, 0, 0.87); }

.mat-tab-label.mat-tab-disabled, .mat-tab-link.mat-tab-disabled {
  color: rgba(0, 0, 0, 0.38); }

.mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.87); }

.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.38); }

.mat-tab-group[class*=mat-background-] .mat-tab-header, .mat-tab-nav-bar[class*=mat-background-] {
  border-bottom: none;
  border-top: none; }

.mat-tab-group.mat-primary .mat-tab-label:not(.mat-tab-disabled):focus, .mat-tab-group.mat-primary .mat-tab-link:not(.mat-tab-disabled):focus, .mat-tab-nav-bar.mat-primary .mat-tab-label:not(.mat-tab-disabled):focus, .mat-tab-nav-bar.mat-primary .mat-tab-link:not(.mat-tab-disabled):focus {
  background-color: rgba(100, 181, 246, 0.3); }

.mat-tab-group.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary .mat-ink-bar {
  background-color: #1565c0; }

.mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {
  background-color: #fff; }

.mat-tab-group.mat-accent .mat-tab-label:not(.mat-tab-disabled):focus, .mat-tab-group.mat-accent .mat-tab-link:not(.mat-tab-disabled):focus, .mat-tab-nav-bar.mat-accent .mat-tab-label:not(.mat-tab-disabled):focus, .mat-tab-nav-bar.mat-accent .mat-tab-link:not(.mat-tab-disabled):focus {
  background-color: rgba(178, 223, 219, 0.3); }

.mat-tab-group.mat-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent .mat-ink-bar {
  background-color: #009688; }

.mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {
  background-color: #fff; }

.mat-tab-group.mat-warn .mat-tab-label:not(.mat-tab-disabled):focus, .mat-tab-group.mat-warn .mat-tab-link:not(.mat-tab-disabled):focus, .mat-tab-nav-bar.mat-warn .mat-tab-label:not(.mat-tab-disabled):focus, .mat-tab-nav-bar.mat-warn .mat-tab-link:not(.mat-tab-disabled):focus {
  background-color: rgba(255, 205, 210, 0.3); }

.mat-tab-group.mat-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn .mat-ink-bar {
  background-color: #f44336; }

.mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {
  background-color: #fff; }

.mat-tab-group.mat-background-primary .mat-tab-label:not(.mat-tab-disabled):focus, .mat-tab-group.mat-background-primary .mat-tab-link:not(.mat-tab-disabled):focus, .mat-tab-nav-bar.mat-background-primary .mat-tab-label:not(.mat-tab-disabled):focus, .mat-tab-nav-bar.mat-background-primary .mat-tab-link:not(.mat-tab-disabled):focus {
  background-color: rgba(100, 181, 246, 0.3); }

.mat-tab-group.mat-background-primary .mat-tab-header, .mat-tab-group.mat-background-primary .mat-tab-links, .mat-tab-nav-bar.mat-background-primary .mat-tab-header, .mat-tab-nav-bar.mat-background-primary .mat-tab-links {
  background-color: #1565c0; }

.mat-tab-group.mat-background-primary .mat-tab-label, .mat-tab-group.mat-background-primary .mat-tab-link, .mat-tab-nav-bar.mat-background-primary .mat-tab-label, .mat-tab-nav-bar.mat-background-primary .mat-tab-link {
  color: #fff; }

.mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled {
  color: rgba(255, 255, 255, 0.4); }

.mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron {
  border-color: #fff; }

.mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(255, 255, 255, 0.4); }

.mat-tab-group.mat-background-primary .mat-ripple-element, .mat-tab-nav-bar.mat-background-primary .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.12); }

.mat-tab-group.mat-background-accent .mat-tab-label:not(.mat-tab-disabled):focus, .mat-tab-group.mat-background-accent .mat-tab-link:not(.mat-tab-disabled):focus, .mat-tab-nav-bar.mat-background-accent .mat-tab-label:not(.mat-tab-disabled):focus, .mat-tab-nav-bar.mat-background-accent .mat-tab-link:not(.mat-tab-disabled):focus {
  background-color: rgba(178, 223, 219, 0.3); }

.mat-tab-group.mat-background-accent .mat-tab-header, .mat-tab-group.mat-background-accent .mat-tab-links, .mat-tab-nav-bar.mat-background-accent .mat-tab-header, .mat-tab-nav-bar.mat-background-accent .mat-tab-links {
  background-color: #009688; }

.mat-tab-group.mat-background-accent .mat-tab-label, .mat-tab-group.mat-background-accent .mat-tab-link, .mat-tab-nav-bar.mat-background-accent .mat-tab-label, .mat-tab-nav-bar.mat-background-accent .mat-tab-link {
  color: #fff; }

.mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {
  color: rgba(255, 255, 255, 0.4); }

.mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron {
  border-color: #fff; }

.mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(255, 255, 255, 0.4); }

.mat-tab-group.mat-background-accent .mat-ripple-element, .mat-tab-nav-bar.mat-background-accent .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.12); }

.mat-tab-group.mat-background-warn .mat-tab-label:not(.mat-tab-disabled):focus, .mat-tab-group.mat-background-warn .mat-tab-link:not(.mat-tab-disabled):focus, .mat-tab-nav-bar.mat-background-warn .mat-tab-label:not(.mat-tab-disabled):focus, .mat-tab-nav-bar.mat-background-warn .mat-tab-link:not(.mat-tab-disabled):focus {
  background-color: rgba(255, 205, 210, 0.3); }

.mat-tab-group.mat-background-warn .mat-tab-header, .mat-tab-group.mat-background-warn .mat-tab-links, .mat-tab-nav-bar.mat-background-warn .mat-tab-header, .mat-tab-nav-bar.mat-background-warn .mat-tab-links {
  background-color: #f44336; }

.mat-tab-group.mat-background-warn .mat-tab-label, .mat-tab-group.mat-background-warn .mat-tab-link, .mat-tab-nav-bar.mat-background-warn .mat-tab-label, .mat-tab-nav-bar.mat-background-warn .mat-tab-link {
  color: #fff; }

.mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {
  color: rgba(255, 255, 255, 0.4); }

.mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron {
  border-color: #fff; }

.mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(255, 255, 255, 0.4); }

.mat-tab-group.mat-background-warn .mat-ripple-element, .mat-tab-nav-bar.mat-background-warn .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.12); }

.mat-toolbar {
  background: #f5f5f5;
  color: rgba(0, 0, 0, 0.87); }

.mat-toolbar.mat-primary {
  background: #1565c0;
  color: #fff; }

.mat-toolbar.mat-accent {
  background: #009688;
  color: #fff; }

.mat-toolbar.mat-warn {
  background: #f44336;
  color: #fff; }

.mat-toolbar .mat-focused .mat-form-field-ripple, .mat-toolbar .mat-form-field-ripple, .mat-toolbar .mat-form-field-underline {
  background-color: currentColor; }

.mat-toolbar .mat-focused .mat-form-field-label, .mat-toolbar .mat-form-field-label, .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow, .mat-toolbar .mat-select-arrow, .mat-toolbar .mat-select-value {
  color: inherit; }

.mat-toolbar .mat-input-element {
  caret-color: currentColor; }

.mat-tooltip {
  background: rgba(97, 97, 97, 0.9); }

.mat-tree {
  font-family: Roboto,"Helvetica Neue",sans-serif;
  background: #fff; }

.mat-tree-node {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87); }

.mat-snack-bar-container {
  background: #323232;
  color: #fff; }

.mat-simple-snackbar-action {
  color: #009688; }

button.no-style {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  border-radius: 0;
  min-width: initial;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  outline: 0;
  cursor: pointer; }

button > svg-icon {
  display: block;
  pointer-events: none; }

.input-container {
  display: block;
  width: 100%; }

.input-container .error {
  margin-top: 6px;
  color: #f44336; }

.input-container p {
  color: rgba(0, 0, 0, 0.54);
  font-size: 1.3rem; }

.input-container label {
  color: inherit;
  display: block;
  padding-bottom: 5px; }

.input-container .fake-input, .input-container input, .input-container select, .input-container textarea {
  width: 100%;
  height: 38px;
  color: inherit;
  border: 1px solid #e0e0e0;
  padding: 0 10px;
  line-height: normal;
  font-size: 1.4rem;
  font-family: inherit;
  background-color: inherit;
  box-sizing: border-box; }

.input-container .fake-input:disabled, .input-container input:disabled, .input-container select:disabled, .input-container textarea:disabled {
  background-color: #f8f8f8;
  color: rgba(0, 0, 0, 0.38); }

.input-container textarea {
  height: auto;
  padding: 10px; }

.many-inputs > .input-container {
  margin-bottom: 20px; }

.modal .dialog-loading-bar {
  position: absolute;
  top: 0;
  left: 0; }

.modal .mat-dialog-container {
  position: relative; }

@media only screen and (min-width: 768px) {
  /*.modal{width:530px}*/ }

.modal .modal-header {
  display: flex;
  align-items: center;
  position: relative;
  color: rgba(0, 0, 0, 0.87);
  margin: 0 0 35px; }

.modal .modal-header > h2 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: .005em;
  flex: 1 1 auto;
  margin: 0;
  line-height: 3.2rem; }

.modal .mat-dialog-content {
  position: relative; }

.modal .mat-dialog-actions {
  justify-content: flex-end;
  padding-bottom: 16px; }

.modal .close-button {
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
  color: rgba(0, 0, 0, 0.5);
  transition: -webkit-transform ease .2s;
  transition: transform ease .2s;
  transition: transform ease .2s,-webkit-transform ease .2s;
  z-index: 999; }

.modal .close-button:hover {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg); }

.modal .close-button > svg-icon {
  width: 100%;
  height: 100%; }

.modal .errors {
  color: #f44336; }

.modal .errors > .error {
  padding: 10px 0; }

.modal .errors > .error:last-of-type {
  margin-bottom: 20px; }

.modal .input-container select, .modal .input-container > input, .modal .input-container > textarea {
  background-color: transparent; }

.modal .input-container > .error {
  color: #f44336; }

.modal .input-container > p {
  margin-top: 8px;
  line-height: 1.5;
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.54); }

.modal .no-input-error {
  padding: 10px 0;
  color: #f44336; }

.ps > .ps__rail-x {
  opacity: .6; }

.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto; }

.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear,opacity .2s linear;
  -webkit-transition: background-color .2s linear,opacity .2s linear;
  height: 15px;
  bottom: 0;
  position: absolute; }

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear,opacity .2s linear;
  -webkit-transition: background-color .2s linear,opacity .2s linear;
  width: 15px;
  right: 0;
  position: absolute; }

.ps--active-x > .ps__rail-x, .ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent; }

.ps--focus > .ps__rail-x, .ps--focus > .ps__rail-y, .ps--scrolling-x > .ps__rail-x, .ps--scrolling-y > .ps__rail-y, .ps:hover > .ps__rail-x, .ps:hover > .ps__rail-y {
  opacity: .6; }

.ps__rail-x:focus, .ps__rail-x:hover, .ps__rail-y:focus, .ps__rail-y:hover {
  background-color: #eee;
  opacity: .9; }

.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear,height .2s ease-in-out;
  -webkit-transition: background-color .2s linear,height .2s ease-in-out;
  height: 6px;
  bottom: 2px;
  position: absolute; }

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear,width .2s ease-in-out;
  -webkit-transition: background-color .2s linear,width .2s ease-in-out;
  width: 6px;
  right: 2px;
  position: absolute; }

.ps__rail-x:focus > .ps__thumb-x, .ps__rail-x:hover > .ps__thumb-x {
  background-color: #999;
  height: 11px; }

.ps__rail-y:focus > .ps__thumb-y, .ps__rail-y:hover > .ps__thumb-y {
  background-color: #999;
  width: 11px; }

@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important; } }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important; } }

.cdk-overlay-backdrop {
  background-color: rgba(0, 0, 0, 0.15); }

.floating-panel {
  display: block;
  min-width: 250px;
  background-color: #fff;
  box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden; }

@media only screen and (max-width: 768px) {
  .floating-panel {
    width: 90%; } }

.floating-panel .header {
  display: flex;
  align-items: center;
  padding: 12px;
  color: #fff;
  border-bottom: 1px solid #e0e0e0;
  background-color: #1565c0; }

.floating-panel .header > .close-button {
  margin-left: auto;
  width: 24px;
  height: 24px;
  line-height: 24px; }

.floating-panel .items-list {
  height: auto;
  max-height: 300px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.floating-panel .items-list .item {
  display: flex;
  align-items: center;
  height: 48px;
  margin: 10px;
  padding: 0 5px;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  transition: box-shadow .3s ease;
  text-transform: capitalize; }

.floating-panel .items-list .item.active {
  border-color: #1976d2; }

.floating-panel .items-list .item.disabled {
  cursor: default;
  pointer-events: none;
  opacity: .7; }

.floating-panel .items-list .item:hover {
  box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12); }

.floating-panel .items-list .item .list-icon {
  margin-right: 5px; }

.floating-panel .items-list .reorder-item-wrapper {
  padding: 5px 10px; }

.floating-panel .items-list .reorder-item-wrapper .item {
  margin: 0; }

.mode-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999; }

.mode-overlay image-editor {
  position: fixed;
  left: 5%;
  top: 5%;
  bottom: 5%;
  right: 5%;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  z-index: 10;
  box-shadow: inset 0 -2px 5px rgba(61, 61, 61, 0.5), 0 6px 44px rgba(0, 0, 0, 0.7);
  border-radius: 6px;
  overflow: hidden; }

.mode-overlay .overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); }

.ui-compact navigation-bar .scroll-container {
  justify-content: flex-start; }

.ui-compact navigation-bar .scroll-container .separator {
  display: none; }

.theme-dark .canvas-wrapper {
  background-image: none !important;
  background-color: #1b2024; }

.theme-dark toolbar {
  background: #2e333c;
  color: #dae5ef; }

.theme-dark editor-controls {
  background-color: #23272e;
  color: #dae5ef; }

.theme-dark editor-controls .control-button svg-icon {
  color: inherit;
  -webkit-filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.6));
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.6)); }

.theme-dark editor-controls .control-button .name {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6); }

.theme-dark editor-controls .round-action-button {
  border-color: #39404b; }

.theme-dark editor-controls color-widget .color {
  border-color: transparent; }

.theme-dark editor-controls .button-with-image {
  background-color: #2e333c;
  border-color: #39404b;
  color: inherit; }

.theme-dark editor-controls .separator {
  background-color: #39404b; }

.theme-dark drawer-wrapper .back-button {
  background-color: #2e333c;
  border: 1px solid #39404b;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
  color: inherit; }

.theme-dark drawer-wrapper .mat-raised-button[disabled] {
  color: rgba(255, 255, 255, 0.3);
  background-color: #2e333c; }

.theme-dark drawer-wrapper .input-container input, .theme-dark drawer-wrapper .select-font-button {
  border-color: #39404b; }

.theme-dark drawer-wrapper .mat-checkbox-frame {
  border-color: #4f5868; }

.theme-dark mobile-secondary-controls {
  background-color: transparent;
  box-shadow: none;
  color: #dae5ef; }

.theme-dark mobile-secondary-controls .mat-icon-button {
  background-color: #2e333c; }

.theme-dark mobile-secondary-controls .mat-icon-button:disabled {
  color: rgba(255, 255, 255, 0.3); }

.theme-dark .floating-panel {
  background-color: #23272e;
  color: #dae5ef; }

.theme-dark .floating-panel .header {
  background-color: #2e333c;
  color: inherit;
  border-color: #39404b; }

.theme-dark .floating-panel .item {
  border-color: #2e333c;
  background-color: #272c34; }

.theme-dark .floating-panel .item.active {
  color: #fefefe;
  font-weight: 500; }

.theme-dark open-sample-image-panel .separator hr {
  background-color: #39404b; }

.theme-dark open-sample-image-panel .separator .text {
  background-color: #23272e; }

.theme-dark .mat-menu-panel {
  background-color: #2e333c; }

.theme-dark .mat-menu-panel .mat-menu-item {
  color: #dae5ef; }

.theme-dark .ps__rail-x:focus > .ps__thumb-x, .theme-dark .ps__rail-x:hover > .ps__thumb-x, .theme-dark .ps__thumb-x {
  background-color: #444c59; }

.theme-dark .ps__rail-x:focus, .theme-dark .ps__rail-x:hover, .theme-dark .ps__rail-y:focus, .theme-dark .ps__rail-y:hover {
  background-color: transparent; }

/*html{font-size:62.5%}*/
pixie-editor .scroll-container, pixie-editor .scroll-container-x {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden; }

pixie-editor .scroll-container-x.ps, pixie-editor .scroll-container.ps {
  position: relative;
  overflow: hidden; }

pixie-editor .scroll-container-x {
  overflow-y: hidden;
  overflow-x: auto; }

pixie-editor .block, pixie-editor img {
  display: block; }

pixie-editor a {
  text-decoration: none;
  color: #1565c0; }

pixie-editor a.hover-underline {
  color: inherit; }

pixie-editor a.hover-underline:hover {
  text-decoration: underline; }

pixie-editor .hidden {
  display: none !important;
  visibility: hidden; }

pixie-editor .error {
  color: #f44336; }

pixie-editor .error.margin-bottom {
  margin-bottom: 20px; }

pixie-editor .error.margin-top {
  margin-top: 20px; }

pixie-editor *, pixie-editor :after, pixie-editor :before {
  box-sizing: inherit; }

image-editor, pixie-editor {
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box; }

pixie-editor {
  touch-action: manipulation; }

image-editor {
  font-family: Roboto,"Helvetica Neue",sans-serif;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.42857143;
  /*font-size:1.4rem;*/
  overflow: hidden; }

