.error {
  color: #D64A2E;
  padding-top: 10px;
}

.color-primary {
  color: #113e60;
}

@media (min-width: 768px) {
  .login-form {
    width: 320px;
  }
}
.login-form {
  margin: auto;
  padding: 100px 15px;
}
.login-form .login-logo {
  text-align: center;
}
.login-form .login-logo img {
  width: 100px;
}

.login-button {
  width: 100%;
  background: white;
  color: #113e60;
  border: 1px solid #113e60;
}

.sign-up-text {
  margin-top: 10px;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  color: #113e60;
  cursor: pointer;
}

.login-cards {
  cursor: pointer;
  text-align: center;
  padding: 20px;
  border: 1px solid #113e60;
  border-radius: 10px;
  margin: 10px 0;
}
.login-cards i {
  display: block;
  font-size: 20px;
}

.fee-container {
  max-width: 700px;
  margin: auto;
  margin-top: 25px;
  padding: 10px;
  margin-bottom: 20px;
}

.heading-text-package {
  font-size: 25px;
  font-weight: 600;
  margin-top: 20px;
}

.inlin-vertical-center {
  display: inline-block;
  vertical-align: middle;
}

.schedule-tabel, td {
  padding: 5px;
  border: 1px solid #C2C2C2;
  border-collapse: collapse;
}

.hide-small {
  display: flex;
}

.schedule-table, tr:nth-child(2n+1) {
  background-color: white !important;
}

.fees-tabel {
  border: 1px solid #000;
}

.package-div button {
  margin: 5px;
}

.button-secendory {
  background-color: white;
  padding: 15px 30px;
  border-radius: 4px;
  border: 1px solid #C2C2C2;
  cursor: pointer;
}

.button-primary {
  background-color: #083E60;
  padding: 15px 40px;
  border-radius: 4px;
  border: none;
  color: white;
  cursor: pointer;
}

.m-t-10 {
  margin-top: 10px !important;
}

.p-l-10 {
  padding-left: 10px;
}

.why-tabel-container {
  display: flex;
  justify-content: center;
}

.why-tabel {
  text-align: center;
  border-collapse: collapse;
  font-size: 13px;
}

.why-tabel td {
  padding: 10px;
  vertical-align: middle;
  border: 1px solid #707070;
  border-top: none;
  border-bottom: none;
}

.why-tabel tr:nth-child(odd) {
  background-color: #f2f2f2;
}

.app-wrapper .fee-container {
  margin-top: 0;
}
.app-wrapper .fee-container .login-button {
  visibility: hidden;
}

.cross {
  color: grey;
  position: relative;
  display: inline-block;
  padding-right: 4px;
  font-size: 12px;
}

.cross::before, .cross::after {
  content: "";
  width: 75%;
  position: absolute;
  right: 5px;
  top: 45%;
}

.cross::before {
  border-bottom: 1.5px solid red;
  -webkit-transform: skewY(-20deg);
  transform: skewY(-20deg);
}

.cross::after {
  border-bottom: 1.5px solid red;
  -webkit-transform: skewY(20deg);
  transform: skewY(20deg);
}

.actual-fee {
  font-size: 16px;
  padding-right: 4px;
}

.menu {
  color: white;
  background: #113e60;
  height: 100vh;
  width: 240px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  outline: none;
}
.menu .avatar {
  background: rgba(0, 0, 0, 0.1);
  padding: 2em 0.5em;
  text-align: center;
}
.menu .avatar img {
  width: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffea92;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}
.menu .avatar h2 {
  font-weight: normal;
  margin-bottom: 0;
}
.menu ul {
  list-style: none;
  padding: 0.5em 0;
  margin: 0;
}
.menu ul li {
  padding: 1em 0.5em 0.5em 1.5em;
  font-size: 0.95em;
  font-weight: regular;
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: auto 20px;
  transition: all 0.15s linear;
  cursor: pointer;
}
.menu ul li:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.menu ul li:focus {
  outline: none;
}
.menu ul li span {
  margin-left: 0.5em;
}

