
body {
  background-color: #f6f7f9;
  font-family: "poppins", sans-serif;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h2 {
  color: #000;
  font-weight: 600;
}

h4 {
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 2;
}

h5 {
  color: #626262;
  font-size: 14px;
  font-weight: 500;
}

a {
  letter-spacing: 2px;
  text-decoration: none;
  color: #3d3d3d;
}

a:hover {
  color: #535353;
}

ul {
  letter-spacing: 1px;
}

li {
  color: #626262;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 30px;
  text-transform: capitalize;
}

p {
  color: #505050;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 2;
  margin-bottom: 20px;
}

span {
  letter-spacing: 1px;
}

.container-full {
  padding-left: 0;
  padding-right: 0;
}
.text-small{
  font-size: 12px;
  letter-spacing: 0 !important;
}
.btn {
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 35px;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out 0s;
}

.btn-default:hover {
  color: #fff;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.fa {
  text-decoration: none;
  font-size: 13px;
}

.red{
  color: red;
}
.blue{
  color: rgb(0, 68, 255);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #4d4d4d;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #080808;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  z-index: 997;
  transition: all 0.5s ease;
  padding: 10px 0;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

#header.header-scrolled {
  background: #fff;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

/*--------------------------------------------------------------
# Navbar Menu Bar
--------------------------------------------------------------*/

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #222;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0;
}

.navbar a i,
.navbar a:focus i {
  font-size: 20px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #000;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  right: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 0px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
  border-bottom: 1px solid #ccc;
}
.navbar .dropdown ul li :last-child{
  border-bottom: none;
}


.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #000;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(34, 34, 34, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #000000;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #000000;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


.search-box{
  margin: 0 10px 0 20px;
  width: fit-content;
  height: fit-content;
  position: relative;
}
.input-search{
  height: 35px;
  width: 35px;
  border-style: none;
  padding: 0px;
  font-size: 16px;
  letter-spacing: 0px;
  outline: none;
  border-radius: 25px;
  transition: all .5s ease-in-out;
  background-color: #000000;
  padding-right: 35px;
}
.input-search i{
  color:#fff;
}
.input-search::placeholder {
  color:#232a31;
  font-size: 15px;
  letter-spacing: 0px;
  font-weight: 100;
}
.btn-search{
  width: 35px;
  height: 35px;
  border-style: none;
  font-size: 15px;
  font-weight: bold;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  right: 0px;
  color:#a4a4a4;
  background-color:transparent;
  pointer-events: painted;  
}
.btn-search:focus ~ .input-search{
  width: 300px;
  border-radius: 0px;
  color:#ffffff ;
  background-color: transparent;
  border-bottom:1px solid rgb(143, 143, 143);
  transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}
.input-search:focus{
  width: 300px;
  color:#000 ;
  border-radius: 0px;
  background-color: transparent;
  border-bottom:1px solid rgba(255,255,255,.5);
  transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}




/* -------------------------------------------------------------- */
/* -----------Main Section ------------*/

#main {
  background: url(../img/header-bg.jpg) top right no-repeat;
  /* background-size: 100%; */
  position: relative;
  margin-top: 130px;
}

#main .main-container {
  padding-top: 40px;
  text-align: center;
}

#main .btn-report {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 10px;
  border: 2px solid #1b1b1b;
  background: #000000;
  color: #fff;
  text-decoration: none;
}

#main .main-container .btn-report:hover {
  background: #353535;
  color: #fff;
}


.form-select:focus{
	background-color: #080808;
  border-color: #000000;
  outline: 0;
  color: #fff;

}


section {
  overflow: hidden;
}

.padd-section {
  padding-bottom: 80px;
  padding-top: 50px;
}

