body,
html {
  box-sizing: border-box;
}

.mt-button {
  display: inline-flex;
  position: relative;
  border: none;
  outline: none;
  min-width: 56px;
  height: 32px;
  overflow: hidden;
  vertical-align: middle;
  font-size: 13px;
  line-height: 32px;
  text-decoration: none;
  padding: 0 16px;
  margin: 0;
  border-radius: 4px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  background-color: #2979ff;
}

.mt-button,
.mt-dialog,
.mt-dialog__scrim {
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.mt-dialog,
.mt-dialog__scrim {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.mt-dialog {
  display: none;
  z-index: 7;
}

.mt-dialog--open {
  display: flex;
}

.mt-dialog--open .mt-dialog__scrim {
  opacity: 1;
}

.mt-dialog--open .mt-dialog__container {
  transform: scale(1);
  opacity: 1;
}

.mt-dialog__scrim {
  opacity: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.32);
}

.mt-dialog__container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  box-sizing: border-box;
  transform: scale(0.8);
  opacity: 0;
  pointer-events: none;
}

.mt-dialog__surface {
  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);
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  box-sizing: border-box;
  max-width: calc(100vw - 16px);
  max-height: calc(100vh - 32px);
  background-color: #fff;
  border-radius: 8px;
  pointer-events: auto;
  width: 480px;
  overflow: hidden;
}

.mt-dialog__title {
  display: inline-flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  position: relative;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 8px 16px;
  color: rgba(0, 0, 0, 0.87);
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.24);
}

.mt-dialog__content {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  flex-grow: 1;
  box-sizing: border-box;
  margin: 0;
  padding: 16px;
  overflow: auto;
  color: rgba(0, 0, 0, 0.6);
}

.mt-dialog__note {
  margin-bottom: 16px;
  text-align: center;
}

.mt-dialog__actions {
  position: relative;
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
  padding: 8px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.24);
}

@media (max-width: 592px) {
  .mt-dialog__surface {
    max-width: calc(100vw - 32px);
  }
}

.mt-textfield {
  color: rgba(0, 0, 0, 0.87);
  font-size: 16px;
  font-weight: 400;
  display: block;
  width: 100%;
  padding: 0 16px;
  height: 36px;
  outline: 0;
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-sizing: border-box;
  border-radius: 4px;
  margin: 0;
}

.mt-textfield__error {
  border: 1px solid #f44336;
}

.mt-tooltip {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
}

.mt-tooltip__text {
  position: absolute;
  visibility: hidden;
  z-index: 1;
  background: #232f34;
  color: #fff;
  text-align: center;
  padding: 4px 8px;
  border-radius: 4px;
  min-width: 120px;
  max-width: 240px;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  box-sizing: border-box;
}

.mt-tooltip__text:after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top-color: #232f34;
}

.mt-tooltip:hover .mt-tooltip__text {
  visibility: visible;
}

#thc .mmt-container {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 99;
  pointer-events: none;
  box-sizing: border-box;
}

#thc .mmt-container--fit {
  text-align: center;
}

#thc .mmt-container--fit .mmt-button__label {
  white-space: nowrap;
}

#thc .mmt-container--fit .mmt-app {
  display: inline-flex;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}

#thc .mmt-app {
  position: relative;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  min-height: 56px;
  transition: all 0.24s;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji,
    Segoe UI Symbol;
}

#thc .mmt-app-rectangle {
  flex-direction: row;
}

#thc .mmt-app--circle {
  height: 100vh;
  width: 100% !important;
  flex-direction: column;
  padding: 8px;
}

#thc .mmt-app--circle-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

#thc .mmt-app--circle-top-right {
  align-items: flex-end;
  justify-content: flex-start;
}

#thc .mmt-app--circle-middle-left {
  align-items: flex-start;
  justify-content: center;
}

#thc .mmt-app--circle-middle-right {
  align-items: flex-end;
  justify-content: center;
}

#thc .mmt-app--circle-bottom-left {
  align-items: flex-start;
  justify-content: flex-end;
}

#thc .mmt-app--circle-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

#thc .mmt-app.mmt-app--mobile {
  justify-content: space-evenly;
  height: 60px;
}

#thc .mmt-app--hidden {
  transform: translateY(160%);
}

#thc .mmt-button {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 0 10px;
  cursor: pointer;
  position: relative;
  justify-content: center;
  border-radius: 3px;
  height: 55px;
  margin: 10px 5px;
  min-width: 150px;
  flex-direction: column;
}
#thc .live_person {
  color: white;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
}
#thc .live_person .live {
  background: #12bb12;
  height: 10px;
  width: 10px;
  border-radius: 10px;
  margin-right: 5px;
}

@media only screen and (max-width: 769px) {
  #thc .mmt-button {
    min-width: 32%;
  }
  .thc-contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #thc .mmt-button--mobile .mmt-button__label {
    margin-left: 5px;
  }
  #thc .live_person {
    font-size: 0.65rem;
  }
}
#thc .mmt-button.mmt-button--circle {
  margin: 4px 5px !important;
  border-radius: 20px !important;
}

#thc .mmt-button.mmt-button--circle.mmt-button--square {
  margin: 1px -8px !important;
  border-radius: 4px 0 0 4px !important;
}

#thc .mmt-button--circle .mmt-button__icon {
  margin: 0;
  transition: margin-right 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

#thc .mmt-button--circle .mmt-button__label {
  width: 0;
  overflow: hidden;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-overflow: clip;
}

#thc .mmt-button--circle:hover .mmt-button__icon {
  margin-right: 10px;
}

#thc .mmt-button--circle:hover .mmt-button__label {
  width: 168px;
}

#thc .mmt-button {
  background-color: hsla(0, 0%, 100%, 0.2) !important;
}

