/* Google Font Import - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scrollbar-width: auto;
  scrollbar-color: var(--black-white) var(--white-black);

}

/* ========================= CUSTUM SCROLL BARR =================================== */
*::-webkit-scrollbar {
  width: 15px;
  height: 15px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: #ccc;
}

/* ========================= CUSTUM SCROLL BARR =================================== */
:root {
  /* ===== Colors ===== */
  --body-color: #f1f3fb;
  --sidebar-color: #4723D9 ;
  --primary-color: #407BFF;
  --primary-color-light: #F6F5FF;
  --toggle-color: #DDD;
  --text-color: #707070;
  --black-white: #000;
  --white-black: #fff;
  /* ====== Transition ====== */
  --tran-03: all 0.2s ease;
  --tran-03: all 0.3s ease;
  --tran-04: all 0.3s ease;
  --tran-05: all 0.3s ease;
}

body {

  background-color: var(--body-color);
  transition: var(--tran-05);
}

::selection {
  background-color: var(--primary-color);
  color: #fff;
}

body.dark {
  --body-color: #18191a;
  --sidebar-color: #242526;
  --primary-color: #3a3b3c;
  --primary-color-light: #3a3b3c;
  --toggle-color: #fff;
  --text-color: #ccc;
  --black-white: #fff;
  --white-black: #000;
}

/* ####################################   HEADER CSS START    ######################################### */
.header_a_active,
.header_a_active .text,
.header_a_active .icon {
  
  color: var(--white-black) !important;
  /* background: var(--text-color) !important; */
  background: #407BFF !important;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 250px;
  padding: 10px 14px;
  background: var(--sidebar-color);
  transition: var(--tran-05);
  z-index: 10;
}

.sidebar.close {
  width: 79px;

}

.main-content {
  margin-left: 250px; /* Match the sidebar width */
  padding: 20px;
  transition: var(--tran-05); /* Optional: Smooth transition */
}