@media (max-width: 992px) {
  .padd-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-title {
  margin-bottom: 80px;
}
.section-title h1 {
  margin: 0 0 10px 0;
  font-size: 30px;
  font-weight: 700;
  margin-top: 20px;
  font-family: "poppins", sans-serif;
  color: #000000;
}

@media (max-width: 768px) {
  .section-title h1 {
    font-size: 30px;
    line-height: 36px;
  }
}

@media (max-width: 992px) {
  .section-title {
    margin-bottom: 40px;
  }
}

.section-title h2 {
  color: #777;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .section-title h2 h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#payment-methods{
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

#payment-methods .left-area2{
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

#payment-methods .nav-pills2 .nav-link2:first-child {
  border-top-left-radius: 15px;
}
#payment-methods .nav-pills2 .nav-link2:last-child {
  border-bottom-left-radius: 15px;
}
#payment-methods .nav-pills2 .nav-link2 {
  color: #000000;
  background: #dddddd;
  font-size: 16px;
  letter-spacing: 0;
  padding: 20px 13px 10px 13px;
  text-align: left;
  border: none;
  border-bottom: 1px solid #a0a0a0;
  border-left: 1px solid #a0a0a0;
}
#payment-methods .nav-pills2 .nav-link2:last-child {
  border-bottom: none;
}
#payment-methods .nav-pills2 .nav-link2.active {
  background-color: #f7f7f7;
  border-left: 1px solid #a0a0a0;
}

.pay-type img {
  float: left;
  position: absolute;
}
.pay-type i {
  font-size: 25px;
  float: left;
  position: absolute;
  margin-top: -9px;
}
.pay-type h4 {
  font-size: 14px;
  margin-left: 50px;
  font-weight: bold;
  margin-bottom: 9px;
  line-height: 13px;
  letter-spacing: 1px;
}
.pay-type p {
  font-size: 12px;
  color: #000;
  line-height: 16px;
  margin-left: 50px;
  margin-bottom: 5px;
}

.accordion-button:not(.collapsed){
  background-color: #cbcdcf;
  color: #000;
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-icon);
}


#calendar .card{
  border-radius:15px ;
  padding: 0 12px;
}
#calendar .card-shadow{
  box-shadow: -1px 0px 31px -2px rgba(72,91,138,0.5);
-webkit-box-shadow: -1px 0px 31px -2px rgba(72,91,138,0.5);
-moz-box-shadow: -1px 0px 31px -2px rgba(72,91,138,0.5);
}

.left-area{
  background: #232a31;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.left-area .year-top{
  padding: 30px;
  text-align: center;
  font-size: 44px;
  color: #fff;
  font-weight: 700;
}

.nav-pills {
  --bs-nav-pills-border-radius: 0rem;
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #000000;
}
.nav-link{
  color: #000;
  text-align: left;
}
.nav-link:hover{
  color: #545455;
}

.nav-pills .nav-link{
  border-bottom: 1px solid #777;
}
.nav-pills .nav-link:last-child{
  border-bottom: none;
  border-bottom-left-radius: 15px;
}
.nav-link i {
  display: inline-block;
  margin-left: .255em;
  /* vertical-align: .255em;
  content: ""; */
  margin-left: auto;
  position: relative;
  /* left: 66px; */
}



.border{
  border: none;
  border-bottom: 2px solid #8c8c8d;
  display: block;
  margin: 0 14px 16px 0px;
}
.schdule h4{
  font-size: 22px;
  font-weight: 600;
  color: #000;
  letter-spacing: 0;
}

.day a{
  width: 75px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}

.date-box{
  width: 50px;
  height: 50px;
  position: relative;
  display: inline-block;
}

.tfoot-month{
  margin: 20px 10px;
}

.tfoot-month .btn{
  margin: 9px 5px;
  border: 1px solid #000000;
  border-radius: 40px;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out 0s;
}
.tfoot-month .btn:hover{
  color: #ffffff;
  background: #000;
}

.date-box-container {
  display: block;
  position: relative;
  padding-left: 0px;
  margin-bottom: 12px;
  top: -6px;
  cursor: pointer;
  font-size: 16px;
  color: #000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.date-box-container p{
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  position: relative;
  z-index: 11111;
}
.date-box-container p:hover {
  color: #fff;
  position: relative;
  z-index: 11111;
}

.date-box-container p.active{
  color: #919191;
  position: relative;
  z-index: 111;
}

.date-box-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.date-box-container .checkmark {
  position: absolute;
  top: 0;
  left: 30px;
  height: 41px;
  width: 41px;
  background-color: #fff;
  border-radius:20px;
  z-index:-1;
}

