.city_index {
  width: 100%;
  float: left;
  position: relative;
  z-index: 0;
}
.project-tab {
  margin: 15px 0;
}
.city_index .project-tab nav {
  width: 75%;
  margin-bottom: 12px;
}
.project-tab .nav-link {
  max-width: 25%;
}
/** Filter Section **/
.cities_filter {
  width: 100%;
  position: relative;
  float: left;
}
ul.alphabet {
  border-top: 1px solid #DEDEDE;
  border-bottom: 1px solid #DEDEDE;
  float: left;
  margin: 22px 0;
}
ul.alphabet li {
  float: left;
  /* margin-right: 20px; */
  /* padding: 14px 0; */
  text-align: center;
}
.alphabet li a {
  cursor: pointer;
  font-family: 'poppinssemibold';
  font-size: 18px;
  text-align: center;
  padding: 14px 10px 14px 10px;
  float: left;
  transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
}
.alphabet li a:hover {
  color: #E31837 !important;
  font-family: 'poppinsbold';
  border-bottom: 4px solid #E31837;
  padding: 14px 10px 14px 10px;
  transition: all .2s ease-out;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
}
.alphabet li a.active_f {
  color: #E31837 !important;
  font-family: 'poppinsbold';
  border-bottom: 4px solid #E31837;
  padding: 14px 10px 14px 10px;
  transition: all .2s ease-out;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
}
ul.medical_dictionary li {
  float: none;
  display: block;
  margin-bottom: 30px;
}
/** City Section **/
.city_bx {
  width: 100%;
  min-height: 220px;
  border-radius: 8px;
  padding: 1.2rem;
  background: white;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  box-shadow: 0px 10px 14px rgba(90, 90, 90, 0.37);
  margin-bottom: 30px;
}
.city_bx span {
  color: #fff;
  font-size: 24px;
  z-index: 999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  transform: translate(-50%, 0%);
  left: 50%;
  font-family: 'poppinssemibold';
  letter-spacing: 0.6px;
  background-color: rgba(227, 24, 55, 0.95);
  width: 100%;
  text-align: center;
  padding: 10px 0;
  bottom: 30px;
}
.city_bx:hover span {
  opacity: 0;
  -webkit-transform: translateY(0, 0);
  transform: translateY(0, 0);
}
.city_bx:hover {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  box-shadow: none;
}
.city_bx:hover:before {
  opacity: 1;
}
.city_bx:hover .city_ovr {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.city_bx:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  z-index: 2;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(244, 244, 244, 0) 55%, rgba(244, 244, 244, 0) 100%);
}
.city_bx img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 8px;
}
.city_bx .city_ovr {
  position: absolute;
  z-index: 3;
  color: white;
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  bottom: 38px;
  width: 100%;
  left: 0;
}
.city_bx .city_ovr h3 {
  margin: 0px;
  color: #fff;
  font-size: 22px;
  padding-left: 18px;
  display: inline-block;
}
.city_bx .city_ovr h3:before {
  content: "";
  width: 28px;
  height: 5px;
  background-color: #e31837;
  float: right;
  position: relative;
  top: 11px;
  left: 10px;
}
.city_bx .city_ovr p {
  font-size: 11px;
  margin-top: 5px;
  color: #fff;
  padding-left: 18px;
}
.city_bx .city_ovr button {
  padding: .6rem .9em;
  outline: none;
  border: none;
  border-radius: 8px 0px 8px 0px;
  background: #e31837;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  right: 0;
  bottom: -38px;
  position: absolute;
}
.city_bx .city_ovr button:hover {
  background: dodgerblue;
  color: white;
}
.city_bx .city_ovr button .fa {
  color: #fff;
  font-size: 20px;
}
/** Location Address **/
.city_lct {
  width: 100%;
  float: left;
  position: relative;
  margin-bottom: 30px;
  margin-top: 20px;
}
.city_address {
  width: 100%;
  float: left;
  position: relative;
}
.filter_btns {
    width: 100%;
    float: left;
    margin-bottom: 38px;
}
.filter_btns button {
    background-color: #e6e9ec;
    border-radius: 4px;
    font-size: 14px;
    margin: 0.25em;
    color: #333541;
    cursor: pointer !important;
    outline: none !important;
    border: 1px solid #dfdfdf;
    padding: 10px;
}