/* ===== Reusable code - Here ===== */
.sidebar li {
  height: 50px;
  list-style: none;
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.sidebar header .image,
.sidebar .icon {
  min-width: 60px;
  border-radius: 6px;
}

.sidebar .icon {
  min-width: 50px;
  border-radius: 6px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.sidebar .text,
.sidebar .icon {
  color: var(--white-black);
  transition: var(--tran-03);
}

.sidebar .text {
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 1;
}

.sidebar.close .text {
  opacity: 0;
}

/* =========================== */



.sidebar header {
  position: relative;
}

.sidebar header .image-text {
  display: flex;
  align-items: center;
}

.sidebar header .logo-text {
  display: flex;
  flex-direction: column;
}

header .image-text .name {
  margin-top: 2px;
  font-size: 18px;
  font-weight: 600;
}

header .image-text .profession {
  font-size: 16px;
  margin-top: -2px;
  display: block;
}

.sidebar header .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar header .image img {
  width: 40px;
  border-radius: 6px;
}

.sidebar header .toggle {
  position: absolute;
  top: 50%;
  right: 1px;
  transform: translateY(-50%) rotate(180deg);
  height: 40px;
  width: 43px;
  background-color: var(--primary-color);
  color: var(--sidebar-color);
  border-radius: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  transition: var(--tran-05);
}

body.dark .sidebar header .toggle {
  color: var(--text-color);
}

.sidebar.close .toggle {
  transform: translateY(-50%) rotate(0deg);
}
 

.sidebar li a {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  text-decoration: none;
  transition: var(--tran-02);
}

.sidebar li a:hover {
  background-color: var(--primary-color);
}

.sidebar li a:hover .icon,
.sidebar li a:hover .text {
  color: var(--sidebar-color);
}

body.dark .sidebar li a:hover .icon,
body.dark .sidebar li a:hover .text {
  color: var(--text-color);
}

.sidebar .menu-bar {
  height: calc(100% - 55px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: scroll;
  margin-top: 10px;
}

.menu-bar::-webkit-scrollbar {
  display: none;
}

.sidebar .menu-bar .mode {
  border-radius: 6px;
  background-color: var(--primary-color-light);
  position: relative;
  transition: var(--tran-05);
}

.menu-bar .mode .sun-moon {
  height: 50px;
  width: 60px;
}

.mode .sun-moon i {
  position: absolute;
}

.mode .sun-moon i.sun {
  opacity: 0;
}

body.dark .mode .sun-moon i.sun {
  opacity: 1;
}

body.dark .mode .sun-moon i.moon {
  opacity: 0;
}

.menu-bar .bottom-content .toggle-switch {
  position: absolute;
  right: -5px;
  height: 100%;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
}

.report_right_icon,
li a .right_icon {
  position: relative;
  left: 60px;
  top: 1px;
  color: var(--black-white);
  font-size: larger;
  transition: var(--tran-03);
}

.rotate {
  transform: rotate(90deg);
}

.setting-dropedowns,
.report-dropedowns {
  display: none;
  background: var(--sidebar-color);
  border-radius: 5px;
  border:3px solid white;
}

.other-dataDr,
.machine-dataDr,
.unloading-dataDr {
  background: var(--sidebar-color);
  margin: 5px 10px;
  display: none;
  border-radius: 5px;
  padding: 0px 3px;
}

.display {
  display: block;
}

.toggle-switch .switch {
  position: relative;
  height: 22px;
  width: 40px;
  border-radius: 25px;
  background-color: var(--toggle-color);
  transition: var(--tran-05);
}

.switch::before {
  content: '';
  position: absolute;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  background-color: var(--sidebar-color);
  transition: var(--tran-04);
}

body.dark .switch::before {
  left: 20px;
}

/* ####################################   HEADER CSS END    ######################################### */

/* ####################################   TABLE CSS START    ######################################### */
.table_big_container {
  margin-left: 80px;
}
.back_btn{
  cursor: pointer;
  width: 80px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap:5px;
  text-decoration: none;
  border: 1px solid #000;
  color: #000;
  background-color: #dddddd;
}
.back_btn_container{
  width: 95%;
  display: flex;
  justify-content: start;
}
.table_container{
  width: 90%;
  background-color: var(--white-black);
  min-width: 700px;
  margin: 4vh auto;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 25px 2px;
  border-radius: 5px;
  padding: 20px;
  overflow: hidden;
}

.rwd-table {
  overflow-x: scroll;
  border-collapse: collapse;
  color: var(--black-white);
}

.rwd-table thead {
  border-top: none;
  background: var(--primary-color);
  color: #fff;
  font-size: 15px;
}

.rwd-table tbody {
  background-color: var(--sidebar-color);
}

.rwd-table tbody tr td {
  padding: 10px 0px !important;
}

.btn_container {
  display: flex;
  gap: 10px;
  flex-direction: row;
  justify-content: center;
}

.btn_container button {
  width: 7vw;
  padding: 5px 3px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: var(--white-black);
  transition: 0.3s;
}

body.dark .btn_container button {
  background: rgb(235 235 235 / 80%);
}

.btn_container .vessel_report {
  background-color: rgb(26, 71, 193);
}
.btn_container .vessel_report a{
   text-decoration: none;
  color: var(--white-black);

}
.btn_container .gate_report {
  background-color: rgb(26, 193, 43);
}

.btn_container .gate_report a{
  text-decoration: none;
 color: var(--white-black);

}

.btn_container .vessel_report:hover {
  background-color: rgb(52, 95, 214);
}

.btn_container .gate_report:hover {
  background-color: rgb(73, 221, 68);
  color: #fff;
}

.rwd-table tr:hover:not(thead tr:first-child) {
  background-color: #dee9f26c;
}

.rwd-table th,
.rwd-table td {
  text-align: center;
  border-top: 1px solid rgb(217, 217, 217);
  width: 1000px;
  height: 20px;
}

/* DATA TABLE CSS START*/
.dataTables_filter label,
.dataTables_filter input,
.dataTables_length label,
.dataTables_length select,
.paginate_button,
#machine_import_data_from_mil_info {
  color: var(--black-white) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: rgb(238, 234, 234) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  background: #ccc !important;
}

.dataTables_length select option {
  color: #000;
  background: #fff;
}

/* DATA TABLE CSS END */
.search_box_unloading {
  width: 90%;
  min-width: 700px;
  margin: auto;
  background: var(--sidebar-color);
  margin-top: 5vh;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: rgb(100 100 111 / 20%) 0px 5px 25px 2px;
}

.filter_tag_input h2 {
  color: var(--black-white);
}

.filter_tag_input {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 20px;
}



.filter_tag_input .tegs_div {
  display: flex;
  width: 290px !important;
  justify-content: center;
  flex-wrap: wrap;
  margin: 12px 0;
  border-radius: 5px;
  height: auto;
  border: 1px solid #a6a6a6;
}

.get_filter_tag {
  color: #333;
  margin: 4px 3px;
  list-style: none;
  border-radius: 5px;
  background: #F2F2F2;
  padding: 5px 8px 5px 10px;
  border: 1px solid #e3e1e1;
}

.filter_remove_btn {
  height: 20px;
  width: 20px;
  color: #808080;
  margin-left: 8px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 50%;
  background: #dfdfdf;
  justify-content: center;
  border: 1px solid #ccc;
}

.search_box_unloading_hedding {
  position: relative;
  text-align: center;
  width: 50%;
  padding: 5px 10px;
  border-top-left-radius: 7px;
  border-bottom-right-radius: 7px;
  top: -18px;
  background: var(--primary-color);
  color: #fff;
  font-size: larger;
  font-weight: 600;
}

.search_box_unloading_data {
  width: 100%;
  padding: 30px 0;
}


.filter_big_div {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  text-align: center;
 }
 @media only screen and (max-width: 1175px) {
  .filter_big_div {
    grid-template-columns: auto auto;
   }
}

.filter_input_date {
  display: flex;
}

.date_div label {
  color: var(--black-white);
}

.filter_input_date input {
  border: 1px solid var(--black-white);
  color: var(--black-white);
  background: var(--white-black);
  border-radius: 4px;
  text-align: center;
  outline: none;
  font-size: 15px;
}

.filter_input-wrap select {
  border: 1px solid var(--black-white);
  color: var(--black-white);
  width: 250px;
  background: var(--white-black);
  border-radius: 4px;
  text-align: center;
  outline: none;
  font-size: large;
}

/* ####################################   TABLE CSS END    ######################################### */

/* ####################################   LOGIN CSS START    ######################################### */

.login-body {
  /* background: url('https://cdn.pixabay.com/photo/2016/08/02/07/45/the-polygon-1562743__340.jpg') no-repeat center; */
  background-size: cover;
  font-family: sans-serif;
  background-color: white;
}

.login-wrapper {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form {
  position: relative;
  width: auto;
  max-width: 680px;
  padding: 80px 40px 40px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}

.form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  /* transform: skewX(-26deg); */
  transform-origin: bottom left;
  border-radius: 10px;
  pointer-events: none;
}

.form img {
  position: absolute;
  top: -50px;
  left: calc(50% - 50px);
  width: 100px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.form h2 {
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.form .input-group {
  position: relative;
}

.form .input-group select,
.form .input-group input {
  width: 100%;
  padding: 10px 0;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background-color: transparent;
  color: inherit;
}

.form .input-group select option {
  background: var(--white-black);
  color: var(--black-white);
}

.form .input-group label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 1rem;
  pointer-events: none;
  transition: .3s ease-out;
}

.form .input-group input:focus+label,
.form .input-group input:valid+label {
  transform: translateY(-18px);
  color: var(--primary-color);
  font-size: .8rem;
}

.submit-btn {
  display: block;
  margin-left: auto;
  border: none;
  outline: none;
  background: var(--primary-color);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  color: var(--black-white);
}

.forgot-pw {
  color: inherit;
}

#forgot-pw {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  z-index: 1;
  background: #fff;
  opacity: 0;
  transition: 0.6s;
}

#forgot-pw:target {
  height: 100%;
  opacity: 1;
}

.close-reset_pass {
  position: absolute;
  right: 1.5rem;
  top: 0.5rem;
  font-size: 2rem;
  font-weight: 900;
  text-decoration: none;
  color: inherit;
}




.form_data_big_div {
  display: flex;
  gap: 50px;
}

.form_data_div {
  width: 100vw;
}

.form_data_div:nth-child(1) {
  display: flex;
  flex-direction: column;
  gap: 26px;

}

/* ####################################   LOGIN CSS END    ######################################### */
/* ####################################   IMPORT EXEL CSS START    ######################################### */



.import_exel_big_div form {
  display: flex;
  background: var(--white-black);
  border-radius: 5px;
  padding: 30px 20px;
  gap: 25px;
  width: 47%;
  margin: auto;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 25px 2px;

}

form .import_exel_inner_form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;

}

