/*color classes*/
.text-dark {
  color: #1b1e27 !important;
}

.text-light {
  color: #cecece !important;
}

.bg-dark {
  background-color: #1b1e27 !important;
}

/*Custom Fonts*/
.NBCTinker-Light {
  font-family: NBCTinker-Light
}

.NBCTinker-Medium {
  font-family: NBCTinker-Medium
}

.NBCTinker-Bold {
  font-family: NBCTinker-Bold
}

.NBCTinker-Regular {
  font-family: NBCTinker-Regular
}

/* Button */
.btn {
  padding: 20px 45px;
  border-radius: 28px;
  height: 56px;
  line-height: 1;
  border: 0;
}

.btn-primary {
  background-color: #cecece;
  color: #242531;
  font-family: NBCTinker-Bold
}

.btn-dark {
  color: #fff;
  font-family: NBCTinker-Bold;
  background-color: #2b2e38;
}

.btn-dark:hover {
  background-color: #707070;
}

.btn-primary:hover {
  color: #2b2e38;
  background-color: #a5a5a5;
}

.btn-primary.focus,
.btn-primary:focus,
.btn-primary.active,
.btn-primary.active.focus,
.btn-primary.active:focus {
  background-color: #cecece;
  color: #242531;
}

.btn-outline-primary {
  border-color: #6c757d;
  border: solid 3px #707070;
  color: #bababa;
  background-color: transparent;
  font-family: NBCTinker-Medium;
}

.btn-outline-dark {
  color: #707070;
  font-family: NBCTinker-Bold;
  background-color: transparent;
  border: solid 2px #707070;
}

.btn-outline-dark:hover {
  background-color: #707070;
  border: solid 2px #707070;
}

.btn-outline-primary:hover,
.btn-outline-primary.focus,
.btn-outline-primary:focus,
.btn-outline-primary.active,
.btn-outline-primaryactive,
.btn-outline-primary.active.focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.active:hover,
.btn-outline-primary:active.focus,
.btn-outline-primary:active:focus,
.btn-outline-primary:active:hover {
  color: #bababa;
  background-color: #0d0e11;
}

.btn-tertiary {
  color: #fff;
  border: none;
  font-size: 1.125rem;
  font-family: NBCTinker-Bold;
}

.btn-tertiary:hover {
  color: #fff;
}

.btn-tertiary::after {
  content: url(../icons/icn-arrow-right.svg);
  height: 15px;
  padding-left: 25px;
}

/* custome scrollbar */
.custom-scrollbar {
  overflow: auto;
  padding-bottom: 65px;
  -webkit-overflow-scrolling: touch;

}

/* height */
.custom-scrollbar::-webkit-scrollbar {
  height: .5rem;
  width: 6px;
  -webkit-appearance: none;
}

/* Track */
.custom-scrollbar::-webkit-scrollbar-track {
  box-shadow: inset 3px 3px 1px 0 #000;
  border-radius: 10px;
  background-color: #0d0e11;
}

/* Handle */
.custom-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.64);
  background-color: #707070;
}

/* Handle on hover */
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #858484;
}


.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* firefox */
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #707070 #0d0e11;
}

video[poster] {
  width: 100%;
  object-fit: cover;
}

/* Form control */
.form-label {
  font-size: 1rem;
  color: #22242c;
  line-height: 1.44;
  font-family: NBCTinker-Regular;
}

.form-control,
.form-date,
.form-time {
  border-radius: 10px;
  background-color: #f9f9fb;
  padding: 1.1875rem .75rem;
  border: none;
  margin-bottom: 0.5rem;
}

.form-check-label {
  font-size: 0.75rem;
  color: #0d0e11;
}

.form-control:focus,
.form-check-input:focus,
.btn:focus {
  box-shadow: inset 0 0 0 0.15rem #409ce7;
}

/* hamburger menu */
.hmbr-icn-anmt {
  width: 30px;
  height: 17px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  display: inline-flex;
}

.hmbr-icn-anmt span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.hmbr-icn-anmt span {
  background: #fff;
}

.hmbr-icn-anmt span:nth-child(1) {
  top: 0px;
}

.hmbr-icn-anmt span:nth-child(2),
.hmbr-icn-anmt span:nth-child(3) {
  top: 10px;
}

.hmbr-icn-anmt span:nth-child(4) {
  top: 20px;
}

.hmbr-icn-anmt.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.hmbr-icn-anmt.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hmbr-icn-anmt.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hmbr-icn-anmt.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}

/** Custom Select **/
.custom-select-wrapper {
  position: relative;
  display: inline-block;
  user-select: none;
}

.custom-select-wrapper select {
  display: none;
}

.custom-select {
  position: relative;
  display: inline-block;
}

.custom-select-trigger {
  position: relative;
  display: block;
  width: 250px;
  padding-left: 20px;
  color: #2b2e38;
  line-height: 65px;
  background: #fff;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  cursor: pointer;
  height: 64px;
  border: solid 1px #cecece;
  font-family: NBCTinker-Medium;
  font-size: 1.25rem;
  border-left-width: 2px;
  overflow: hidden;
  margin-top: -1px;
}

.custom-select-trigger:focus-visible {
  outline: none;
}

.custom-select-trigger:after {
  position: absolute;
  display: block;
  content: '';
  width: 14px;
  height: 14px;
  top: 50%;
  right: 30px;
  margin-top: -3px;
  border-bottom: 2px solid #707070;
  border-right: 2px solid #707070;
  transform: rotate(45deg) translateY(-50%);
  transition: all .4s ease-in-out;
  transform-origin: 50% 0;
}

.custom-select.opened .custom-select-trigger:after {
  margin-top: 3px;
  transform: rotate(-135deg) translateY(-50%);
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 100%;
  margin: 15px 0;
  border: 1px solid #b5b5b5;
  border-radius: 10px;
  padding: 40px 30px 10px 30px;
  background: #fff;
  transition: all .4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
}

.custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.option-hover:before {
  background: #f9f9f9;
}

.custom-option {
  position: relative;
  display: block;
  font-size: 20px;
  color: #2b2e38;
  padding-bottom: 25px;
  cursor: pointer;
  transition: all .4s ease-in-out;
  font-family: 'NBCTinker-Medium';
}

.custom-option:hover,
.custom-option.selection {
  color: #1876c3;
}

h3.popover-header {
  background-color: transparent;
  border-bottom: transparent;
  text-align: right;
  padding: 0px;
}

h3.popover-header .close {
  float: right;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

/* Invalid Message */
.form-control.is-invalid,
.was-validated .form-control:invalid {
  border: 1px solid #e1161b;
  background-image: none;
}

.invalid-feedback.success {
  color: green;
}

.invalid-feedback.success .icon-error {
  background: url(../icons/icn-warning-green.svg) no-repeat center center;
}

.invalid-feedback {
  color: #e1161b;
  font-size: 0.875rem;
}

.icon-error {
  background: url(../icons/icn-warning.svg) no-repeat center center;
  display: inline-flex;
  width: 20px;
  height: 20px;
  background-size: 100%;
  vertical-align: bottom;
  margin-right: 5px;
}

.removeError,
.form-header-error {
  color: #e1161b;
  display: block;
}

/* breadcrumb */
.breadcrumb-item.active,
.breadcrumb-item+.breadcrumb-item::before {
  color: #292929;
}

@media (max-width: 767px) {
  .invalid-feedback {
    font-size: 0.75rem;
  }

}