.filter_btns button.is-active {
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    margin: 0 14px;
    box-shadow: 0px 1px 5px rgb(124 124 124 / 22%);
    background-color: #e31837;
    color: #fff;
    padding: 14px;
}
.lct_adrs {
    background-color: #f4f4f4;
    padding: 20px 20px;
    float: left;
    border: 1px solid #dedede;
    width: 48%;
    min-height: 280px;
    border-radius: 5px;
    margin: 8px;
    position: relative;
}
.lct_adrs h4 {
  color: #e31837;
  font-size: 22px;
  margin-bottom: 14px;
  font-family: 'poppinssemibold';
  word-break: break-all;
}
.lct_adrs p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 12px;
  font-family: 'poppinsmedium';
}
.lct_adrs p span {
  display: block;
  font-family: 'poppinsmedium';
  font-size: 15px;
  color: #949494;
  padding-bottom: 5px;
  text-indent: -0.8em;
}
.lct_adrs p span .fa {
  color: #e31837;
}
.lct_adrs .ukvi_list {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-right: 30px;
        margin-bottom: 15px;
}
.lct_adrs .test_type {
  font-size: 15px;
  font-family: 'poppinsregular';
  padding-top: 18px;
	    margin-bottom: 0;
}
.lct_adrs .test_centre {
  font-size: 16px;
  font-family: 'poppinsregular';
  line-height: 28px;
  margin-bottom: 0;
  padding-top: 18px;
}
.lct_adrs .test_centre img {
  width: 24px;
  vertical-align: middle;
  margin-right: 10px;
}
.lct_adrs .test_centre .fa {
  color: #333541;
  margin-right: 10px;
  font-size: 24px;
  vertical-align: middle;
}
.lct_adrs p a {
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.lct_adrs p a:hover {
  color: #e31837;
}
.lct_adrs p .fa {
  color: #e1143b;
  margin-right: 6px;
  font-size: 24px;
  vertical-align: middle;
}
.lct_adrs_nobg {
  padding: 20px 20px;
  float: left;
  width: 100%;
  height: 100%;
  border-right: 1px solid #dedede;
}
.lct_adrs_nobg h4 {
  color: #e31837;
  font-size: 20px;
  margin-bottom: 5px;
  font-family: 'poppinssemibold';
}
.lct_adrs_nobg p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 12px;
}
.lct_adrs_nobg p a {
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.lct_adrs_nobg p a:hover {
  color: #e31837;
}
.lct_adrs_nobg p .fa {
  color: #BCBCBC;
  margin-right: 6px;
}
.lct_adrs .col-sm-8.col-xs-12 {
  padding: 0;
}
.lct_adrs .col-sm-4.col-xs-12 {
  padding: 0;
}
.city_map {
  width: 100%;
  float: right;
  position: relative;
}
.city_map a {
  display: block;
}
.city_map img {
  width: 300px;
  border-radius: 8px;
}
.city_map iframe {
  height: 100px;
  max-height: 100%;
  width: 100px;
}
/** Nearest City **/
.nearest_cities {
  width: 100%;
  float: left;
  position: relative;
  margin-bottom: 30px;
}
.book_t {
  width: 100%;
  float: left;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.nearest_cities .book_t a {
  color: #fff;
  background: rgb(227, 24, 55);
  background: linear-gradient(122deg, rgba(227, 24, 55, 1) 28%, rgba(227, 62, 24, 1) 90%);
  border-radius: 4px;
  padding: 16px 18px;
  transition: all .4s ease;
}
.nearest_cities .book_t a:hover {
  background-color: #2D3941
}
.n_cities {
  width: 100%;
  float: left;
  position: relative;
}
.n_cities ul li {
  float: left;
  margin-right: 15px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.n_cities ul li a {
  background: #f4f4f4 !important;
  color: #555555;
  border-radius: 4px;
  padding: 14px 18px;
  min-width: 145px;
  display: inline-block;
  font-family: 'poppinsmedium';
  box-shadow: 0px 3px 4px rgba(58, 58, 58, 0.18);
  font-size: 14px;
  text-align: center;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  height: 42px;
  max-width: 200px;
}
.n_cities ul li a:hover {
  box-shadow: 6px 6px 0px #c5c5c5;
  padding: 12px 18px;
}
.clndr_sec {
  width: 100%;
  float: left;
  position: relative;
  margin-bottom: 25px;
}
/** Slot Avaiable Checkbox **/
.calendar-r {
  width: 100%;
  float: left;
  margin-top: 12px;
}
.calendar-r_PB {
  position: relative;
  min-height: 325px;
  max-height: 100%;
  height: 100%;
}
.availabe_slots {
  width: 100%;
  float: left;
  position: relative;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
}
.calendar_PB {
  width: 100%;
  float: left;
  position: relative;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
}
.book_slot ul {
  margin-top: 0;
}
.book_slot_PB ul {
  margin-top: 0;
  width: 100%;
  float: left;
}
.frb-group {
  padding: 0;
}
.frb ~ .frb {
  margin-top: 15px;
}
.frb input[type="radio"]:empty {
  display: none;
}
.frb-group .frb {
  border-bottom: 1px solid #e2e2e2;
}
.frb-group:last-child .frb {
  border-bottom: none;
}
.frb input[type="radio"] ~ label:before {
  font-family: FontAwesome;
  content: '\f0c8';
  position: absolute;
  top: 50%;
  margin-top: -11px;
  left: 15px;
  font-size: 22px;
  color: #2D3941;
}
.frb input[type="radio"]:checked ~ label:before {
  content: '\f14a';
  color: #d71e3a;
}
.frb input[type="radio"] ~ label {
  position: relative;
  cursor: pointer;
  width: 100%;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}
.frb input[type="radio"] ~ label:focus, .frb input[type="radio"] ~ label:hover {
  box-shadow: 0px 1px 5px rgba(220, 220, 220, 0.70);
  border-radius: 5px;
}
.frb input[type="radio"]:checked ~ label {
  color: #fafafa;
}
.frb input[type="radio"]:checked ~ label {
  border-radius: 5px 5px 0 0;
  box-shadow: none;
  background-color: #f4f4f4;
}
.frb input[type="radio"]:checked:nth-child(1) ~ label {
  border-radius: 5px 5px 0 0;
}
.frb input[type="radio"]:checked:nth-child(2) ~ label {
  border-radius: 0 0 0 0;
}
.frb input[type="radio"]:checked:nth-child(3) ~ label {
  border-radius: 0 0 5px 5px;
}
.frb.frb-default input[type="radio"]:checked ~ label {
  color: #333;
}
.frb input[type="radio"]:empty ~ label ul {
  display: inline-block;
}
.frb input[type="radio"]:empty ~ label ul.frb-description {
  color: #999;
  font-size: 14px;
  margin: 0px 0px 0px 80px;
  margin-top: 0;
  padding-bottom: 0;
  padding: 0;
}
.calendar_PB .frb input[type="radio"]:empty ~ label ul.frb-description {
  color: #999;
  font-size: 14px;
  margin: 0px 0px 0px 60px;
  margin-top: 0;
  padding-bottom: 0;
  padding: 0;
}
.frb input[type="radio"]:empty:checked ~ label ul.frb-description {
  color: #fafafa;
}
.frb.frb-default input[type="radio"]:empty:checked ~ label ul.frb-description {
  color: #999;
}
.frb-description li {
  float: left;
  padding: 25px 0;
  margin: 0 25px;
  font-size: 14px;
}
.frb-description li:nth-child(2) {
  width: 155px;
  position: relative;
}
.calendar_PB .frb-description li {
  float: left;
  padding: 25px 0;
  margin: 0 18px 0 18px;
  font-size: 13px;
}
.frb-description li:last-child {
  color: #19a011;
  font-family: 'poppinsmedium';
}
.book_slot {
  width: 100%;
  float: left;
  position: relative;
  box-shadow: 0px 2px 10px #d6d6d680;
  border-radius: 5px;
  padding: 22px 12px;
  margin-top: 0;
  top: 25px;
  border: 1px solid #e31837;
}
.book_slot_PB {
  width: 100%;
  float: left;
  position: relative;
  box-shadow: 0px 2px 10px #d6d6d680;
  border-radius: 5px;
  padding: 22px 12px;
  margin-top: 25px;
  bottom: 0;
  border: 1px solid #e31837;
  margin-bottom: 20px;
}
.book_slot ul li {
  float: left;
  padding-right: 14px;
  border-right: 1px solid #dedede;
  margin-right: 12px;
}
.book_slot_PB ul li {
  float: left;
  padding-right: 8px;
  border-right: 1px solid #dedede;
  margin-right: 8px;
}
.book_slot_PB ul li:last-child {
  float: left;
  padding-right: 0;
  border-right: 1px solid #dedede;
  margin-right: 0;
}
.book_slot ul li:last-child {
  border-right: none;
}
.book_slot ul li span {
  color: #e31837;
  font-size: 12px;
  font-family: 'poppinssemibold';
}
.book_slot ul li p {
  padding-top: 5px;
  color: #555;
  font-size: 14px;
}
.book_slot_PB ul li p {
  padding-top: 5px;
  color: #555;
  font-size: 13px;
}
.book_slot button {
  border: none;
  background-color: #e31837;
  color: #fff;
  border-radius: 4px;
  padding: 14px 16px;
  position: absolute;
  right: -55px;
  top: 18px;
  font-size: 14px;
}
.book_slot_PB button {
  border: none;
  background-color: #e31837;
  color: #fff;
  border-radius: 4px;
  padding: 14px 16px;
  position: absolute;
  left: 10px;
  top: 0;
  font-size: 14px;
  right: 0;
}
.book_slot button .fa {
  color: #ffffff;
  margin-left: 7px;
}
.test_dates_color_PB ul {
  padding-bottom: 0;
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.test_dates_color_PB li {
  margin-bottom: 0;
  margin: 0 12px;
  text-align: center;
}
.city_clndr {
  margin: 12px auto;
  max-width: 640px;
}
.city_clndr_PB {
  margin: 12px 25px;
  max-width: 640px;
  float: left;
  min-height: 480px;
}
.city_clndr_PB div {}
.city_clndr_PB div h3 {
  font-size: 22px;
  font-family: 'poppinssemibold';
  margin-bottom: 15px;
  display: block;
}
.city_clndr_PB div img {
  width: 20px;
  margin-left: 8px;
  cursor: pointer;
}
.city_clndr_PB i {
  font-size: 14px;
  padding: 0;
  color: #e31837;
  border-radius: 2px;
  display: block;
  padding-top: 2px;
  font-family: 'poppinsmedium';
}
.city_clndr_PB [id^=calendar], .city_clndr_PB [id^=calendar] + h3 {
  width: 400px;
  float: left;
}
.city_clndr_PB [id^=datepickercd], .city_clndr_PB [id^=datepickercd] + h3 {
  width: 400px;
  float: left;
}
[id^=calendar] + h3 {
  text-align: center;
}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
  cursor: pointer;
  outline: none;
}
.test_dates_color {
  float: left;
  padding: 14px 10px;
  margin-top: 12px;
  border-radius: 4px;
  width: 100%;
  border: 1px solid #e2e2e2;
}
.test_dates_color_PB {
  float: left;
  padding: 14px 10px;
  margin-top: 30px;
  border-radius: 4px;
  width: 40%;
  border: 1px solid #e2e2e2;
  margin-bottom: 20px;
}
.date_color_red {
  background-color: #3f4042;
  width: 100%;
  height: 32px;
  display: inline-block;
  border-radius: 4px;
}
.date_color_grey {
  background-color: #3f4042;
  width: 100%;
  height: 32px;
  display: inline-block;
  border-radius: 4px;
}
.test_dates_color_PB .date_color_grey {
  width: 60px;
}
.date_color_lGrey {
  background-color: #f4f4f4;
  width: 100%;
  height: 32px;
  display: inline-block;
  border-radius: 4px;
}
.test_dates_color_PB .date_color_lGrey {
  width: 60px;
}
.date_color_lRed {
  background-color: rgba(175, 18, 42, .55);
  width: 100%;
  height: 32px;
  display: inline-block;
  border-radius: 4px;
}
.test_dates_color_PB .date_color_lRed {
  width: 60px;
}
.date_color_red {
  background-color: #21bf17;
  width: 100%;
  height: 32px;
  display: inline-block;
  border-radius: 4px;
}
.test_dates_color_PB .date_color_red {
  width: 60px;
}
.test_dates_color span {
  display: inline-block;
  font-size: 12px;
  text-align: center;
  width: 100%;
}
.test_dates_color_PB span {
  display: block;
  font-size: 12px;
  text-align: center;
  width: auto;
}
#calTbody .a-date.blurred {
  opacity: .5;
  pointer-events: none;
  background-color: #f4f4f4;
  margin: 0 0px;
  border: 1px solid #e6e6e6;
}
.appointmentslotfinalcd {
  position: absolute;
  bottom: 0;
  float: left;
  width: 100%;
}
.appointmentslotfinal {
  position: absolute;
  bottom: 0;
  float: left;
  width: 100%;
}
.test_base_active {
  background-color: rgba(230, 230, 230, .34);
  border-radius: 8px;
  padding: 10px 20px 45px 20px;
  border: 1px solid #e6e6e6;
}
.test_base_unactive {
  border-radius: 8px;
  padding: 10px 20px 45px 20px;
  border: 1px solid #e6e6e6;
}
div#divcal1.col-sm-6 {
  padding-top: 20px;
}
div#divcal2.col-sm-6 {
  padding-top: 20px;
}
.popover {
  border: 1px solid rgba(224, 224, 224, 0.80);
}
.popover-header {
  padding: .7rem .75rem;
  margin-bottom: 0;
  font-size: 1rem;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(.3rem - 1px);
  border-top-right-radius: calc(.3rem - 1px);
  background: rgb(227, 24, 55);
  background: linear-gradient(122deg, rgba(227, 24, 55, 1) 28%, rgba(227, 62, 24, 1) 90%);
  color: #fff;
  font-family: 'poppinsmedium';
}
.popover-body p {
  padding: 7px 0;
  font-size: 13px;
  border-bottom: 1px solid #eeeeee;
}
.popover-body p:first-child {
  padding-top: 2px;
}
.popover-body p:last-child {
  border-bottom: none;
}
.popover-body p .fa {
  font-size: 12px;
  margin-right: 2px;
  color: #E31837;
}
.popover .arrow::after, .popover .arrow::before {
  position: absolute;
  display: block;
  content: "";
  border-style: solid;
  transform: none;
  background-color: transparent;
}
.pb_test_dates {
  width: 90%;
  float: left;
  position: relative;
  margin: 15px 0;
  box-shadow: 0px 4px 16px rgb(154 154 154 / 14%);
  background-color: #fff;
  border: 1px solid #eee;
  padding: 15px 0;
  border-radius: 5px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  margin-left: 0;
}
.pb_test_dates:hover {
  margin-left: 15px;
}
.pb_test_dates ul {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}
.pb_test_dates ul li {
  float: left;
  margin: 0 10px;
  border-right: 1px solid #dedede;
  padding: 8px 35px;
  display: block;
  z-index: 999;
  position: relative;
  width: 23%;
}
.pb_test_dates ul li:last-child {
  border-right: none;
  margin: 0px;
  padding: 2px 35px;
  position: absolute;
  right: 0;
  width: 25%;
}
.pb_overly_slide {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(227, 24, 55);
  background: linear-gradient(122deg, rgba(227, 24, 55, 1) 28%, rgba(227, 62, 24, 1) 90%);
  width: 12px;
  transition: .6s ease;
  -webkit-transition: .6s ease;
  -moz-transition: .6s ease;
  -ms-transition: .6s ease;
  overflow: hidden;
  height: 100%;
  z-index: 0;
  border-radius: 5px 0 0 5px;
}
.pb_test_dates ul li span {
  font-family: 'poppinsmedium';
  color: #878787;
  display: block;
  font-size: 14px;
  padding-bottom: 10px;
}
.pb_test_dates ul li p {
  display: block;
  font-family: 'poppinsmedium';
  font-size: 18px;
}
.pb_test_dates ul li:last-child p {
  display: inline-block;
}
.pb_test_dates ul li a {
  background: #e31837;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: relative;
  display: inline-block;
  margin-left: 35px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}