.import_exel_content .form_content_select_div {
  display: flex;
}

.form_content_select_div button {
  background: transparent;
  border: none;
  border-bottom: 1px solid #000;
  font-size: larger;
  cursor: pointer;
  color: var(--black-white);
}

.import_exel_content select,
.import_exel_content input {
  width: 100%;
  text-transform: uppercase;
  height: 35px;
  border: none;
  font-size: large;
  border-bottom: 1px solid var(--black-white);
  outline: none;
  padding-left: 5px;
  color: var(--black-white);
  background: var(--white-black);
}

.import_exel_content select:focus,
.import_exel_content input:focus {
  border: 1px solid var(--black-white) !important;
}

.import_exel_content p {
  font-size: larger;
  color: var(--black-white);
}

.modal_location_container {
  height: 100vh;
  width: 100%;
  position: absolute;
  bottom: 0px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(96, 84, 163, 0.241);
  z-index: 11;
  display: none;
}

.modal_location_div {
  padding: 15px;
  background: var(--white-black);
  border-radius: 5px;
}

.modal_location_div form input {
  font-size: 18px;
  padding-left: 3px;
  outline: none;
  color: var(--black-white);
  border: 1px solid var(--black-white);
  background: transparent;
  border-radius: 5px;
  height: 35px;
}