.date-box-container:hover input ~ .checkmark {
  background-color: rgb(230, 230, 230);
  position:absolute;
  left: 17px;
  z-index: 1;
  top: -4px;
}

.date-box-container input:checked ~ .checkmark {
  background-color: #000;
  position:absolute;
  left: 17px;
  z-index: 1;
  top: -4px;
}

.date-box-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.date-box-container input:checked ~ .checkmark:after {
  display: block;
}

.table-responsive{
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #e0e0e0 transparent;
}

.btn-dark{
  background: #000;
}

.card{
  border-radius: 10px;
}
.card .card-shadow{
  box-shadow: -1px 0px 31px -2px rgba(72,91,138,0.5);
-webkit-box-shadow: -1px 0px 31px -2px rgba(72,91,138,0.5);
-moz-box-shadow: -1px 0px 31px -2px rgba(72,91,138,0.5);
}
.gray-light{
  background: #F7F7F7;
  border: 1px #B5B5B5 solid;
}
.card-title{
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0;
}
.card-head{
  padding: 5px 10px 0;
  background: #000;
  color: #fff;
  border-radius: 10px 10px 0 0;
}

.card-title i{
  margin-right: 10px;
  font-size: 20px;
}

/* #pricing .touch, #goals .touch, #address .touch{
  background: #000;
  color: #fff;
  margin: 15px 0;
  border: none;
  display: inline-block;
}
#pricing .touch:hover, #goals .touch:hover, #address .touch:hover{
  background: #535353;
} */

.btn-all{
  background: #000;
  color: #fff;
  margin: 15px 0;
  border: none;
  display: inline-block;
}
.btn-all:hover{
  background: #535353;
  color: #dbdbdb;
}

/* ------------Dashboard Section--------------*/

#Dashboard .side-nav-bar{
  border-radius: 10px;
}

#Dashboard .profile {
  padding: 25px 15px;
  position: relative;
  z-index: 1;
  top: -78px;
  max-height: 119px;
  text-align: center;
}

#Dashboard .profile img {
  /* padding: 5px; */
  border: 4px solid #e1e1e1;
  border-radius: 112px;
  margin: 10px;
  width: 90px;
  height: 90px;
}
#Dashboard .profile .pro-title {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  display: block;
}

#Dashboard .nav-bg{
  background: #babcc0;
  border-radius: 0 0 10px 10px;
  /* border-bottom-left-radius: 10px; */
}


#Dashboard .nav-pills .nav-link{
  color: #000;
  font-size: 16px;
  letter-spacing: 0;
  border-radius: 10px;
}
#Dashboard .nav-pills a i{
  margin-right: 10px;
  font-size: 20px;
}
#Dashboard .nav-pills a.nav-link:hover{
  color: #000;
  background: rgb(230, 230, 230, .5);
}
#Dashboard .nav-pills a.nav-link.active{
  color: #ffffff;
  background: rgba(0, 0, 0);
}

#Dashboard .dropdown a{
  padding: 10px 15px;
  background: #000;
  border-radius: 10px;
  letter-spacing: 0;
}
#Dashboard .dropdown i{
  font-size: 20px;
  margin-right: 10px;
}
#Dashboard .dropdown .dropdown-item{
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.0);
  letter-spacing: 0;
}
#Dashboard .dropdown .dropdown-item:hover{
  padding: 10px 15px;
  color: #000;
  background: rgb(230, 230, 230, .5);
  border-radius: 10px;
}


.widget-one {
  background: #6C6D71;
  border-radius: 8px;
}
.widget-one .stat-icon-bg {
  background: #34353C;
  border-radius: 8px 0 0 8px;
}

.widget-two {
  background: #000000;
  border-radius: 8px;
}
.widget-two .stat-icon-bg {
  background: #252629;
  border-radius: 8px 0 0 8px;
}

.widget-three {
  background: #17181B;
  border-radius: 8px;
}
.widget-three .stat-icon-bg {
  background: #34353C;
  border-radius: 8px 0 0 8px;
}