.pb_test_dates:hover ul li a {
  background: #2d3941;
}
.pb_test_dates ul li .fa {
  font-size: 30px;
  padding: 8px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.city_index .notifications {
  background: #2D3941;
  background: linear-gradient(122deg, #2D3941 28%, #252e34 90%);
  margin-top: 40px;
}
.city_index .notify h1 {
  font-size: 6.8em;
  font-family: poppinsbold;
  color: rgba(24, 30, 33, .71);
}
.city_index .notify i.fa {
  color: #e31837;
  display: block;
  font-size: 24px;
}
.update_city {
  width: 100%;
  float: left;
  position: relative;
  margin-top: 60px;
  margin-bottom: 40px;
}
.update_city_img {
  width: 100%;
  position: relative;
  float: left;
  height: 185px;
}
.update_city_img img {
  width: 100%;
  float: left;
  height: 100%;
  object-fit: cover;
}
.update_city_text {
  background-color: #2d3941;
  display: block;
  padding: 22px;
  height: 185px;
  float: left;
}
.update_city_text h4 {
  font-size: 20px;
  font-family: poppinsmedium;
  margin-bottom: 6px;
  color: #fff;
}
.update_city_text p {
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 20px;
  color: #fff;
  padding-top: 8px;
}
.update_city_video .m-video__thumbnail {
  margin: 0;
  padding-bottom: 66.7%;
}
.update_city_video .m-video__thumbnail img {
  border-radius: 0;
}
.update_city_text_orange {
  display: block;
  padding: 22px;
  height: 185px;
  float: left;
  background: #e31837;
  background: linear-gradient(122deg, #e31837 28%, #e33e18 90%);
}
.update_city_text_orange h4 {
  font-size: 20px;
  font-family: poppinsmedium;
  margin-bottom: 6px;
  color: #fff;
}
.update_city_text_orange p {
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 20px;
  color: #fff;
  padding-top: 8px;
}
.about_city {
  width: 100%;
  position: relative;
  float: left;
  margin-top: 20px;
}
.about_c {
  display: block;
  background-color: #000;
  background: #2D3941;
  background: linear-gradient(122deg, #2D3941 28%, #252e34 90%);
  padding: 30px;
  float: left;
}
.about_c h3 {
  font-size: 22px;
  font-family: poppinssemibold;
  margin-bottom: 6px;
  color: #fff;
}
.about_c p {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  margin-top: 18px;
}
.about_c h3 span {
  color: #e31837;
  font-family: 'poppinsbold';
  font-size: 24px;
  margin: 0;
  display: inline-block;
}
.about_city .m-video__thumbnail {
  margin: 0;
  height: 100%;
}
.about_city .m-video__thumbnail img {
  border-radius: 0;
}
.about_city .m-video__vid {
  margin: 0;
  height: 100%;
  padding: 0;
}
/**City Address Tab**/
.tab-slider--nav {
  width: 100%;
  float: left;
  margin: 30px 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tab-slider--tabs {
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  border-radius: 35px;
  background: #fff;
  height: 50px;
  border: 1px solid #c3c3c3;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.tab-slider--tabs:after {
  content: "";
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 35px;
  background: #e31837;
  background: linear-gradient(122deg, #e31837 28%, #e33e18 90%);
  height: 52px;
  border-radius: 35px;
  margin-top: -2px;
  box-shadow: 0px 2px 16px rgb(68 68 68 / 31%);
}
.tab-slider--tabs.slide:after {
  left: 50%;
}
.tab-slider--trigger {
  font-size: 16px;
  text-align: center;
  padding: 16px 20px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  display: inline-block;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.tab-slider--trigger.active {
  color: #fff;
}
.imp_cnt {
  width: 100%;
  text-align: center;
  margin-top: 25px;
}
.imp_cnt p {
  border-radius: 3px;
  background-color: #e31837;
  padding: 8px 15px;
  color: #fff;
  font-size: 14px;
  display: inline-block;
}
.lrw_txt {
  margin-top: 50px;
  text-align: left;
  float: left;
}
.lrw_txt p {}
/* iPads ----------- */
@media only screen and (min-width : 768px) and (max-width : 1024px) {}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
  .frb input[type="radio"]:empty ~ label ul.frb-description {
    margin: 0px 0px 0px 75px;
  }
  .frb-description li {
    padding: 25px 0;
    margin: 0 20px;
  }
  [id^=calendar], [id^=calendar] + h3 {
    width: 375px;
  }
  .book_slot ul li {
    font-size: 14px;
    margin-right: 14px;
  }
  .book_slot ul li p {
    font-size: 13px;
  }
  .book_slot button {
    padding: 14px 12px;
    right: -35px;
    top: 20px;
    font-size: 13px;
  }
  .test_dates_color {
    width: 96%;
  }
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
  .frb-description li {
    padding: 8px 0 !important;
    margin: 0 5px !important;
  }
  .book_slot {
    box-shadow: none;
    padding: 0;
    margin-top: 20px;
    text-align: center;
    top: 0;
    border: none;
  }
  .book_slot button {
    padding: 14px 25px;
    position: relative;
    right: 0;
    top: 0;
    font-size: 16px;
  }
  .calendar-r {
    margin-top: 15px;
    margin-left: 12px;
  }
  .test_dates_color {
    width: 100%;
    margin-bottom: 30px;
  }
}
/* Small devices (phones, 600px and down) */
@media only screen and (max-width: 576px) {
  .n_cities ul {
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .n_cities ul li {
    margin-right: 0;
  }
  .n_cities ul li a {
    background: #f4f4f4 !important;
    color: #555555;
    border-radius: 4px;
    padding: 14px 18px;
    min-width: 145px;
    display: inline-block;
    font-family: 'poppinsmedium';
    box-shadow: 0px 3px 4px rgba(58, 58, 58, 0.18);
    font-size: 14px;
    text-align: center;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    height: 42px;
    max-width: 200px;
  }
  .city_index .col-sm-9.col-xs {
    padding: 0;
  }
  .r_s_bar {
    margin-top: 30px;
  }
  .city_index .col-sm-3.col-xs {
    padding: 0;
  }
  .table-section {
    width: 100%;
    float: left;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    margin-bottom: 20px;
  }
  .table-section .col-sm-6.col-xs {
    padding: 0;
  }
  .table-section .table tr th {
    font-size: 13px;
  }
  .table-section .table td a {
    font-size: 12px;
    padding: 5px 7px;
  }
  .availabe_slots {
    width: 100%;
  }
  .frb-description li {
    padding: 8px 0;
    font-size: 13px;
    padding-left: 12px;
    margin: 0;
  }
  .calendar_PB .frb-description li {
    padding: 8px 0;
    margin: 0;
    padding-left: 12px;
  }
  .frb input[type="radio"]:empty ~ label ul.frb-description {
    margin: 0px 0px 0px 60px;
  }
  .clndr_sec .col-sm-7.col-xs-12.float-left {
    padding: 0;
  }
  .book_slot {
    box-shadow: none;
    padding: 0;
    margin-top: 20px;
    text-align: center;
    top: 0;
    border: none;
  }
  .book_slot button {
    padding: 14px 25px;
    position: relative;
    right: 0;
    top: 0;
    font-size: 16px;
  }
  .book_slot_PB button {
    left: 0;
  }
  .clndr_sec .col-sm-5.col-xs-12.float-left {
    padding: 0;
  }
  [id^=calendar], [id^=calendar] + h3 {
    width: 100% !important;
  }
  [id^=hasDatepicker], [id^=hasDatepicker] + h3 {
    width: 100% !important;
  }
  [id^=datepickercd], [id^=datepickercd] + h3 {
    width: 100% !important;
  }
  .datepickercd [id^=calendar], .datepickercd [id^=calendar] + h3 {
    width: 100% !important;
  }
  .datepickercd [id^=hasDatepicker], .datepickercd [id^=hasDatepicker] + h3 {
    width: 100% !important;
  }
  .datepickercd [id^=datepickercd], .datepickercd [id^=datepickercd] + h3 {
    width: 100% !important;
  }
  .city_clndr_PB #calTbody .a-date {
    padding: .9em !important;
  }
  #calTbody .a-date {
    padding: .6em !important;
  }
  #calTbody .a-date.event:before {
    width: .2em;
    height: .2em;
  }
  .city_clndr_PB button.a-date.current span {
    top: 0px;
  }
  button.a-date.current span {
    top: 3px;
    position: relative;
  }
  div#monthYear {
    font-size: 28px !important;
  }
  .test_dates_color {
    width: 100%;
  }
  .test_dates_color_PB {
    margin-top: 20px;
  }
  .city_table tr td {
    white-space: normal !important;
    word-break: normal !important;
    padding: 1rem 0.2rem !important;
  }
  .city_table tr td a {
    font-size: 11px !important;
  }
  .city_table tr th {
    white-space: normal !important;
  }
  .city_table td a {
    text-align: center;
  }
  .city_map {
    width: 100%;
    float: left;
    position: relative;
  }
  .city_clndr_PB {
    margin: 0;
    min-height: 0;
  }
  div#divcal2.col-sm-6 {
    margin-top: 20px;
  }
  .test_dates_color_PB li {
    margin: 0;
    padding: 0 5px;
    width: auto;
  }
  .test_dates_color_PB .date_color_grey {
    width: 55px;
  }
  .test_dates_color_PB .date_color_lGrey {
    width: 55px;
  }
  .test_dates_color_PB .date_color_lRed {
    width: 55px;
  }
  .test_dates_color_PB .date_color_red {
    width: 55px;
  }
  .calendar-r_PB {
    min-height: 200px;
  }
  .calendar-r {
    margin-top: 20px;
  }
  .appointmentslotfinal {
    position: relative;
    width: 100%;
  }
  .appointmentslotfinalcd {
    position: relative;
    width: 100%;
  }
  ul.alphabet li {
    height: 50px;
  }
  .pb_test_dates {
    width: 100%;
    padding: 5px 0;
  }
  .pb_test_dates ul li {
    padding: 8px 12px 8px 24px;
    display: inline-block;
    position: relative;
    width: auto;
    margin: 0;
    border-right: none;
  }
  .pb_test_dates ul li:last-child {
    border-right: none;
    margin: 0px;
    padding: 15px 24px;
    position: relative;
    right: 0;
    width: 100%;
    display: flex;
  }
  .pb_test_dates ul li p {
    font-size: 15px;
  }
  .pb_test_dates ul li span {
    font-size: 13px;
    padding-bottom: 6px;
  }
  .pb_test_dates ul li a {
    width: 35px;
    height: 35px;
    margin-left: 10px;
    display: block;
    right: 8px;
    position: absolute;
    bottom: 2px;
  }
  .pb_test_dates ul li .fa {
    font-size: 24px;
    padding: 4px;
  }
  .pb_test_dates ul li:last-child p {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .update_city_text_blue {
    background-color: #2d3941 !important;
    background: none;
  }
  .city_map img {
    width: 100%;
  }
    .lct_adrs {
        width: 100%;
        min-height: 330px;
        margin: 10px 0;
    }
    .lct_adrs .ukvi_list {
    position: absolute;
    bottom: 0;
    width: auto;
    padding-right: 0;
    margin-bottom: 15px;
}
    .filter_btns button {
        width: 100%;
    }
    .filter_btns button.is-active {
        -moz-transform: none;
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
        margin: 15px 0px;
        box-shadow: 0px 1px 5px rgb(124 124 124 / 22%);
        background-color: #e31837;
        color: #fff;
        padding: 14px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
/* Extra small devices (phones, 400px and down) */
@media only screen and (max-width: 360px) {
  .table-section {
    width: 100%;
    float: left;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    margin-bottom: 20px;
  }
  .table-section .col-sm-6.col-xs {
    padding: 0;
  }
  .table-section .table tr th {
    font-size: 11px;
  }
  .table-section .table td a {
    font-size: 11px;
    padding: 5px 7px;
  }
  .n_cities ul li a {
    min-width: 130px;
    font-size: 13px;
    max-width: 200px;
  }
}