#thc .mmt-button:hover {
  background-color: rgba(27, 27, 27, 0.2);
}

#thc .mmt-button--circle,
#thc .mmt-button--circle:hover,
#thc .mmt-button--mobile,
#thc .mmt-button--mobile:hover {
  background-color: transparent;
  background-color: initial;
}

#thc .mmt-button--mobile {
  height: 60px;
  justify-content: center;
  margin: 0 !important;
}

#thc .mmt-menu__item {
  pointer-events: auto;
}

#thc .mmt-menu__item--mobile {
  flex: 1 1;
}

#thc .mmt-menu__item--mobile:not(:first-child) {
  border-left: 1px solid hsla(0, 0%, 100%, 0.2);
}

#thc .mmt-button--mobile {
  flex-direction: column;
  flex: 1 1;
}

#thc .mmt-button--mobile .mmt-button__icon {
  margin-right: 0;
  margin-bottom: 4px;
}

#thc .mmt-button__icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  box-sizing: border-box;
}
#thc path {
  fill: white;
}
#thc .mmt-button__icon--motion {
  animation: tada 1.2s infinite;
}

#thc .mmt-button--mobile .mmt-button__label {
  font-size: 12px;
  line-height: 13px;
  max-height: 26px;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#thc .mmt-button__label {
  font-size: 14px;
  line-height: 20px;
}

#thc .mtt-text-field--fullWith {
  width: 100%;
}

#thc .mmt-form-item:not(:last-of-type) {
  margin-bottom: 16px;
}

#mom-root iframe {
  border: none !important;
  overflow: hidden !important;
  position: fixed !important;
  z-index: 2147483647 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  margin: 0 !important;
}

@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.3, 1.3, 1.3) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.3, 1.3, 1.3) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}

#thc .react-datepicker-wrapper {
  display: block;
}

#thc .react-datepicker__day--selected {
  border-radius: 50%;
  background-color: #58aff3;
}

#thc .react-datepicker__time-list-item--selected {
  background-color: #58aff3;
}

.metu-banner {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  box-sizing: border-box;
  flex-shrink: 0;
  position: relative;
  width: 100%;
  height: 52px;
}

.metu-banner__content {
  display: flex;
  position: absolute;
  min-height: 52px;
  width: 720px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  max-width: 100%;
  padding: 0 8px;
}

.metu-banner__text {
  align-self: center;
  flex-grow: 1;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
  letter-spacing: 0.25px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metu-banner__actions {
  align-self: center;
  display: flex;
  flex-shrink: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
}

.mt-popup {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  max-height: 100%;
  max-width: 100%;
  width: 720px;
  font-family: Helvetica, Arial, sans-serif;
}

.mt-popup__media {
  display: block;
  position: relative;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  padding-top: 56.25%;
  overflow: hidden;
  height: 0;
}

.mt-popup__media-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  color: #fff;
  padding: 16px;
  text-align: center;
}

.mt-popup__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.mt-popup__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.body-banner--show {
  padding-top: 52px !important;
}
.btn-contact-bar1 {
  z-index: 999;
  display: flex;
  position: fixed;
  right: 32px;
  top: 45%;
  align-items: flex-end;
  flex-flow: column nowrap;
}

.item-contact-box {
  z-index: 999;
  background: #272727;
  margin-bottom: 30px;
  width: 40px;
  height: 40px;
  padding: 5px 0px 0px 5px;
  border-radius: 999px;
  transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.item-contact-box:hover {
  width: 164px;
  height: 40px;
}

.item-contact {
  display: flex;
  text-decoration: none;
}
.item-contact:hover {
  /*display: flex;*/
  text-decoration: none;
}

.icon-contact {
  height: 50px;
  width: 50px;
  background: #272727;
  border-radius: 999px;
  position: absolute;
  margin: -10px;
}

.textwidget .content {
  line-height: 30px;
  margin-left: 50px;
  width: auto;
  white-space: nowrap;
  color: white;
  font-size: 14px;
  overflow: hidden;
  text-overflow: clip;
  text-align: center;
}

.item-contact .tada {
  width: 40px;
  height: 40px;
  margin-left: 6px;
  margin-top: 5px;
  color: white;
  font-size: 25px;
  border: 8px solid transparent;
  -webkit-animation: tada 1s infinite ease-in-out;
  animation: tada 1s infinite ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@-webkit-keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.3, 1.3, 1.3) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.3, 1.3, 1.3) rotate(-3deg);
  }
  100% {
    transform: scaleX(1);
  }
}

@media (max-width: 551px) {
  .btn-contact-bar1 {
    left: auto;
    right: 70px;
    align-items: center;
    justify-content: center;
    /*display: none;*/
    /*position: fixed;*/
    /*right: 0px;*/
    /*top: auto;*/
    /*bottom: 0px;*/
    /*margin: 0px auto;*/
    /*width: 100%;*/
    /*height: 55px;*/
    /*flex-flow: row nowrap;*/
  }

  .item-contact-box {
    display: flex;
    flex-flow: column nowrap;
    width: 22%;
    height: 60px;
    padding: 0px;
    margin: 0px;
    margin-bottom: 0px;
    border-radius: 0px;
    align-items: center;
    border-left: 1px solid grey;
  }

  .item-contact-box:hover {
    width: 25%;
    height: 60px;
  }

  .item-contact {
    flex-flow: column nowrap;
    margin-top: 5px;
    width: 100%;
    height: 100%;
    text-decoration: none;
  }

  .tada {
    border: none;
  }

  .textwidget .content {
    display: none;
    font-size: 60%;
    margin: 0px;
    width: 100%;
    text-align: center;
    white-space: normal;
    color: white;
    overflow: visible;
    text-overflow: unset;
  }

  .item-contact-box {
    border: none;
  }
}