.widget-one .stat-icon, .widget-two .stat-icon, .widget-three .stat-icon{
  display: inline-block;
  padding: 37px 33px;
  position: absolute;
  line-height: 21px;
}
.widget-one .stat-icon i, .widget-two .stat-icon i, .widget-three .stat-icon i{
  font-size: 30px;
  color: #ffffff;
}
.widget-one .stat-content, .widget-two .stat-content, .widget-three .stat-content {
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-left: 90px;
}
.widget-one .title, .widget-two .title, .widget-three .title{
  font-size: 18px;
}
.widget-one .stat-digit, .widget-two .stat-digit, .widget-three .stat-digit {
  font-size: 23px;
  font-weight: 600;
  line-height: 24px;
}

.widget-one .small, .widget-two .small, .widget-three .small {
  font-size: 10px;
}


/* Pricing Table Section
--------------------------------*/
#pricing .block-pricing {
  background: #fff;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 4px 0 rgba(0, 0, 0, 0.19);
  border-radius: 10px;
  display: inline-block;
  position: relative;
  width: 100%;
  text-align: center;
  padding: 0 0 30px 0;
}

@media (max-width: 991px) {
  #pricing .block-pricing {
    margin-bottom: 30px;
  }
}

#pricing .block-pricing .basic {
  margin-bottom: 0;
  background: #888B8E;
  padding: 20px 15px;
  max-width: 100%;
  width: 100%;
}
#pricing .block-pricing .stander {
  margin-bottom: 0;
  background: #3D4043;
  padding: 20px 15px;
  max-width: 100%;
  width: 100%;
}
#pricing .block-pricing .premium {
  margin-bottom: 0;
  background: #000;
  padding: 20px 15px;
  max-width: 100%;
  width: 100%;
}
#pricing .block-pricing .basic, #pricing .block-pricing .stander, #pricing .block-pricing .premium {
  border-radius: 10px 10px 0 0;
}

#pricing .block-pricing .icon{
  width: 45px;
  height: 45px;
  padding: 5px 8px;
  background: #1C1E20;
  border: 2px solid #ccc;
  border-radius: 50px;
  display: inline-block;
}
#pricing .block-pricing .icon i{
  font-size: 20px;
  color: #fff;
}

#pricing .block-pricing .pricing-table .basic h4, #pricing .block-pricing .pricing-table .stander h4, #pricing .block-pricing .pricing-table .premium h4 {
  /* padding-bottom: 8px; */
  color: #fff;
  font-size: 22px;
  letter-spacing: 0;
}
#pricing .block-pricing p {
  margin-bottom: 6px;
  color: #fff;
  line-height: 18px;
  font-size: 12px;
}
#pricing .block-pricing h2 {
  color: #fff;
}

#pricing .block-pricing ul {
  list-style: outside none none;
  margin: 10px auto;
  max-width: 240px;
  padding: 0;
}

#pricing .block-pricing ul li {
  border-bottom: 1px solid rgba(153, 153, 153, 0.3);
  font-size: 14px;
  padding: 7px;
  text-align: left;
  line-height: 18px;
  letter-spacing: 1px;
}

#pricing .block-pricing ul li b {
  color: #3c4857;
}
#pricing .block-pricing ul li .check {
  position: relative;
  right: -108px;
  top: -5px;
  padding: 0 12px 0 0;
  display: inline-block;
  margin-bottom: 7px;
}
#pricing .block-pricing ul li .check i{
  font-size: 15px;
}

#pricing .block-pricing .pricing-table .table_btn a {
  background: #000;
  color: #fff;
  margin: 0;
  display: inline-block;
}

#pricing .block-pricing .pricing-table .table_btn a:hover {
  background: #000;
}

#pricing .block-pricing .pricing-table .table_btn a .fa {
  font-size: 13px;
  margin-right: 5px;
}

#pricing .widget {
  margin: 15px 0;
  background: #DCDCDC;
  border-radius: 8px;
}
#pricing .widget .ico{
  display: inline-block;
  padding: 26px 20px;
  position: absolute;
  line-height: 21px;
}
#pricing .widget .ico-bg {
  background: #34353C;
  border-radius: 8px 0 0 8px;
}
#pricing .widget .ico i{
  font-size: 30px;
  color: #ffffff;
}

