@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin    : 0;
  padding   : 0;
  box-sizing: border-box;
}

body {
  font-family            : "Poppins", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing : antialiased;
  overflow-x             : hidden;
}

html {
  overflow-x: hidden;
}

.container {
  max-width: 88.75em;
  margin   : 0 auto;
  padding  : 0;
}

a {
  outline        : none;
  text-decoration: none;
  display        : inline-block;
}

a:hover,
button:hover {
  transition: all 0.3s ease;
}

select {
  outline           : none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing   : border-box;
  box-sizing        : border-box;
  -webkit-appearance: none;
  -moz-appearance   : none;
}

input,
select,
textarea {
  font-family: "Poppins";
  outline    : none;
}

h1,
h2,
h3,
h4,
h5 {
  letter-spacing: 1px;
}

p {
  letter-spacing: 1px;
}

.section-space {
  max-width: 100%;
  padding  : 3.125em 0 0 0;
  margin   : 0;
}

.left-part,
.right-part {
  width: 50%;
}

.nav-menu {
  background: #003a62;
  position  : relative;
}

.nav-menu ul {
  display   : flex;
  list-style: none;
  margin    : 0;
  padding   : 0;
  gap       : 20px;
}

.mega-menu {
  display   : none;
  position  : absolute;
  top       : 100%;
  left      : 0;
  right     : 0;
  max-width : 1200px;
  margin    : 0 auto;
  background: #fff;
  padding   : 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


.mega-col {
  flex: 1;
}

.mega-col h4 {
  border-bottom: 1px solid #00355a;
  margin-bottom: 10px;
  color        : #00355a;
}

.mega-col a {
  display        : block;
  color          : #333;
  padding        : 5px 0;
  text-decoration: none;
}

.mega-col a:hover {
  color: #0170c6;
}

.nav-menu.mobile-open {
  position      : fixed;
  top           : 0;
  left          : 0;
  right         : 0;
  bottom        : 0;
  background    : #003a62;
  flex-direction: column;
  overflow-y    : auto;
}

.nav-menu.mobile-open .mega-menu {
  flex-direction: column;
  position      : static;
  padding       : 0;
  box-shadow    : none;
}

.nav-menu.mobile-open .has-mega.open>.mega-menu {
  display: block;
}

.right-links {
  display: flex;
}

.right-links a {
  color          : #00355a;
  margin-left    : 18px;
  font-size      : 16px;
  text-decoration: none;
  display        : flex;
  align-items    : center;
  gap            : 8px;
  font-weight    : 400;
}

.right-links .icon {
  background: #5a646a;
  padding   : 4px;
}

.right-links .icon img {
  width  : 24px;
  display: block;
}

header {
  width     : 100%;
  background: #ffffff;
  position  : relative;
  z-index   : 1000;
}

.header-inner {
  position       : relative;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  padding        : 24px 0;
}

.header .logo img {
  width: 230px;
}

.header .nav-menu {
  background: #003a62;
  width     : 100%;
  padding   : 0;
  text-align: center;
}

.header .nav-menu ul {
  display    : flex;
  list-style : none;
  gap        : 28px;
  font-size  : 16px;
  font-weight: 500;
  color      : #ffffff;
  align-items: center;
  margin     : 0;
  padding    : 0;
}

.header .nav-menu ul li a {
  color          : #fff;
  text-decoration: none;
  display        : block;
}

.header .nav-menu ul .has-mega {
  position        : relative;
  background-color: #0170c6;
  padding         : 14px 28px 14px 65px;
  cursor          : pointer;
}

.header .nav-menu ul .has-mega::before {
  content   : "";
  position  : absolute;
  left      : 18px;
  top       : 50%;
  width     : 27px;
  height    : 18px;
  background: url("../img/all-category-icon.png") no-repeat center center;
  transform : translateY(-50%);
}

.hamburger-btn {
  display        : none;
  width          : 40px;
  height         : 33px;
  flex-direction : column;
  cursor         : pointer;
  position       : absolute;
  right          : 2%;
  top            : 50%;
  transform      : translateY(-50%);
  background     : none;
  border         : none;
  z-index        : 1100;
  align-items    : end;
  gap            : 7px;
  justify-content: center;
}

.hamburger-btn span {
  height    : 3px;
  width     : 100%;
  background: #00355a;
  transition: 0.35s ease;
}

.hamburger-btn span:nth-child(1),
.hamburger-btn span:nth-child(3) {
  width: 27px;
}

.hamburger-btn span:nth-child(2) {
  width: 36px;
}

.hamburger-btn.open {
  background     : #ffffff;
  justify-content: center;
  align-items    : center;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.mobile-nav {
  position   : fixed;
  top        : 0;
  right      : -250px;
  width      : 250px;
  height     : 100%;
  background : #003a62;
  overflow-y : auto;
  transition : right 0.35s ease;
  z-index    : 1050;
  padding-top: 60px;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
  padding   : 0;
  margin    : 0;
}

.mobile-nav ul li {
  padding      : 14px 22px;
  border-bottom: 1px solid #005080;
}

.mobile-nav ul li a {
  color          : #fff;
  text-decoration: none;
  font-size      : 16px;
  display        : block;
}

.mobile-submenu {
  display   : none;
  background: #004b7d;
}

/* Submenu items */
.mobile-submenu li {
  padding      : 12px 22px;
  border-bottom: 1px solid #00629e;
}

.mobile-submenu li a {
  font-size: 15px;
}

.mega-menu {
  position  : absolute;
  top       : 100%;
  left      : 0;
  right     : 0;
  max-width : 1420px;
  width     : 1420px;
  margin    : 0 auto;
  background: #ffffff;
  display   : none;
  padding   : 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index   : 999;
}

.nav-menu .has-mega:hover>.mega-menu {
  display   : block;
  flex-wrap : wrap;
  max-width : initial !important;
  overflow-x: hidden;
  height    : 500px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  max-height: max-content;
}

.nav-menu .mega-col {
  width        : 100%;
  margin-bottom: 18px;
}

.nav-menu .mega-col:last-child {
  margin-bottom: 0;
}

.nav-menu .has-mega .mega-menu .mega-col h4 {
  margin-bottom: 10px;
  color        : #00355a;
  text-align   : left;
  border-bottom: 1px solid #00355a;
}

.nav-menu ul .has-mega .mega-menu .mega-col a {
  display        : block;
  color          : #333;
  padding        : 6px 0;
  text-decoration: none;
  text-align     : left;
}

.nav-menu .mega-col a:hover {
  color: #0170c6;
}

.nav-menu .has-mega .mega-menu .product-category {
  flex-wrap: wrap;
  gap      : 8px;
}

.nav-menu .has-mega .mega-menu .product-category li {
  width: 16%;

}

.login-form-section {
  height         : 100vh;
  margin         : 0;
  background     : url("../img/login-background.jpg") no-repeat center center;
  background-size: cover;
  display        : flex;
}

.login-form-section .right-part {
  align-content: center;
  text-align   : center;
}

.login-form-section .login-form {
  width : 60%;
  margin: 0 auto;
}

.login-form-section h1 {
  margin        : 45px 0 55px 0;
  text-align    : center;
  color         : #ffffff;
  font-size     : 28px;
  font-weight   : 600;
  letter-spacing: 1px;
}

.login-form-section .login-form .form-group {
  width        : 100%;
  margin-bottom: 20px;
}

.login-form-section .login-form label {
  display      : block;
  margin-bottom: 18px;
  text-align   : left;
  color        : #ffffff;
  font-size    : 20px;
  font-weight  : 400;
}

.login-form-section .login-form input {
    width: 100%;
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    padding: 13px 20px;
    border: transparent;
    border-radius: 8px;
    outline: transparent;
}

.login-form-section .login-form input::placeholder {
  color     : #c6c6c6;
  font-size : 18px;
  font-style: italic;
}

.login-form-section .btn-group {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  margin-top     : 40px;
}

.login-form-section .login-form .btn-group a {
  color    : #ffffff;
  font-size: 18px;
  display  : inline-block;
}

.main-btn,
.secondary-btn {
  background     : linear-gradient(64deg, rgba(0, 91, 162, 1), rgba(2, 121, 215, 1));
  background-size: 200% 200%;
  transition     : background-position 0.4s ease, transform 0.2s ease;
  border         : none;
  color          : #fff;
  padding        : 14px 55px;
  border-radius  : 40px;
  font-size      : 20px;
  font-weight    : 600;
  cursor         : pointer;
  letter-spacing : 1px;
  text-transform : uppercase;
  display        : inline-block;
  transition     : background 0.5s ease, transform 0.3s ease;
}

.main-btn:hover {
  background-position: right center;
  transform          : translateY(-3px);
}

.secondary-btn:hover {
  background: linear-gradient(270deg, #00355a, #5c8099);
  transform : translateY(-3px);
}

.secondary-btn {
  background: linear-gradient(64deg, #00355a, #5c8099);
}

.login-form-section .login-form .terms-use {
  margin-top: 55px;
}

.login-form-section .login-form .terms-use p {
  color      : #ffffff;
  font-size  : 18px;
  font-weight: 400;
  text-align : left;
}

.login-form-section .login-form .terms-use p a {
  color          : #f55551;
  text-decoration: underline;
}

.login-form-section .login-form .terms-use p:nth-of-type(2) {
  margin-top: 30px;
}

.customer-registration-section {
  height         : 100vh;
  margin         : 0;
  background     : url("../img/login-background.jpg") no-repeat center center;
  background-size: cover;
  display        : flex;
}

.customer-registration-section .right-part {
  align-content: center;
  text-align   : center;
  width        : 60%;
  padding      : 50px 0 50px 0;
  overflow     : auto;
}

.customer-registration-section h1 {
  margin        : 45px auto 22px auto;
  text-align    : left;
  color         : #ffffff;
  font-size     : 28px;
  font-weight   : 600;
  letter-spacing: 1px;
  width         : 90%;
}

.customer-registration-section .customer-registration-form {
  width : 90%;
  margin: 0 auto;
}

.customer-registration-section .customer-registration-form .form-grid {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : 14px 37px;
}

.customer-registration-section .customer-registration-form .form-group {
  width: 100%;
}

.customer-registration-section .customer-registration-form label {
  display: block;
    margin-bottom: 10px;
    text-align: left;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
}

.customer-registration-section .customer-registration-form .required-star {
  color      : #ff0000;
  font-size  : 20px;
  font-weight: 400;
}

.customer-registration-section .customer-registration-form input {
width: 100%;
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    padding: 12px 15px;
    border: transparent;
    border-radius: 8px;
    outline: transparent;
}

.customer-registration-section .customer-registration-form input::placeholder {
  color     : #c6c6c6;
  font-size : 18px;
  font-style: italic;
}

.customer-registration-section .customer-registration-form input::-webkit-outer-spin-button,
.customer-registration-section .customer-registration-form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance   : textfield;
  margin            : 0;
}

.customer-registration-section .customer-registration-form select {
  width: 100%;
    background: url(../img/down-arrow.png) #ffffff;
    background-repeat: no-repeat;
    background-position: 96% 51%;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    padding: 14px 15px;
    border: transparent;
    border-radius: 8px;
    outline: transparent;
    font-family: 'Poppins';
}

.customer-registration-section .customer-registration-form select::placeholder {
  color     : #c6c6c6;
  font-size : 18px;
  font-style: italic;
}

.customer-registration-section .btn-group {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  margin-top     : 40px;
}

.customer-registration-section .customer-registration-form .btn-group .note {
  color      : #ff0000;
  font-size  : 18px;
  font-weight: 400;
}

.forgotpass-form-section {
  height         : 100vh;
  margin         : 0;
  background     : url(../img/login-background.jpg) no-repeat center center;
  background-size: cover;
  display        : flex;
}

.forgotpass-form-section .right-part {
  align-content: center;
  text-align   : center;
}

.forgotpass-form-section .forgotpass-form {
  width : 60%;
  margin: 0 auto;
}

.forgotpass-form-section h1 {
  margin        : 45px 0 55px 0;
  text-align    : center;
  color         : #ffffff;
  font-size     : 28px;
  font-weight   : 600;
  letter-spacing: 1px;
}

.forgotpass-form-section h3 {
  text-align   : left;
  font-size    : 24px;
  color        : #ffffff;
  margin-bottom: 8px;
  font-weight  : 500;
}

.forgotpass-form-section p {
  color        : #ffffff;
  font-size    : 16px;
  font-weight  : 300;
  text-align   : left;
  margin-bottom: 18px;
}

.forgotpass-form-section .forgotpass-form .form-group {
  width        : 100%;
  margin-bottom: 20px;
}

.forgotpass-form-section .forgotpass-form label {
  display      : block;
  margin-bottom: 18px;
  text-align   : left;
  color        : #ffffff;
  font-size    : 20px;
  font-weight  : 400;
}

.forgotpass-form-section .forgotpass-form input {
  width        : 100%;
  color        : #000000;
  font-size    : 20px;
  font-weight  : 400;
  padding      : 13px 20px;
  border       : transparent;
  border-radius: 12px;
  outline      : transparent;
}

.forgotpass-form-section .forgotpass-form input::placeholder {
  color     : #c6c6c6;
  font-size : 18px;
  font-style: italic;
}

.forgotpass-form-section .btn-group {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  margin-top     : 40px;
}

.forgotpass-form-section .forgotpass-form .btn-group a {
  color    : #ffffff;
  font-size: 18px;
  display  : inline-block;
}

.forgotpass-form-section .forgotpass-form .required-star {
  color      : #ff0000;
  font-size  : 20px;
  font-weight: 400;
}

.middle-wrapper {
  background-color: #eff3f6;
}

.filters .filters-wrapper {
  background-color: #fff;
  border-radius   : 44px;
  display         : flex;
  align-items     : center;
}

.filters .filters-wrapper input,
.filters .filters-wrapper select {
  width      : 100%;
  border     : transparent;
  padding    : 27px 0 27px 24px;
  font-size  : 18px;
  font-weight: 500;
  box-sizing : border-box;
  color      : #00355a;
  outline    : transparent;
  background : transparent;
  font-family: 'Poppins';
}

.filters .filters-wrapper .part-number {
  width       : 20%;
  border-right: 1px solid #e8e8e8;
}

.filters .filters-wrapper .description {
  width       : 20%;
  border-right: 1px solid #e8e8e8;
}

.filters .filters-wrapper .select-category {
  width       : 20%;
  border-right: 1px solid #e8e8e8;
}

.filters .filters-wrapper .sort {
  width       : 20%;
  border-right: 1px solid #e8e8e8;
}

.filters .filters-wrapper input::placeholder {
  color: #00355a;
}

.filters .filters-wrapper select {
  background         : url(../img/down-arrow.png);
  background-repeat  : no-repeat;
  background-position: 96% 51%;
}

.filters .filters-wrapper .btn-group {
  width          : 20%;
  display        : flex;
  align-items    : center;
  justify-content: end;
}

.filters .filters-wrapper .btn-group .main-btn {
  align-content  : center;
  font-size      : 16px;
  padding        : 16px 33px;
  margin-right   : 7px;
  background     : linear-gradient(64deg, #005ba2, #0279d7);
  background-size: 100% 100%;
}

.filters .filters-wrapper .btn-group .main-btn:hover {
  background-position: right center;
  transform          : translateY(0px);
}

.poduct-listing .heading-with-btn {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

.poduct-listing .heading-with-btn h1 {
  font-size  : 34px;
  color      : #00355a;
  font-weight: 700;
}

.add-to-cart-btn,
.wish-btn {
  font-size    : 18px;
  font-weight  : 500;
  color        : #ffffff;
  position     : relative;
  padding-left : 50px;
  background   : linear-gradient(64deg, #00355a, #5c8099);
  padding      : 16px 40px;
  border-radius: 40px;
  margin-left  : 30px;
  display      : inline-flex;
  align-items  : center;
  gap          : 12px;
  transition   : background 0.5s ease, transform 0.3s ease;
}

.add-to-cart-btn:hover,
.wish-btn:hover {
  background: linear-gradient(270deg, #00355a, #5c8099);
}

.add-to-cart-btn img,
.wish-btn img {
  width     : 30px;
  transition: transform 0.3s ease;
}

.add-to-cart-btn:hover img,
.wish-btn:hover img {
  transform: scale(1.1);
}

.product-table-wrapper {
  width      : 100%;
  overflow-x : hidden;
  padding-top: 45px;
}

.product-table {
  width          : 100%;
  border-collapse: collapse;
  background     : #fff;
  border-radius  : 6px;
  overflow       : hidden;
  table-layout   : fixed;
}

.product-table th,
.product-table td {
  padding      : 18px 16px;
  font-size    : 18px;
  color        : #444b50;
  text-align   : center;
  border       : 1px solid #d5d5d5;
  white-space  : nowrap;
  overflow     : hidden;
  text-overflow: ellipsis;
}

.product-table th {
  background : #444b50;
  color      : #fff;
  padding    : 16px;
  font-size  : 18px;
  text-align : center;
  font-weight: 500;
}

.product-table td {
  padding   : 18px 16px;
  font-size : 18px;
  color     : #444b50;
  text-align: center;
}

/* .product-table tr:last-child td {
  border-bottom: none;
} */

.qty-box {
  display    : inline-flex;
  align-items: center;
  gap        : 8px;
}

.qty-box button {
  border    : none;
  background: transparent;
  color     : #2c3e50;
  font-size : 18px;
  cursor    : pointer;
}

.qty-box input {
  width        : 50px;
  height       : 30px;
  text-align   : center;
  border       : 1px solid #ccc;
  border-radius: 6px;
  font-size    : 16px;
}

.action-buttons {
  display        : table-cell;
  gap            : 10px;
  justify-content: center;
}

.action-buttons .btn {
  width        : 50px;
  height       : 50px;
  border-radius: 10px;
  cursor       : pointer;
  outline      : transparent;
  border       : transparent;
}

.action-buttons .cart {
  background-image   : url(../img/add-cart.png), linear-gradient(64deg, #00355a, #5c8099);
  background-repeat  : no-repeat;
  background-position: center;
  background-size    : 28px, cover;
}

.action-buttons .wish {
  background-image   : url(../img/add-to-favorites.png), linear-gradient(64deg, #00355a, #5c8099);
  background-repeat  : no-repeat;
  background-position: center;
  background-size    : 28px, cover;
}

.product-table th:nth-child(1),
.product-table td:nth-child(1) {
  width: 180px;
}

.product-table th:nth-child(2),
.product-table td:nth-child(2) {
  width: 450px;
}

.product-table th:nth-child(3),
.product-table td:nth-child(3) {
  width: 150px;
}

.product-table th:nth-child(4),
.product-table td:nth-child(4) {
  width: 150px;
}

.product-table th:nth-child(5),
.product-table td:nth-child(5) {
  width: 150px;
}

.product-table th:nth-child(6),
.product-table td:nth-child(6) {
  width: 180px;
}

.product-table td:nth-child(2) {
  white-space: normal;
  word-wrap  : break-word;
}

.btn-warpper {
  display        : flex;
  justify-content: space-between;
}

.btn-warpper .page-actions-bottom .secondary-btn {
  margin-left: 12px;
}

.pagination-wrapper {
  display        : flex;
  justify-content: space-between;
  align-items    : center;
  padding        : 0 0 100px 0;
  flex-wrap      : wrap;
  gap            : 15px;
}

.pagination {
  list-style: none;
  display   : flex;
  gap       : 10px;
  padding   : 0;
  margin    : 0;
}

.page-link,
.page-dots {
  display        : flex;
  align-items    : center;
  justify-content: center;
  padding        : 10px 20px;
  background     : #ffffff;
  border-radius  : 6px;
  color          : #333;
  font-size      : 16px;
  text-decoration: none;
  cursor         : pointer;
}

.page-link.active {
  background  : #003b63;
  color       : white;
  font-weight : 600;
  border-color: #003b63;
}

.page-dots {
  background: transparent;
  border    : none;
  font-size : 18px;
}

.show-per-page {
  display    : flex;
  align-items: center;
  gap        : 10px;
}

.show-per-page select {
  padding      : 8px 16px;
  border-radius: 6px;
  border       : 1px solid #dcdcdc;
  background   : #fff;
  cursor       : pointer;
  font-size    : 15px;
  font-family  : 'Poppins';
}


.site-footer {
  background: #03385c;
  padding   : 40px 0;
  color     : #fff;
}

.footer-container {
  max-width: 1600px;
  margin   : auto;
  padding  : 0 40px;

  display        : flex;
  justify-content: space-between;
  align-items    : center;
}

.footer-left {
  display  : inline-block;
  gap      : 6px;
  color    : #ffffff;
  font-size: 16px;
}

.footer-right {
  float: right;
  width: 22%;
}

.footer-right p {
  font-size: 16px;
}

.info-wrapper {
  display      : flex;
  gap          : 16px;
  margin-bottom: 12px;
}

.info-wrapper a {
  text-decoration: none;
  color          : #ffffff;
  font-size      : 16px;
}

.footer-left p a {
  color          : #ffffff;
  text-decoration: underline;
  font-size      : 16px;
}

.footer-left p {
  color    : #ffffff;
  font-size: 16px;
}

.footer-center a {
  color          : #ffffff;
  text-decoration: underline;
}

.divider {
  opacity: 0.6;
}

.checkout {
  min-height: calc(100vh - 300px);
}

.left-panel,
.right-panel {
  background    : #fff;
  padding       : 0px;
  border-radius : 10px;
  display       : flex;
  flex-direction: column;
}

.tab-panel.active {
  display: block;
}

.tab-btn.active {
  background  : #e8f0ff;
  border-color: #00355a;
  color       : #00355a;
}

h1 {
  font-size  : 34px;
  color      : #00355a;
  font-weight: 700;
}

.checkout-layout {
  display    : flex;
  gap        : 30px;
  align-items: flex-start;
}

.checkout-layout .left-panel {
  width        : 29%;
  background   : #fff;
  border-radius: 6px;
  padding      : 0px;
}

.checkout .left-title {
  background   : #03355a;
  color        : #fff;
  padding      : 12px;
  border-radius: 4px;
  font-size    : 22px;
  font-weight  : 600;
  text-align   : center;
}

.checkout .address-box {
  border-bottom: 1px solid #ddd;
  padding      : 16px;
}

.address-box h4 {
  font-size    : 20px;
  margin-bottom: 10px;
  font-weight  : 600;
  color        : #00355a;
}

.address-box p {
  font-size : 16px;
  color     : #444b50;
  word-break: break-all;
}

.address-box .phone {
  font-weight    : 600;
  margin-top     : 10px;
  text-decoration: none;
  color          : #00355a;
}

.right-panel {
  width     : 70%;
  background: transparent;
}

.right-panel .tab-buttons {
  display      : flex;
  gap          : 10px;
  margin-bottom: 20px;
}

.right-panel .tab-btn {
  flex         : 1;
  padding      : 12px;
  border       : 0;
  border-radius: 2px;
  background   : #ffffff;
  cursor       : pointer;
  font-weight  : 600;
  width        : 100%;
  text-align   : left;
  font-size    : 20px;
  font-family  : 'Poppins';
}

.right-panel .tab-btn.active {
  background: #03355a;
  color     : #fff;
}

.tab-panel {
  display: none;
  padding: 40px 0;
}

.tab-panel.active {
  display: block;
}

.right-panel select {
  width              : 50%;
  background         : url(../img/down-arrow.png) #ffffff;
  background-repeat  : no-repeat;
  background-position: 96% 51%;
  color              : #444b50;
  font-size          : 17px;
  font-weight        : 400;
  padding            : 12px 15px;
  border             : transparent;
  border-radius      : 4px;
  outline            : transparent;
  font-family        : 'Poppins';
}

.right-panel .tab-panel .orange-massage {
  padding   : 14px;
  border    : 1px solid #ff781e;
  margin-top: 30px;
}

.right-panel .tab-panel .orange-massage p {
  font-size  : 16px;
  font-weight: 400;
  color      : #ff781e;
}

.right-panel .tab-item {
  margin-bottom: 18px;
}

.right-panel .tab-item .tab-panel .secondary-btn {
  margin-top: 30px;
}

.right-panel .radio-label-wrapper {
  display: flex;
}

.right-panel .radio-label-wrapper .radio-label {
  width: 50%;
}

.right-panel .radio-label-wrapper .radio-label label {
  width        : 100%;
  display      : flex;
  align-items  : center;
  margin-bottom: 14px;
  color        : #444b50;
  font-size    : 16px;
}

.right-panel .radio-label-wrapper .radio-label label input[type="radio"] {
  width       : 17px;
  height      : 17px;
  margin-right: 8px;
}

.right-panel .radio-label-wrapper .radio-label textarea {
  width        : 100%;
  color        : #000000;
  font-size    : 18px;
  font-weight  : 400;
  padding      : 16px;
  border       : transparent;
  border-radius: 4px;
  outline      : transparent;
  resize       : none;
}

.right-panel .radio-label-wrapper .radio-label:nth-child(1) {
  margin-right: 15px;
}

.right-panel .radio-label-wrapper .radio-label:nth-child(2) {
  margin-left: 15px;
}

.order-table {
  margin-bottom: 36px;
}

.order-product-table {
  border-collapse: collapse;
  background     : #fff;
  border-radius  : 8px;
  overflow       : hidden;
  table-layout   : fixed;
}

.order-product-table th,
.order-product-table td {
  padding      : 18px 16px;
  font-size    : 18px;
  color        : #444b50;
  text-align   : center;
  border       : 1px solid #d5d5d5;
  white-space  : nowrap;
  overflow     : hidden;
  text-overflow: ellipsis;
}

.order-product-table th {
  background : #444b50;
  color      : #fff;
  padding    : 16px;
  font-size  : 16px;
  text-align : center;
  font-weight: 500;
}

.order-product-table td {
  padding   : 12px 14px;
  font-size : 16px;
  color     : #444b50;
  text-align: center;
}

.order-table .order-product-table tfoot td {
  font-weight: 700;
}

.order-product-table th:nth-child(1),
.order-product-table td:nth-child(1) {
  width     : 450px;
  text-align: left;
}

.order-product-table th:nth-child(2),
.order-product-table td:nth-child(2) {
  width: 150px;
}

.order-product-table th:nth-child(3),
.order-product-table td:nth-child(3) {
  width: 150px;
}

.order-product-table th:nth-child(4),
.order-product-table td:nth-child(4) {
  width: 150px;
}

.order-product-table th:nth-child(5),
.order-product-table td:nth-child(5) {
  width: 150px;
}

.total-label {
  text-align: right !important;
}

.order-product-table tr:last-child td {
  border-bottom: none;
}

#panel-review .edit-cart {
  font-size     : 16px;
  color         : #444b50;
  letter-spacing: normal;
  margin-top    : 30px;
}

#panel-review .edit-cart a {
  text-decoration: underline;
  color          : #00355a;
  font-weight    : 600;
}

#panel-review h3 {
  font-size     : 22px;
  color         : #00355a;
  font-weight   : 700;
  letter-spacing: normal;
  margin        : 28px 0;
}

#panel-review .email-box .new-email-input {
  width        : 50%;
  color        : #444b50;
  font-size    : 17px;
  font-weight  : 400;
  padding      : 12px 15px;
  border       : transparent;
  border-radius: 4px;
  outline      : transparent;
  font-family  : 'Poppins';
  display      : none;
}

#panel-review .email-box {
  display    : flex;
  align-items: center;
}

#panel-review .email-box .add-email-btn {
  display        : flex;
  align-items    : center;
  gap            : 6px;
  margin-left    : 30px;
  text-decoration: none;
  color          : #444b50;
}

#panel-review .email-box .add-email-btn img {
  width: 23px;
}

#panel-review .label {
  margin-bottom: 28px;
  display      : block;
}

.cart-listing .heading-with-btn {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

.cart-listing .btn-warpper {
  display   : block;
  text-align: end;
}

.cart-listing .page-actions {
  display: flex;
  gap    : 18px;
}

.cart-listing .btn-warpper .page-actions-bottom {
  display        : grid;
  justify-content: end;
}

.cart-listing .btn-warpper .page-actions-bottom .secondary-btn {
  margin: 0;
}

.subtotal-box {
  margin: 28px 0;
}

.subtotal-box strong {
  font-size: 22px;
  color    : #00355a;
}

.action-buttons .remove-btn {
  background-image   : url(../img/remove-icon.png);
  background-repeat  : no-repeat;
  background-position: center;
  background-size    : 28px, cover;
  background-color   : transparent;
}

.payment-table-wrapper {
  width      : 100%;
  overflow-x : auto;
  padding-top: 45px;
}

.payment-table {
  width          : 100%;
  border-collapse: collapse;
  background     : #fff;
  border-radius  : 6px;
  overflow       : hidden;
}

.payment-table th,
.payment-table td {
  padding    : 18px 16px;
  font-size  : 18px;
  color      : #444b50;
  text-align : center;
  border     : 1px solid #d5d5d5;
  white-space: nowrap;
  overflow   : hidden;
}

.payment-table th {
  background : #444b50;
  color      : #fff;
  padding    : 16px;
  font-size  : 18px;
  text-align : left;
  font-weight: 600;
}

.payment-table td {
  padding   : 18px 16px;
  font-size : 18px;
  color     : #444b50;
  text-align: left;
}

.payment-table tr:last-child td {
  border-bottom: none;
}

.payment-table td {
  width: auto;
}

.payment-table td::before {
  content       : attr(data-label);
  font-weight   : 400;
  color         : #555;
  flex          : 1;
  display       : block;
  padding-bottom: 0px;
}

.invoice-wrapper {
  min-height: calc(100vh - 300px);
}

#payment_form {
  display   : none;
  margin-top: 22px;
}

#payment_form h3 {
  font-size       : 20px;
  color           : #fff;
  background-color: #444b50;
  font-weight     : 600;
  letter-spacing  : normal;
  padding         : 14px 0;
  text-align      : center;
}