@media screen and (max-width: 900px) {
  body {
    padding-left: 0;
  }
  .menu {
    width: 230px;
    box-shadow: 0 0 0 100em rgba(0, 0, 0, 0);
    transform: translate3d(-230px, 0, 0);
    transition: all 0.3s ease-in-out;
  }
  .menu .smartphone-menu-trigger {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 100%;
    background: #113e60;
  }
  .menu .smartphone-menu-trigger:before, .menu .smartphone-menu-trigger:after {
    content: "";
    width: 50%;
    height: 2px;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
  }
  .menu .smartphone-menu-trigger:after {
    top: 55%;
    transform: translate3d(-50%, -50%, 0);
  }
  .menu ul li {
    padding: 1em 0.5em 0.5em 1.5;
    font-size: 16px;
  }
  .menu:focus {
    transform: translate3d(0, 0, 0);
    box-shadow: 0 0 0 100em rgba(0, 0, 0, 0.6);
  }
  .menu:focus .smartphone-menu-trigger {
    pointer-events: none;
  }
}
.m-l-5 {
  margin-left: 5px;
}

.m-t-10 {
  margin-top: 10px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-b-50 {
  margin-bottom: 50px;
}

.empty-state {
  text-align: center;
  margin-top: 50px;
  font-size: 16px;
}

.quote-class {
  margin: 10px;
  margin-top: 52px;
  font-style: italic;
  background: #efeaea;
  padding: 29px;
  color: #113e60;
}
.quote-class .author-class {
  font-style: initial;
}

.text-primary {
  color: #113e60;
}

.course-container {
  height: calc(100vh - 164px);
  padding: 5px;
  overflow-y: scroll;
}

.reminder-container {
  height: calc(100vh - 164px);
  padding: 5px;
  overflow-y: scroll;
}

.test-container {
  height: calc(100vh - 164px);
  padding: 5px;
  overflow-y: scroll;
}

.order-container {
  height: calc(100vh - 100px);
  padding: 5px;
  overflow-y: scroll;
}

.user-container {
  height: calc(100vh - 100px);
  padding: 5px;
  overflow-y: scroll;
}

.test-checked-container {
  height: calc(100vh - 164px);
  padding: 5px;
  overflow-y: scroll;
}

.userapprove-container {
  height: calc(100vh - 100px);
  padding: 5px;
  overflow-y: scroll;
}

.loader-class {
  position: fixed;
  top: calc(50vh - 25px);
  left: calc(50% - 25px);
  font-size: 50px;
}

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

.instruction {
  width: calc(100% - 60px);
}

.strike {
  text-decoration: line-through;
}

.form-control {
  border: 1px solid #113e60;
}

h3 {
  word-break: break-word;
}

.card {
  border: 1px solid #b7aaaa;
  border-radius: 20px;
  box-shadow: 1px 0px 7px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
  padding: 15px;
  margin-top: 15px;
}
.card .actions {
  border-top: 1px solid rgba(191, 191, 191, 0.76);
  margin-top: 10px;
  padding: 5px 0;
  height: 36px;
}
.card .actions span {
  cursor: pointer;
}
.card .actions .btn {
  font-size: 12px;
  padding: 5px;
}
.card .tag {
  margin-top: 10px;
  padding: 0 10px;
  font-size: 15px;
  border-radius: 4px;
  font-weight: 400;
  text-align: center;
  border: 1px solid #113e60;
  color: #113e60;
  display: inline-block;
  vertical-align: middle;
}
.card .tag.platinum {
  border-color: #E5E4E2;
  color: #E5E4E2;
}
.card .tag.silver {
  border-color: #D3D3D3;
  color: #D3D3D3;
}
.card .tag.red {
  border-color: #D64A2E;
  color: #D64A2E;
}
.card .tag.green {
  border-color: #38761D;
  color: #38761D;
}
.card .tag.yellow {
  border-color: #F3933D;
  color: #F3933D;
}
.card .tag.pink {
  border-color: #B82C48;
  color: #B82C48;
}
.card .tag.blue {
  border-color: #0c15d2;
  color: #0c15d2;
}

table {
  width: 100%;
  max-width: 700px;
  margin: auto;
}
table td,
table th {
  color: #092235;
  padding: 10px;
}
table td {
  text-align: center;
  vertical-align: middle;
}
table td:last-child {
  font-size: 0.95em;
  line-height: 1.4;
}
table th {
  background-color: #86bfea;
  font-weight: 300;
  text-align: center;
}
table tr:nth-child(2n) {
  background-color: white;
}
table tr:nth-child(2n+1) {
  background-color: #9ccaed;
}
table tr .special {
  border: 1px solid #195a8b;
  background-color: #3091da;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.float-button {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #113e60;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  text-decoration: none;
}
.float-button .add {
  font-size: 42px;
}
.float-button:hover, .float-button:focus {
  text-decoration: none;
}

.btn-primary {
  background: #113e60;
}

.back-button {
  cursor: pointer;
  color: #113e60;
}

.btn-secondary {
  background: white;
  border: 1px solid #113e60;
  color: #113e60;
}
.btn-secondary:focus {
  color: #113e60;
}

.test-submit-button {
  width: 100%;
  margin-top: 10px;
}

.select-course-payment {
  position: fixed;
  width: 100%;
  bottom: 0;
  height: 50px;
  left: 0;
}

.btn {
  border-radius: inherit !important;
  padding: 10px;
  margin: 5px !important;
}

hr {
  border-top: 1px solid #113e60;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: normal;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-container input:checked ~ .checkmark {
  background-color: #113e60;
}
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-container:hover input .checkmark {
  background-color: #ccc;
}
.checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox-container .checkmark:after {
  left: 8px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.radio-container {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: normal;
}
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.radio-container input:checked ~ .checkmark {
  background-color: #113e60;
}
.radio-container input:checked ~ .checkmark:after {
  display: block;
}
.radio-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 50%;
}
.radio-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.radio-container .checkmark:after {
  top: 7px;
  left: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
}

/* Made by Jimmy Gillam */
.checklist-container {
  margin: 10px 0;
  /* Checkmark style starts */
}
@-moz-keyframes dothabottomcheck {
  0% {
    height: 0;
  }
  100% {
    height: 20px;
  }
}
@-webkit-keyframes dothabottomcheck {
  0% {
    height: 0;
  }
  100% {
    height: 20px;
  }
}
@keyframes dothabottomcheck {
  0% {
    height: 0;
  }
  100% {
    height: 20px;
  }
}
@keyframes dothatopcheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 48px;
  }
}
@-webkit-keyframes dothatopcheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 48px;
  }
}
@-moz-keyframes dothatopcheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 48px;
  }
}
.checklist-container input[type=checkbox] {
  display: none;
}
.checklist-container .check-box {
  height: 40px;
  width: 40px;
  background-color: transparent;
  border: 4px solid #000;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: border-color ease 0.2s;
  -o-transition: border-color ease 0.2s;
  -webkit-transition: border-color ease 0.2s;
  transition: border-color ease 0.2s;
  cursor: pointer;
}
.checklist-container .check-box::before, .checklist-container .check-box::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  height: 0;
  width: 8px;
  background-color: #34b93d;
  display: inline-block;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 5px;
  content: " ";
  -webkit-transition: opacity ease 0.5;
  -moz-transition: opacity ease 0.5;
  transition: opacity ease 0.5;
}
.checklist-container .check-box::before {
  top: 28.8px;
  left: 16.4px;
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.checklist-container .check-box::after {
  top: 14.8px;
  left: 2px;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.checklist-container input[type=checkbox]:checked + .check-box,
.checklist-container .check-box.checked {
  border-color: #34b93d;
}
.checklist-container input[type=checkbox]:checked + .check-box::after,
.checklist-container .check-box.checked::after {
  height: 20px;
  -moz-animation: dothabottomcheck 0.2s ease 0s forwards;
  -o-animation: dothabottomcheck 0.2s ease 0s forwards;
  -webkit-animation: dothabottomcheck 0.2s ease 0s forwards;
  animation: dothabottomcheck 0.2s ease 0s forwards;
}
.checklist-container input[type=checkbox]:checked + .check-box::before,
.checklist-container .check-box.checked::before {
  height: 48px;
  -moz-animation: dothatopcheck 0.4s ease 0s forwards;
  -o-animation: dothatopcheck 0.4s ease 0s forwards;
  -webkit-animation: dothatopcheck 0.4s ease 0s forwards;
  animation: dothatopcheck 0.4s ease 0s forwards;
}
.checklist-container label {
  display: inline-block;
  vertical-align: middle;
}
.checklist-container div {
  margin-left: 10px;
  display: inline-block;
  font-size: 16px;
}

.datepicker.datepicker-dropdown {
  min-width: 310px;
  padding: 0 0 60px 0;
  border-radius: 0;
  left: 50% !important;
  margin-left: -155px;
  top: 50% !important;
  margin-top: -228px;
}
.datepicker.datepicker-dropdown::before {
  display: none;
}
.datepicker.datepicker-dropdown::after {
  display: none;
}
.datepicker.datepicker-dropdown th {
  background-color: initial;
}
.datepicker.datepicker-dropdown table tr:nth-child(2n+1) {
  background-color: unset;
}
.datepicker.datepicker-dropdown .datepicker-days {
  position: relative;
}
.datepicker.datepicker-dropdown .datepicker-days .table-condensed {
  margin: auto;
  width: 280px;
  box-shadow: none;
  height: 396px;
  position: relative;
}
.datepicker.datepicker-dropdown .datepicker-days .table-condensed thead tr:first-child {
  background: #113e60;
}
.datepicker.datepicker-dropdown .datepicker-days .table-condensed thead tr:first-child th {
  color: #FFFFFF;
  height: 80px;
  text-align: left;
  font-size: 22px;
}
.datepicker.datepicker-dropdown .datepicker-days .table-condensed thead tr:first-child th .date-caption {
  font-size: 14px;
}
.datepicker.datepicker-dropdown .datepicker-days .table-condensed thead tr:nth-child(2) {
  height: 40px;
}
.datepicker.datepicker-dropdown .datepicker-days .table-condensed thead tr:nth-child(2) th {
  font-size: 14px;
  color: #000000;
  background: #FFFFFF;
  padding-top: 15px;
  padding-bottom: 10px;
}
.datepicker.datepicker-dropdown .datepicker-days .table-condensed thead tr:nth-child(2) th .title-background {
  position: absolute;
  width: calc(100% + 30px);
  height: 80px;
  background: #113e60;
  top: 0;
  margin-left: -20px;
  z-index: -1;
}
.datepicker.datepicker-dropdown .datepicker-days .table-condensed thead tr:nth-child(2) th .calendar-directions::before {
  font-size: 22px;
}
.datepicker.datepicker-dropdown .datepicker-days .table-condensed thead tr:nth-child(3) th {
  font-size: 12px;
  color: #777777;
}
.datepicker.datepicker-dropdown .datepicker-days .table-condensed tbody {
  font-size: 12px;
}
.datepicker.datepicker-dropdown .datepicker-days .table-condensed tbody tr {
  color: #000000;
  background: #FFFFFF;
}
.datepicker.datepicker-dropdown .datepicker-days .table-condensed tbody tr td {
  border-radius: 50%;
}
.datepicker.datepicker-dropdown .datepicker-days .table-condensed tbody tr td.today {
  background: #FFFFFF;
  color: #113e60;
}
.datepicker.datepicker-dropdown .datepicker-days .table-condensed tbody tr td.active {
  background: #113e60;
  color: #FFFFFF;
}
.datepicker.datepicker-dropdown .datepicker-days .table-condensed tbody tr td.disabled {
  color: #CCCCCC;
}
.datepicker.datepicker-dropdown .datepicker-days .table-condensed tbody tr td.old {
  visibility: hidden;
}
.datepicker.datepicker-dropdown .datepicker-days .table-condensed tbody tr td.new {
  visibility: hidden;
}
.datepicker.datepicker-dropdown .datepicker-days .table-condensed .datepicker-title::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 80px;
  background: #113e60;
  top: 0;
  left: -15px;
  z-index: -1;
}
.datepicker.datepicker-dropdown .open-timepicker {
  position: absolute;
  cursor: pointer;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 45px;
  text-align: center;
  padding-top: 12px;
  color: #FFFFFF;
  background: #113e60;
  font-weight: normal;
  font-size: 16px;
}
.datepicker.datepicker-dropdown .clockpicker-popover {
  min-width: 308px;
  top: 0 !important;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.datepicker.datepicker-dropdown .clockpicker-popover .arrow {
  display: none;
}
.datepicker.datepicker-dropdown .clockpicker-popover .popover-title {
  height: 80px;
  text-align: right;
  font-size: 35px;
  font-weight: 100;
  font-weight: normal;
  padding-top: 22px;
  background: #113e60;
  color: #FFFFFF;
  border-radius: 0;
  width: calc(100% + 2px);
  margin-left: -1px;
  margin-top: -1px;
}
.datepicker.datepicker-dropdown .clockpicker-popover .popover-title span {
  opacity: 0.85;
}
.datepicker.datepicker-dropdown .clockpicker-popover .popover-title .clockpicker-span-differentiator {
  margin: 0 -7px;
}
.datepicker.datepicker-dropdown .clockpicker-popover .popover-title .text-primary {
  opacity: 1;
  color: #FFFFFF;
}
.datepicker.datepicker-dropdown .clockpicker-popover .popover-title .clockpicker-span-am-pm {
  margin-left: 8px;
}
.datepicker.datepicker-dropdown .clockpicker-popover .popover-content {
  background: #FFFFFF;
}
.datepicker.datepicker-dropdown .clockpicker-popover .popover-content .clockpicker-plate {
  margin: 20px auto;
}
.datepicker.datepicker-dropdown .clockpicker-popover .clockpicker-am-pm-block {
  position: relative;
  top: 12px;
}
.datepicker.datepicker-dropdown .clockpicker-popover .clockpicker-am-pm-block .clockpicker-button.am-button {
  margin-left: 98px;
}
.datepicker.datepicker-dropdown .clockpicker-popover .clockpicker-am-pm-block .clockpicker-button.pm-button {
  margin-left: 20px;
}
.datepicker.datepicker-dropdown .clockpicker-popover .clockpicker-am-pm-block .clockpicker-button:active, .datepicker.datepicker-dropdown .clockpicker-popover .clockpicker-am-pm-block .clockpicker-button:focus, .datepicker.datepicker-dropdown .clockpicker-popover .clockpicker-am-pm-block .clockpicker-button:hover {
  color: #000000;
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.2);
}
.datepicker.datepicker-dropdown .clockpicker-popover .clockpicker-am-pm-block .clockpicker-button.currently-active {
  color: #FFFFFF;
  background: #113e60;
  border-color: #113e60;
}
.datepicker.datepicker-dropdown .clockpicker-popover .clockpicker-am-pm-block .clockpicker-button.currently-active::active, .datepicker.datepicker-dropdown .clockpicker-popover .clockpicker-am-pm-block .clockpicker-button.currently-active::focus, .datepicker.datepicker-dropdown .clockpicker-popover .clockpicker-am-pm-block .clockpicker-button.currently-active::hover {
  color: #FFFFFF;
  background: #113e60;
  border-color: #113e60;
}
.datepicker.datepicker-dropdown .clockpicker-popover .clockpicker-button-done {
  position: absolute;
  bottom: -78px;
  height: 45px;
  color: white;
  background: #113e60;
  border-radius: 0;
  border: none;
  font-size: 16px;
  width: calc(100% + 0px);
  margin-bottom: -1px;
  margin-left: -1px;
}

.date-container {
  position: relative;
  background: #FFFFFF;
  z-index: 0;
}
.date-container input[type=text] {
  background: transparent;
}
.date-container .glyphicon {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: -1;
}

.hidden-datepicker {
  height: 0;
  border: none;
  visibility: hidden;
  padding: 0;
}

.progress-bar {
  background: #113e60;
}
.progress-bar .sr-only {
  position: initial;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #113e60;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}
.tabs {
  position: absolute;
  bottom: 0;
  left: 240px;
  right: 0;
  height: 45px;
  width: calc(100% - 240px);
  background: #092235;
  color: #b5b3b3;
  text-align: center;
  z-index: 2;
}
.tabs .tab-button {
  display: inline-block;
  width: 32.7%;
  padding: 13px;
  cursor: pointer;
}
.tabs .tab-button.active {
  color: white;
  position: relative;
  background: #113e60;
}
.tabs .tab-button.active::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 5px;
  background: white;
}

@media screen and (max-width: 900px) {
  .tabs {
    left: 0;
    top: initial;
    width: 100%;
  }
}
.social {
  display: inline-flex;
  height: 50px;
  width: 50px;
  font-size: 30px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  color: white;
  margin: 5px;
  padding-left: 4px;
  padding-top: 3px;
}

/* Add a hover effect if you want */
.social:hover {
  opacity: 0.7;
  color: white;
}

/* Set a specific color for each brand */
/* Twitter */
.social-twitter {
  background: #55ACEE;
}

.social-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-telegram {
  background: #0088cc;
}

.social-youtube {
  background: #c4302b;
}

body {
  font-family: "Lato", sans-serif;
}

#__blaze-root {
  width: 100%;
  overflow: hidden;
}
#__blaze-root .app-wrapper {
  margin-top: 40px;
  margin-left: 240px;
  padding: 10px;
}
@media screen and (max-width: 900px) {
  #__blaze-root .app-wrapper {
    margin-left: 0;
  }
}