#pricing .widget .content{
  color: #000000;
  padding: 15px;
  margin-left: 70px;
}
#pricing .widget .content .title{
  font-size: 18px;
  font-weight: 700;
}
#pricing .widget .content p{
  margin-bottom: 0;
  color: #000000;
}




table thead > tr > th{
  height: 45px;
}
table thead > tr > th:first-child{
  border-top-left-radius: 10px;
}
table thead > tr > th:last-child{
  border-top-right-radius: 10px;
}
table.dataTable thead > tr > th.dt-orderable-asc, table.dataTable thead > tr > th.dt-orderable-desc, table.dataTable thead > tr > th.dt-ordering-asc, table.dataTable thead > tr > th.dt-ordering-desc, table.dataTable thead > tr > td.dt-orderable-asc, table.dataTable thead > tr > td.dt-orderable-desc, table.dataTable thead > tr > td.dt-ordering-asc, table.dataTable thead > tr > td.dt-ordering-desc {
  font-size: 14px;
}
table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order::before, table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order::after, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order::before, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order::after, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order::before, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order::after, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order::before, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order::after, table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order::before, table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order::after, table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order::before, table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order::after, table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order::before, table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order::after, table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order::before, table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order::after {
  left: 0;
  opacity: 0.5;
  line-height: 11px;
  font-size: 0.8em;
}
table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order::before, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order::after, table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order::before, table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order::after {
  opacity: 1;
}
table.dataTable th.dt-type-numeric, table.dataTable th.dt-type-date, table.dataTable td.dt-type-numeric, table.dataTable td.dt-type-date {
  text-align: left;
}
.pagination{
  margin: 10px 0;
  --bs-pagination-color: #000;
  --bs-pagination-active-bg: #000;
  --bs-pagination-active-border-color: #000;
}

@media (min-width: 768px) {
  #pricing .block-pricing ul li .check {
    right: -98px;
  }
}
/* @media (max-width: 667px) {
#pricing .block-pricing ul {
  max-width: 423px;
}

#pricing .block-pricing ul li .check {
  top: -7px;
  margin: 10px 0;
}
} */


.address-icon{
  padding: 5px;
}
.address-icon a {
  font-size: 20px;
  display: inline-block;
  color: rgba(0, 0, 0);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.modal-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;

}
.modal .modal-content {
  padding: 0px !important;
}
.modal-header {
  color: #ffffff !important;
  background: #000000;
  padding: 0px 20px;
}
.modal-title{
  color: #ffffff;
  font-size: 20px;
}
.close {
  font-size: 33px !important;
  color: #ffffff;
  background: rgba(76, 175, 80, 0.0) !important;
  border: none;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: url(../img/footer-bg.jpg) top left no-repeat;
  background-color: #050505;
  padding-top: 50px;
}

.footer .footer-logo .navbar-brand {
  color: #fff;
  display: inline-block;
  float: none;
  font-family: "Philosopher", sans-serif;
  font-size: 24px;
  font-weight: 500;
  height: 100%;
  letter-spacing: 0.2em;
  padding-left: 0;
  padding-top: 0;
}

.footer .footer-logo p {
  color: #fff;
  font-size: 12px;
  margin: 0 46px 5px 0;
  letter-spacing: 1px;
}

.footer .social-links a {
  font-size: 16px;
  display: inline-block;
  background: #414141;
  color: #ffffff;
  line-height: 1;
  padding: 8px;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 32px;
  height: 32px;
  transition: 0.3s;
}
.footer .social-links a:hover{
  background: #ffffff;
  color: #000000;
}
.footer .list-menu>h4 {
  color: #fff;
  font-size: 15px;
  padding-bottom: 20px;
}

.footer .list-menu ul li a {
  color: #fff;
  font-size: 12px;
  padding-left: 5px;
  text-decoration: none;
  letter-spacing: 0;
}
.subscribe h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 2;
}
.subscribe .btn {
  border: 1px solid #5c5c5c;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 5px 20px;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out 0s;
}
.subscribe p {
  color: #fff;
  font-size: 14px;
}

.footer .copyrights {
  background: #141517;
  margin-top: 30px;
  text-align: center;
  padding: 10px;
}

.footer .copyrights p,
.footer .copyrights .credits {
  margin: 0;
  padding: 0;
  color: #797979;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0;
}