.modal_location_div form p {
  font-size: larger;
  color: var(--black-white);
}

.modal_location_btn_div {
  text-align: end;
  padding-top: 10px;
}

.modal_location_btn_div button {
  padding: 5px 10px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 17px;
  color: #fff;
}

.modal_location_btn_div .modal_location_cancel {
  background: red;
}

.modal_location_btn_div .modal_location_add {
  background: green;
}

/* ####################################   IMPORT EXEL CSS END    ######################################### */
/* ####################################   NEW DASHBORD CSS START    ######################################### */
.dasboard_big_container {
  margin-left: 90px;
  padding-top: 6vh;
}

.dasboard_box_div {
  display: grid;
  grid-template-columns: auto auto auto auto;
  justify-content: center;
  gap: 2%;
}

.dasboard_box_div .dasboard_box {
  width: 100%;
  border-radius: 5px;
  padding: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 25px 2px;
}

.dasboard_box_div .dasboard_box:nth-child(1) {
  background: rgb(79, 242, 81);
}

.dasboard_box_div .dasboard_box:nth-child(2) {
  background: rgb(232, 80, 80);
}

.dasboard_box_div .dasboard_box:nth-child(3) {
  background: rgb(125, 115, 231);
}

.dasboard_box_div .dasboard_box:nth-child(4) {
  background: rgb(211, 237, 83);
}

.dasboard_box_div .dasboard_box:nth-child(1):hover {
  background: rgb(80, 224, 82);
}

.dasboard_box_div .dasboard_box:nth-child(2):hover {
  background: rgb(214, 77, 77);
}

.dasboard_box_div .dasboard_box:nth-child(3):hover {
  background: rgb(90, 110, 210);
}

.dasboard_box_div .dasboard_box:nth-child(4):hover {
  background: rgb(193, 214, 87);
}

.dasboard_box_div .dasboard_box p {
  color: #fff;
  margin-top: 3px;
}

.dasboard_box_div .dasboard_box p:nth-child(1) {
  font-size: 25px;
  font-weight: 600;
}

.dasboard_box_div .dasboard_box p:nth-child(2) {
  font-size: 18px;
}

.dasboard_box_div .dasboard_box p:nth-child(3) {
  font-size: 16px;
}

/* ####################################   NEW DASHBORD CSS END    ######################################### */
/* ####################################   CHART CSS START    ######################################### */

.chart_big_div {
  margin: auto;
  display: flex;
  margin-top: 4vh;
}

@media only screen and (max-width: 1300px) {
  .chart_big_div {
     flex-direction: column;
  }
}
.chart_div {
  min-width: 600px;
  height: 400px;
   background: var(--primary-color-light);
  margin: 50px auto;
  border-radius: 5px;
  padding: 20px 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 25px 2px;
}
.quick_links_big_div{
  background: var(--primary-color-light);
  padding: 20px;
  height: auto;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 25px 2px;
  margin: 50px auto;
}
 .quick_links_div{
  display: grid;
  grid-template-columns: 23% 23% 23% 23%;
  gap: 4% 2.7%;
 }
 .quick_links_div a{
  text-decoration: none;
}
.quick_links:hover .quick_links_icon,
.quick_links:hover p{
    color:var(--black-white);
}
.quick_links_div a{
  border-radius: 5px;
}
.quick_links{
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--white-black);
  text-align: center;
  transition: 0.5s;
}
.quick_links p{
  transition: 0.5s;

}

.quick_links_div a:nth-child(1){
  background: #e8f556;
}
.quick_links_div a:nth-child(2){
  background: #73ee63;
}

.quick_links_div a:nth-child(3){
  background: #fbae66;
}

.quick_links_div a:nth-child(4){
  background: #5689ac;
}

.quick_links_div a:nth-child(5){
  background: #6455b7;
}

.quick_links_div a:nth-child(6){
  background: #ba44a2;
}

.quick_links_div a:nth-child(7){
  background: #c43d4f;
}

.quick_links_div a:nth-child(8){
  background: #c95824;
}