#payment_form .payment-wrap {
  display: flex;
  gap    : 18px;
  margin-bottom: 20px;
  padding: 14px 0 0 0;
}

#payment_form .payment-wrap .payment-wrap-deatils .payment-method input {
  width        : 100%;
  color        : #000000;
  font-size    : 20px;
  font-weight  : 400;
  padding      : 13px 20px;
  border       : transparent;
  border-radius: 6px;
}

#payment_form .payment-wrap .payment-wrap-deatils .payment-method input::placeholder{
  font-size: 18px;
}

#payment_form .payment-wrap .payment-wrap-deatils .payment-method .text-field{
  font-size: 18px;
}

#payment_form .payment-wrap .payment-wrap-deatils .payment-method textarea {
  width        : 100%;
  color        : #000000;
  font-size    : 18px;
  font-weight  : 400;
  padding      : 13px 20px;
  border       : transparent;
  border-radius: 6px;
}

.payment-wrap-deatils,
.three-group-btn {
  width: 50%;
}

#payment_form .payment-method label{
  display: inline-block;
  margin: 8px 0;
}

.payment-method span{
  color: #ff0400;
}

#payment_form .payment-method .text-field{
  border: 1px solid #b9b9b9 !important;
  padding: 12px !important;
}

.phone-btn{
  text-decoration: none;
  display: inline-block;
}

#payment_form .payment-wrap .three-group-btn{
  align-content: center;
}

#payment_form .payment-wrap .three-group-btn .first-btn-info{
  text-align: center;
  margin-bottom: 14px;
}

#payment_form .payment-wrap .three-group-btn .secondary-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 18px auto;
  gap: 8px;
  text-transform: none;
} 

#payment_form .payment-wrap .three-group-btn .secondary-btn .icon{
  display: inherit;
}

#payment_form .payment-wrap .three-group-btn .secondary-btn .icon img{
  width: 24px;
}

#payment_form .btn-group .main-btn:first-child{
  margin-right: 14px;
}

#payment_form .payment-wrap .btn-group{
  margin: 18px 0 0 0;
}