.coupon-code-input {
  width: calc(100% - 115px);
  display: inline-block;
  vertical-align: middle;
}

.coupon-code-button {
  width: 100px;
  padding: 5px;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
  background-color: white;
  border: 1px solid #113e60;
  color: #113e60;
}

#show-more-coupon {
  cursor: pointer;
  color: #113e60;
  text-decoration: underline;
}

.coupon-code {
  padding: 10px;
  margin: 10px;
  text-align: center;
  border: 1px dotted #113e60;
}
.coupon-code .code {
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
  border: 1px dotted white;
  background-color: #113e60;
  color: white;
}
.coupon-code .apply-button {
  background-color: white;
  border: 1px solid #113e60;
  padding: 5px;
  margin-top: 10px;
}
.coupon-code p {
  font-size: 12px;
  text-align: left;
  margin-top: 5px;
}

.m-b-10 {
  margin-bottom: 10px;
}

.snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 320px; /* Set a default minimum width */
  margin-left: -160px; /* Divide value of min-width by 2 */
  background-color: rgba(0, 0, 0, 0.89); /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 5px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 10000000; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 70px; /* 30px from the bottom */
  font-size: 12px;
  border-radius: 5px;
}
.snackbar.success {
  background-color: #48a047;
  color: #fff;
  box-shadow: 0 1px 0 rgba(12, 13, 14, 0.1), 0 1px 6px rgba(59, 64, 69, 0.1);
}
.snackbar.error {
  background-color: #ff5252;
  color: #fff;
  box-shadow: 0 1px 0 rgba(12, 13, 14, 0.1), 0 1px 6px rgba(59, 64, 69, 0.1);
  width: 320px;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
.snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar. 
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
.snackbar.show.error {
  -webkit-animation: fadein 0.5s, fadeout 0.5s 4.5s;
  animation: fadein 0.5s, fadeout 0.5s 4.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 70px;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 70px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    bottom: 70px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 70px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}