.chart_big_div .data_div {
  width: 50%;
  min-width: 600px;
  margin: 50px auto;
}
.main_chart_div{
  width: 45%;
}
.quick_links .quick_links_icon{
  font-size: 30px;
  color: var(--white-black);
}
.chart_big_div .data_div .data {
  width: 100%;
  background: var(--primary-color-light);
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 25px 2px;
  margin-bottom: 28px;
  padding: 15px;
  display: flex;
  justify-content: space-around;
}
.head_data_big_div{
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--black-white);
}
.button_div{
  display: flex;
  justify-content: center;
  flex-direction: column;
   font-size: 14px;
}
.button_div button{
   border-radius: 5px;
   font-size: 20px;
  padding: 5px 18px;
  width: 100%;
  border: none;
  color: #fff;
}
 .machine_btn{
  background: #bf3ca3;
 }

 .dispatch_btn{
  background: #eb6a0e;
 }

 .stock_btn{
  background: #3e904a;
 }
.head_data_big_div .head_data{
  height: 50%;
  font-size: larger;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.head_data p{text-align: center;}
.head_data_big_div:nth-child(2) .head_data:nth-child(1) p:nth-child(2){
  border-bottom: 1px solid rgba(157, 157, 157, 0.867);
}
  
.numbers{
  color: var(--black-white);
  width: 50px;
  height: 100%;
  display: inline-block;
}

.numbers li{
  list-style: none;
  height: 70px;
}

.numbers span{
  font-size: 14px;
  font-weight: bold;
}

.bars{
  color: var(--black-white);
  font-size: 14px;
  font-weight: 600;
  background: #555;
  margin: 0;
  padding: 0;
  display: inline-block;
   box-shadow: 0 0 10px 0 #555;
  border-radius: 5px;
}

.bars li{
  display: table-cell;
  width: 100px;
  height: 300px;
  position: relative;
}

.bars span{
  width: 100%;
  position: absolute;
  bottom: -30px;
  text-align: center;
}

.bars .bar{
   background: #c06633;
  width: 50px;
  position: absolute;
  bottom: 0;
  margin-left: 25px;
  text-align: center;
   transition: 0.5s;
 }

.bars .bar:hover{
  background: #dc6922;
   cursor: pointer;
}

.bars .bar:before{
  color: #fff;
  content: attr(data-percentage) '%';
  position: relative;
  bottom: 20px;
}
      

/* ####################################   CHART CSS END    ######################################### */

/* ###################################### HEDDING CSS START    ####################################### */

.heading {
  background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0), #65aee6 10%, #65aee6 90%, rgba(255, 255, 255, 0));
  color: var(--body-color);
  font-size: 25px;
  padding: 5px 0px;
  width: 800px;
  margin: 30px auto;
  text-align: center;
  letter-spacing: 1px;
}
.heading:before {
  background: -webkit-radial-gradient(50% 100%, ellipse farthest-side, rgba(96, 96, 96, .7), rgba(0, 0, 0, 0));
  content: ' ';
}
.heading:after {
  background: -webkit-radial-gradient(50% 0%, ellipse farthest-side, rgba(96, 96, 96, .7), rgba(0, 0, 0, 0));
  content: ' ';
}

/* ###################################### HEDDING CSS END ####################################### */
  /* BACK BTN CSS START*/
  .back_backBtn {
    width: 100px;
    background-color: #f4f4f4;
    transition: all 0.4s ease;
    position: fixed;
    cursor: pointer;
  }

  .back_line {
    bottom: auto;
    right: auto;
    top: auto;
    left: auto;
    background-color:var(--primary-color);
    border-radius: 10px;
    width: 100%;
    left: 0px;
    height: 2px;
    display: block;
    position: absolute;
    transition: width 0.2s ease 0.1s, left 0.2s ease, transform 0.2s ease 0.2s, background-color 0.2s ease;
  }

  .back_tLine {
    top: 0px;
  }

  .back_mLine {
    top: 13px;
    opacity: 0;
  }

  .back_bLine {
    top: 32px;
  }

  .back_label {
    position: absolute;
    left: 0px;
    width: 100%;
    text-align: center;
    transition: all 0.4s ease;
    font-size: 1.5em;
    color: var(--black-white);
  }

  .back_backBtn:hover .back_label {
    left: 2px
  }

  .back_backBtn:hover .back_line {
    left: -10px;
    height: 5px;
    background-color:var(--primary-color);
  }

  .back_backBtn:hover .back_tLine {
    width: 25px;
    transform: rotate(-45deg);
    left: -15px;
    top: 6px;
  }

  .back_backBtn:hover .back_mLine {
    opacity: 1;
    width: 30px;
  }

  .back_backBtn:hover .back_bLine {
    width: 25px;
    transform: rotate(45deg);
    left: -15px;
    top: 20px;
  }
/* BACK BTN CSS END*/