:root {



  --primary_color: #cddc39;
  --secondary_color: #383948;
  --primary_text_color: #222222;
  --background_color: #f8f8f8;
  --section_bg: #f2f2f2;
  --text_color: #333;
  --link_color: #F44336;
  --text_muted: #6c757d;
  --header_bg: #eee;
  --nav_color: var(--text_color);
  --nav_bg: #fff;
  --grid_overlay_bg: rgba(1, 1, 1, 0.03);
  --border_color: #eee;
  --elements_bg: #fff;
  --elements_bg2: #f2f2f2;
  --forms_bg: #fff;
  --footer_background_color: #15192e;
  --footer_border: var(--footer_background_color);

}


[data-bs-theme=dark] {
    --background_color: #111424;
    --section_bg: #181c31;
    --header_bg: #121527;
    --elements_bg: #2a2f47;
    --elements_bg2: #343954;
    --nav_bg: #181c31;
    --nav_color: #fff;
    --text_color: #fff;
    --text_muted: #89949d;
    --border_color: #4e5374;
    --forms_bg: #343954;
    --grid_overlay_bg: rgba(255, 255, 255, 0.03);
  }



[data-bs-theme=dark] .logo-dark {
  display: none;
}
[data-bs-theme=dark] .logo-light {
  display: inline-block;
}
[data-bs-theme=dark] .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}
/*
[data-bs-theme=dark] .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.6em auto no-repeat;
}
  */

body {
  font-family: 'Mulish', sans-serif;
  background-color: var(--background_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  color: var(--text_color);
}
body > * {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

a {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  text-decoration: none;
  color: var(--link_color);
}
a:hover {
  color: var(--link_color);
}

@media (min-width: 1600px) {
  .container {
    max-width: 1350px;
  }
}

.logo img {
  height: 50px;
}

.page-link {
  background-color: var(--elements_bg);
  border-color: var(--elements_bg);
}
.page-link:hover {
  background-color: var(--elements_bg2);
  border-color: var(--elements_bg2);
}

.page-item.disabled .page-link {
  background-color: var(--elements_bg);
  border-color: var(--elements_bg);
}

.text-muted {
  color: var(--text_muted) !important;
}

.text-primary {
  color: var(--primary_color) !important;
}

.text-secondary {
  color: var(--secondary_color) !important;
}

.bg-primary {
  background-color: var(--primary_color) !important;
  color: var(--primary_text_color);
}

.bg-secondary {
  background-color: var(--primary_color) !important;
}

.link {
  cursor: pointer;
}
.link.link-primary {
  color: var(--primary_color) !important;
}
.link.link-secondary {
  color: var(--secondary_color);
}
.link:hover {
  opacity: .8;
}

.btn {
  border-radius: 6px;
  border-width: 2px;
  -webkit-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn.btn-md {
  padding: 9px 25px;
  font-size: 17px;
  font-weight: 500;
}
.btn.btn-lg {
  padding: 16px 25px;
  font-size: 17px;
  font-weight: 500;
  border-width: 1px;
}
.btn.btn-xl {
  padding: 20px 30px;
  font-size: 17px;
  font-weight: 500;
  border-width: 1px;
}
.btn.btn-primary {
  background-color: var(--primary_color);
  color: var(--primary_text_color);
  border-color: var(--primary_color);
}
.btn.btn-primary:hover {
  opacity: .9;
}
.btn.btn-secondary {
  background-color: var(--secondary_color);
  border-color: var(--secondary_color);
}
.btn.btn-secondary:hover {
  opacity: .9;
}
.btn.btn-outline-primary {
  border-color: var(--primary_color);
  color: var(--primary_color);
}
.btn.btn-outline-primary:hover {
  background-color: var(--primary_color);
  color: var(--primary_text_color);
}
.btn:focus, .btn:active {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn-close {
  width: .75em;
  height: .75em;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-size: .75em;
}

.btn-theme {
  padding: 10px 16px;
  font-size: 14px;
  background-color: var(--elements_bg);
  color: var(--text_color);
}
.btn-theme:hover {
  color: var(--text_color);
  opacity: 0.8;
  background-color: var(--elements_bg) !important;
}

.form-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form-number .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
  height: auto;
}
.form-number .form-select:focus {
  border-color: #ced4da;
}
.form-number .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.form-control {
  background-color: var(--forms_bg) !important;
  color: var(--text_color) !important;
  border-color: var(--border_color);
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-radius: 6px;
}
.form-control.form-control-md {
  padding-top: 10.75px;
  padding-bottom: 10.75px;
}
.form-control:focus {
  border-color: var(--primary_color);
}

.form-select {
  background-color: var(--forms_bg) !important;
  color: var(--text_color);
  border-color: var(--border_color);
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-radius: 6px;
}
.form-select.form-select-md {
  padding-top: 10.75px;
  padding-bottom: 10.75px;
}
.form-select:focus {
  border-color: var(--primary_color);
}

.form-check-input {
  background-color: var(--forms_bg);
  border-color: var(--border_color);
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.form-check-input:checked {
  background-color: var(--primary_color);
  border-color: var(--primary_color);
}

.form-switch .form-check-input {
  cursor: pointer;
}
.form-switch .form-check-input:not(:checked):focus {
  border-color: #888;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23888'/%3e%3c/svg%3e");
}

.settings-user-img {
  position: relative;
  width: 100px;
  height: 100px;
}
.settings-user-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.settings-user-img .settings-user-img-change {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: rgba(20, 20, 20, 0.15);
}
.settings-user-img .settings-user-img-change i {
  cursor: pointer;
  color: #6c757d;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.settings-user-img .settings-user-img-change i:hover {
  opacity: .7;
}

.settings-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.settings-links .settings-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #7d7d7e;
  padding: 15px 25px;
}
.settings-links .settings-link:not(:last-child) {
  margin-bottom: 10px;
}
.settings-links .settings-link::before {
  visibility: hidden;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--primary_color);
  border-radius: 20px;
  opacity: .05;
  z-index: 0;
}
.settings-links .settings-link:hover, .settings-links .settings-link.active {
  z-index: 0;
  color: #555;
}
.settings-links .settings-link:hover::before, .settings-links .settings-link.active::before {
  visibility: visible;
}
.settings-links .settings-link i {
  width: 35px;
}

.accordion-button {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-radius: 8px !important;
  color: var(--text_color);
  background-color: var(--elements_bg) !important;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 600;
  font-size: 18px;
}
.accordion-button::after {
  display: none;
}
.accordion-button .accordion-button-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.accordion-button:not(.collapsed) {
  color: var(--primary_color);
}
.accordion-button:not(.collapsed) .accordion-button-icon {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.accordion-item {
  border-radius: 8px !important;
  border: 1px solid var(--border_color) !important;
  background-color: var(--elements_bg);
}
.accordion-item:not(:last-child) {
  margin-bottom: 16px;
}

.accordion-body {
  border-top: 1px solid var(--border_color) !important;
}

.page-item.active .page-link {
  background-color: var(--primary_color);
  border-color: var(--primary_color);
}

.page-link {
  color: var(--primary_color);
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.page-link:hover {
  color: var(--primary_color);
}

.card {
  border-radius: 6px;
  background-color: var(--elements_bg);
  color: var(--text_color);
  overflow: hidden;
  border: 0;
}
.card.card-blog {
  width: 100%;
}
.card.card-blog img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-post {
  padding: 20px;
  color: var(--text_color) !important;
}
.blog-post .blog-post-img {
  height: 240px;
  border-radius: 5px;
}
.blog-post .card-body {
  padding: 20px;
}
.blog-post .blog-post-title {
  line-height: 1.7;
  color: var(--text_color);
}
.blog-post .blog-post-text {
  line-height: 1.7;
  font-weight: 300;
  font-size: 17px;
}

.comments {
  width: 100%;
}
.comments .comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--elements_bg2);
  padding: 30px 20px;
  border-radius: 10px;
}
.comments .comment .comment-img img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 16px;
}
.comments .comment .comment-text {
  font-size: 15px;
}
.comments .comment:not(:last-child) {
  margin-bottom: 16px;
}

.posts .post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.posts .post:not(:last-child) {
  margin-bottom: 16px;
}
.posts .post .post-img {
  border-radius: 10px;
  margin-right: 10px;
  width: 60px;
  height: 50px;
  -o-object-fit: cover;
  object-fit: cover;
}
.posts .post .post-info .post-title {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 5px;
}

.post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.post-meta .post-meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--text_muted);
  font-size: 14px;
  margin-top: 2px;
  margin-bottom: 2px;
}
.post-meta .post-meta-item:not(:last-child) {
  margin-right: 10px;
}
.post-meta .post-meta-item:not(:last-child)::after {
  content: '';
  width: 5px;
  height: 5px;
  background-color: #999;
  margin-left: 10px;
  border-radius: 50%;
}
.post-meta .post-meta-item i {
  margin-right: 5px;
}

.logo-dark {
  display: inline-block;
}

.logo-light {
  display: none;
}

.nav {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  height: 70px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
.nav .nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.nav .nav-inner .logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.nav .nav-inner .nav-actions-sm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .nav .nav-inner .nav-actions-sm {
    display: none;
  }
}
.nav .nav-inner .nav-menu-button {
  color: var(--nav_color);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  cursor: pointer;
}
.nav .nav-inner .nav-menu-button:hover {
  opacity: .8;
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1040;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    visibility: hidden;
    opacity: 0;
  }
}
.nav .nav-inner .nav-menu .overlay {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(17, 17, 26, 0.25);
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .overlay {
    display: block;
  }
}
.nav .nav-inner .nav-menu .nav-menu-close {
  cursor: pointer;
  color: #6c757d;
}
.nav .nav-inner .nav-menu .nav-menu-close i {
  font-size: 18px;
}
.nav .nav-inner .nav-menu .nav-menu-close:hover {
  opacity: .8;
}
.nav .nav-inner .nav-menu .nav-menu-scroller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: visible !important;
  height: 70px;
}
.nav .nav-inner .nav-menu .nav-menu-scroller .ps__rail-x, .nav .nav-inner .nav-menu .nav-menu-scroller .ps__rail-y {
  display: none !important;
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .nav-menu-scroller {
    display: block;
    position: absolute;
    width: 300px;
    top: 0;
    right: -300px;
    height: 100%;
    background-color: var(--nav_bg);
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    overflow: hidden !important;
  }
  .nav .nav-inner .nav-menu .nav-menu-scroller .ps__rail-x, .nav .nav-inner .nav-menu .nav-menu-scroller .ps__rail-y {
    display: block !important;
  }
}
.nav .nav-inner .nav-menu .nav-menu-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .nav-menu-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}
.nav .nav-inner .nav-menu .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .nav-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-left: 0;
  }
}
.nav .nav-inner .nav-menu .nav-links .nav-link {
  padding: 0;
  font-size: 19px;
  color: var(--nav_color);
  font-weight: 300;
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .nav-links .nav-link {
    margin-bottom: 10px;
  }
}
.nav .nav-inner .nav-menu .nav-links .nav-link:not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .nav-links .nav-link:not(:last-child) {
    margin-right: 0;
  }
}
.nav .nav-inner .nav-menu .nav-links .nav-link:hover {
  opacity: 0.7;
}
.nav .nav-inner .nav-menu .nav-links .nav-link.active {
  font-weight: 600;
}
.nav .nav-inner .nav-menu .nav-links .nav-drop {
  position: relative;
  z-index: 1030;
}
.nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  color: var(--nav_color);
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-btn {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-menu {
  visibility: hidden;
  position: absolute;
  top: 40px;
  left: -10px;
  background-color: var(--elements_bg);
  min-width: 200px;
  padding: 20px;
  border-radius: 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  opacity: 0;
  -webkit-transform: perspective(200px) translateZ(-200px);
  transform: perspective(200px) translateZ(-200px);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-menu {
    display: none;
    position: static;
    left: 0;
    width: 100%;
    margin-bottom: 10px;
  }
}
.nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-menu .nav-link {
  color: var(--text_color);
}
.nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-menu .nav-link:not(:last-child) {
  margin-bottom: 10px;
}
.nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-menu .nav-link:last-child {
  margin-bottom: 0;
}
.nav .nav-inner .nav-menu .nav-links .nav-drop.active .nav-drop-menu {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu .nav-links .nav-drop.active .nav-drop-menu {
    display: block;
  }
}
.nav .nav-inner .nav-menu .nav-links .nav-drop.animated .nav-drop-menu {
  -webkit-transform: perspective(200px) translateZ(0);
  transform: perspective(200px) translateZ(0);
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu.show {
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 1199.98px) {
  .nav .nav-inner .nav-menu.show .nav-menu-scroller {
    visibility: visible;
    opacity: 1;
    right: 0;
  }
}
.nav .nav-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1199.98px) {
  .nav .nav-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-left: 0;
  }
}
@media (max-width: 1199.98px) {
  .nav .nav-actions .btn-outline-light {
    color: var(--primary_text_color);
  }
}
.nav .nav-actions > *:not(:last-child) {
  margin-right: 10px;
}
@media (max-width: 1199.98px) {
  .nav .nav-actions > *:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.nav.nav-sticky {
  position: fixed;
  top: 0;
  left: 0;
  margin-top: 0;
  background-color: var(--nav_bg);
  z-index: 1030;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
.nav.nav-sticky .language .language-button {
  color: var(--text_color);
}
.nav.nav-sticky .nav-inner .nav-menu-button {
  color: var(--text_color);
}
.nav.nav-sticky .nav-inner .nav-menu .nav-links a {
  color: var(--text_color);
}
.nav.nav-sticky .nav-inner .nav-menu .nav-drop .nav-drop-btn {
  color: var(--text_color);
}
.nav.nav-sticky .nav-actions .btn-outline-light {
  color: var(--primary_text_color);
}

.header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--header_bg);
  min-height: 800px;
  overflow: hidden;
  z-index: 0;
}
.header.v2 {
  min-height: 320px;
}
.header .header-wrapper {
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 130px;
  padding-bottom: 40px;
  color: var(--text_color);
}

.mail-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 25px;
  gap: 16px;

  
}
@media (max-width: 1200px) {
  .mail-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.mail-wrapper .ad {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 1599.98px) {
  .mail-wrapper .ad:first-child {
    margin-bottom: 20px;
  }
}
@media (max-width: 1599.98px) {
  .mail-wrapper .ad:last-child {
    margin-top: 20px;
  }
}
.mail-wrapper .mail-selection {
  max-width: 600px;
  width: 100%;
  border: 2px dashed var(--border_color);
  border-image-source: url(../img/border-box.png);
  border-image-slice: 2;
  border-image-repeat: round;
  border-radius: 6px;
  padding: 30px 40px;
  margin-right: auto;
  margin-left: auto;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
@media (max-width: 575.98px) {
  .mail-wrapper .mail-selection {
    padding: 12px;
  }
}
.mail-wrapper .mail-selection .mail-select {
  position: relative;
  z-index: 50;
}
.mail-wrapper .mail-selection .mail-select .mail-input {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.mail-wrapper .mail-selection .mail-select .mail-input input {
  outline: 0;
  border: 0;
  border-radius: 6px;
  padding: 10px 200px 10px 24px;
  font-weight: 500;
  font-size: 18px;
  height: 60px;
  width: 100%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  border-radius: 200px;
  background-color: var(--elements_bg);
  color: var(--text_color);
}
@media (max-width: 991.98px) {
  .mail-wrapper .mail-selection .mail-select .mail-input input {
    height: 55px;
  }
}
.mail-wrapper .mail-selection .mail-select .mail-input .mail-input-copy {
  position: absolute;
  right: 8px;
  height: 80%;
  width: 52px;
  font-size: 14px;
  border-radius: 50%;
}
@media (max-width: 991.98px) {
  .mail-wrapper .mail-selection .mail-select .mail-input .mail-input-copy {
    width: 48px;
  }
}

.d-none {
  display: none;
}

.ad.ad-v {
  width: 200px;
  height: 600px;
}
.ad.ad-h {
  max-width: 720px;
  width: 100%;
  height: 90px;
}
.ad img {
  width: 100%;
  height: 100%;
}

.section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  z-index: 0;
}
.section.section-bg {
  background-color: var(--section_bg);
}
.section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section .section-header .section-title {
  font-weight: 700;
  margin-bottom: 20px;
}
.section .section-header .section-text {
  max-width: 750px;
  margin-inline: auto;
  color: #6c757d;
}

.mailbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 1199.98px) {
  .mailbox-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center !important;


  }
}
.mailbox-container .ad {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.mailbox-container .mail-content {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.mailbox {
  width: 100%;
  -webkit-box-shadow: 0px 30px 60px rgba(0, 19, 87, 0.04);
  box-shadow: 0px 30px 60px rgba(0, 19, 87, 0.04);
  border-radius: 6px;
  overflow: hidden;
}
.mailbox .mailbox-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  background-color: var(--primary_color);
  color: #fff;
}
.mailbox .mailbox-header .mailbox-header-item {
  padding: 18px;
}
.mailbox .mailbox-header .mailbox-header-item p {
  margin-bottom: 0;
}
.mailbox .mailbox-header .mailbox-header-item:first-child {
  width: 20%;
}
@media (max-width: 575.98px) {
  .mailbox .mailbox-header .mailbox-header-item:first-child {
    width: 30%;
  }
}
.mailbox .mailbox-header .mailbox-header-item:nth-child(2) {
  width: 58%;
}
@media (max-width: 575.98px) {
  .mailbox .mailbox-header .mailbox-header-item:nth-child(2) {
    width: 70%;
  }
}
.mailbox .mailbox-header .mailbox-header-item:nth-child(3) {
  width: 22%;
}
@media (max-width: 575.98px) {
  .mailbox .mailbox-header .mailbox-header-item:nth-child(3) {
    display: none;
  }
}
.mailbox .mailbox-body {
  background-color: var(--elements_bg);
  min-height: 426px;
}
.mailbox .mailbox-body .mailbox-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.mailbox .mailbox-body .mailbox-item:nth-child(even) {
  background-color: var(--elements_bg2);
}
.mailbox .mailbox-body .mailbox-item .mailbox-item-col {
  padding: 16px 18px;
}
.mailbox .mailbox-body .mailbox-item .mailbox-item-col p {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  margin-bottom: 0;
}
.mailbox .mailbox-body .mailbox-item .mailbox-item-col:first-child {
  width: 20%;
}
@media (max-width: 575.98px) {
  .mailbox .mailbox-body .mailbox-item .mailbox-item-col:first-child {
    width: 30%;
  }
}
.mailbox .mailbox-body .mailbox-item .mailbox-item-col:nth-child(2) {
  width: 58%;
}
@media (max-width: 575.98px) {
  .mailbox .mailbox-body .mailbox-item .mailbox-item-col:nth-child(2) {
    width: 70%;
  }
}
.mailbox .mailbox-body .mailbox-item .mailbox-item-col:nth-child(3) {
  width: 22%;
}
@media (max-width: 575.98px) {
  .mailbox .mailbox-body .mailbox-item .mailbox-item-col:nth-child(3) {
    display: none;
  }
}
.mailbox .mailbox-body .mailbox-item .mailbox-item-col time {
  color: var(--text_muted);
}
.mailbox .mailbox-body .empty {
  display: none;
}
.mailbox.empty .mailbox-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.mailbox.empty .mailbox-body .mailbox-item {
  display: none;
}
.mailbox.empty .mailbox-body .empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 426px;
}
.mailbox.empty .mailbox-body .empty .empty-icon .emptyInboxRotation {
  -webkit-animation: rotation 2s linear infinite;
  animation: rotation 2s linear infinite;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.feat {
  display: block;
  padding: 40px 30px;
  border-radius: 6px;
  color: var(--text_color);
  background-color: var(--elements_bg);
  height: 100%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.feat .feat-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  z-index: 0;
  color: var(--primary_text_color);
  background-color:var(--primary_color);
  border-radius: 6px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
  margin-bottom: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.feat .feat-icon i {
  font-size: 22px;
}
.feat .feat-title {
  margin-bottom: 10px;
}
.feat .feat-text {
  margin-bottom: 0;
  color: var(--text_muted);
  font-size: 17px;
  line-height: 1.7;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.feat:hover, .feat.active {
  color: var(--text_color);
  background-color: var(--primary_color);
}
.feat:hover .feat-icon, .feat.active .feat-icon {
  background-color: var(--elements_bg);
  color: var(--text_color);
}
.feat:hover .feat-text, .feat.active .feat-text {
  color: var(--text_color);
}

.faqs {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.language {
  position: relative;
  z-index: 1030;
}
.language .language-img {
  margin-right: 10px;
}
.language .language-img img {
  width: 16px;
  height: 12px;
}
.language .language-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
}
.language .language-button i {
  font-size: 20px;
}
.language .language-menu {
  display: none;
  position: absolute;
  top: 40px;
  right: -5px;
  width: 130px;
  background-color: var(--elements_bg);
  z-index: 0;
  max-height: 180px;
  opacity: 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.language .language-menu::before {
  background-color: var(--elements_bg);
  border-radius: 3px 0 0 0;
  -webkit-box-shadow: -2px -2px 5px rgba(82, 95, 127, 0.1);
  box-shadow: -2px -2px 5px rgba(82, 95, 127, 0.1);
  content: "";
  display: block;
  height: 12px;
  margin: 0 0 0 -6px;
  position: absolute;
  right: 10%;
  top: -5px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 12px;
  z-index: 0;
}
.language .language-menu a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 8px;
  color: var(--text_color);
  font-size: 14px;
  font-weight: 600;
}
.language .language-menu a:hover {
  background-color: var(--elements_bg2);
}
.language .language-menu a.active::after {
  content: '\f00c';
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 50%;
  right: 8px;
  width: 15px;
  height: 15px;
  background-color: #9797a7;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 10px;
  color: #fff;
}
.language.active .language-menu {
  display: block;
}
.language.animated .language-menu {
  opacity: 1;
}

.mail-history {
  border: 1px solid var(--border_color);
  border-radius: 5px;
  max-height: 50vh;
  overflow: auto;
}
.mail-history .mail-history-day {
  position: relative;
}
.mail-history .mail-history-day:not(:first-child) .mail-history-day-header {
  border-top: 1px solid var(--border_color);
}
.mail-history .mail-history-day .form-check {
  margin-right: 10px;
}
.mail-history .mail-history-day .mail-history-day-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: var(--primary_color);
  border-bottom: 1px solid var(--border_color);
  padding: 8px 20px;
  color: var(--text_color);
  text-transform: uppercase;
  z-index: 11;
}
.mail-history .mail-history-day .mail-history-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.mail-history .mail-history-day .mail-history-item .btn {
  visibility: hidden;
  position: absolute;
  right: 20px;
  opacity: 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.mail-history .mail-history-day .mail-history-item:hover {
  background-color: var(--elements_bg2);
}
.mail-history .mail-history-day .mail-history-item:hover .btn {
  visibility: visible;
  opacity: 1;
}

.footer {
  background-color: var(--footer_background_color);
}
.footer .footer-upper {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--text_color);
}
.footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}
.footer .footer-links a {
  margin: 10px;
  color: #f1f1f1;
  font-size: 17px;
}
.footer .footer-links a:hover {
  opacity: .9;
}
.footer .footer-lower {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #f1f1f1;
}

.cookies {
    visibility: hidden;
    position: fixed;
    max-width: 380px;
    padding: 30px;
    bottom: -150%;
    left: 40px;
    width: 100%;
    border-radius: 6px;
    background-color: var(--elements_bg);
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 90000;
    -webkit-transition: .7s;
    -o-transition: .7s;
    transition: .7s;
}

@media (max-width: 575.98px) {
    .cookies {
        max-width: 100%;
        left: 0 !important;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }
}

.cookies.show {
    visibility: visible;
    bottom: 40px;
}

@media (max-width: 575.98px) {
    .cookies.show {
        width: 100%;
        bottom: 0;
    }
}


.go-up {
  visibility: hidden;
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 50px;
  right: 50px;
  background-color: var(--primary_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary_text_color);
  cursor: pointer;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  opacity: 0;
  transition: .3s;
}
.go-up:hover {
  background-color: var(--secondary_color);
  color: #fff;
}
.go-up.show {
  visibility: visible;
  opacity: 1;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateL {
  0% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes rotateL {
  0% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@-webkit-keyframes circleAnimation {}
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes shapeAnimation {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@keyframes shapeAnimation {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
.gradient-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: 5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

@-webkit-keyframes float-1 {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
  }
  100% {
    -webkit-transform: translate(10%, 10%) scale(1.1);
    transform: translate(10%, 10%) scale(1.1);
  }
}
@keyframes float-1 {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
  }
  100% {
    -webkit-transform: translate(10%, 10%) scale(1.1);
    transform: translate(10%, 10%) scale(1.1);
  }
}
@-webkit-keyframes float-2 {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
  }
  100% {
    -webkit-transform: translate(-10%, -5%) scale(1.15);
    transform: translate(-10%, -5%) scale(1.15);
  }
}
@keyframes float-2 {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
  }
  100% {
    -webkit-transform: translate(-10%, -5%) scale(1.15);
    transform: translate(-10%, -5%) scale(1.15);
  }
}
@-webkit-keyframes float-3 {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: translate(-5%, 10%) scale(1.05);
    transform: translate(-5%, 10%) scale(1.05);
    opacity: 0.6;
  }
}
@keyframes float-3 {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: translate(-5%, 10%) scale(1.05);
    transform: translate(-5%, 10%) scale(1.05);
    opacity: 0.6;
  }
}
.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 40px 40px;
  background-image: -o-linear-gradient(left, var(--grid_overlay_bg) 1px, transparent 1px), -o-linear-gradient(top, var(--grid_overlay_bg) 1px, transparent 1px);
  background-image: linear-gradient(to right, var(--grid_overlay_bg) 1px, transparent 1px), linear-gradient(to bottom, var(--grid_overlay_bg) 1px, transparent 1px);
  z-index: 2;
}

.glow {
  position: absolute;
  width: 40vw;
  height: 40vh;
  background: -o-radial-gradient(circle, rgba(72, 0, 255, 0.15), transparent 70%);
  background: radial-gradient(circle, rgba(72, 0, 255, 0.15), transparent 70%);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  -webkit-animation: pulse 8s infinite alternate;
  animation: pulse 8s infinite alternate;
  -webkit-filter: blur(30px);
  filter: blur(30px);
}

@-webkit-keyframes pulse {
  0% {
    opacity: 0.3;
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 0.7;
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }
}
@keyframes pulse {
  0% {
    opacity: 0.3;
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 0.7;
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: var(--text_color);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.modal-content {
  background-color: var(--elements_bg) !important;
}

.theme-switcher {
  background-color: var(--elements_bg2);
  border: 1px solid var(--border_color);
  border-radius: 8px;
  width: 40px;
  height: 40px;
}
.theme-switcher .theme-switcher-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.theme-switcher .theme-switcher-button.active {
  display: none;
}
.theme-switcher:hover .theme-switcher-button {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}


/*by me */
.mail-wrapper {
    justify-content: center !important;

}
.btn-theme {
   /* background-color: #2a2f47 !important;*/
}

.mail-selection h1 {
    font-size: 20px;
}
.mail-actions{
    max-width: 600px;
    margin: auto;
    text-align: center;
}
.mail-actions button {
    margin: 4px;
}

.mail-actions button {
    width: 31%;
        white-space: nowrap;
}

.logo img {
    height: 40px;
}

.mail-wrapper .mail-selection .mail-select .mail-input input {

    padding: 10px 72px 10px 24px;

}

.mailbox-container .mail-content {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 750px;
}

.mailbox-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    justify-content: center;
}

.mailbox-header {
    color: var(--primary_text_color) !important;
}

@media (max-width: 562px) {
    .mail-actions button {
        width: 44% !important;
    }
  }


  @media (max-width: 378px) {
    .mail-actions button {
        width: 100% !important;
    }
  }


  @media (max-width: 575.98px) {


    .mail-history-item span {
        display: none !important;
    }

    .mail-history-item .email , .mail-history .mail-history-day .mail-history-day-header  {
        font-size: 14px !important;
    }

    .go-up {
        visibility: hidden;
        position: fixed;
        width:40px  !important;
        height: 40px !important;
        bottom: 50px !important;
        right: 16px !important;
    }

}

.label_bluer {
    font-size: 12px;
    color: var(--primary_color);
}

.mail-history {
    max-height: 50vh;
    min-height: 50vh;
    overflow: auto;
}

.mail-history-empty {
    display: flex
;
    height: 48vh;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
}

.recovery-key-box strong {
    text-align: center;
    color: var(--primary_text_color);
    background: var(--primary_color);
    border-radius: 5px;
    padding: 10px;
}
.recovery-key-box {
    background:#343954;
    border-radius: 5px;
    text-align: center;
    padding: 10px;
    color: #fff;
}

#qrcode img {
    margin: auto;
}

.select2-dropdown {
    border-color: #eee;
}

.select2-container .select2-selection--single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40.5px;
    border-color: #eee;
    min-width: 135px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: unset;
}

.select2-container .select2-selection--single .select2-selection__arrow {
    height: 38.5px;
}

.select2-container .select2-selection--multiple {
    padding-top: 5px;
    padding-bottom: 5px;
    min-height: 40.5px;
    border-color: #eee;
}

.select2-container .select2-selection--multiple:focus {
    border-color: #eee;
}

.select2-container.select2-container--focus .select2-selection--multiple {
    border-color: #eee;
}

.select2-container {
    z-index: 200000000000;
}

.select2-container-custom-span {
    display: block;
    position: relative;
}

.select2-container-custom-span i {
    position: absolute;
    right: 5px;
    top: 5px;
    color: #ffc107;
}

span.select2-selection.select2-selection--single {
    height: 47px !important;
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
    border-radius: 8px !important;
}

span.select2-selection__arrow {
    height: 47px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 43px  !important;
}


[data-bs-theme=dark] span.select2-selection.select2-selection--single {
    background: #343954 !important;
}

[data-bs-theme=dark] .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff;
    line-height: 28px;
}

ul#select2-name_domain-results {
    color: var(--primary_text_color);
}


.viewbox-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    justify-content: center;

}

@media (max-width: 1199.98px) {
    .viewbox-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.viewbox-container .ad {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.viewbox-container .box-content {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 850px;

}

.viewbox {
    width: 100%;
    -webkit-box-shadow: 0px 30px 60px rgba(0, 19, 87, 0.04);
    box-shadow: 0px 30px 60px rgba(0, 19, 87, 0.04);
    border-radius: 6px;
    overflow: hidden;
}

.viewbox .viewbox-body {
    background-color: var(--elements_bg);
}

.viewbox .viewbox-header {
    background-color: var(--primary_color);
    color: var(--primary_text_color);
}


.mailbox .mailbox-body .mailbox-item {

    position: relative;
}

.mailbox .mailbox-body .mailbox-item .mailbox-item-col p {
    color: var(--text_color);
  }

  .mailbox-custom-link{
    cursor: pointer;
}


.viewbox-container .ad {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.viewbox-container .box-content {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 850px;

}


.viewbox {
    width: 100%;
    -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 16px;
    overflow: hidden;
}

.viewbox .viewbox-header {
    background-color: var(--primary_color);
    color: var(--primary_text_color);
    padding: 8px 20px;
}


.viewbox .viewbox-body {
    background-color: var(--elements_bg);
    min-height: 426px;
}

.viewbox-header i {
    margin: 10px;
    font-size: 20px;
}

.viewbox-header .text-muted {
    --bs-text-opacity: 1;
    color: var(--secondary_text_color) !important;
}

.viewbox-attachments {
    padding: 15px 25px;
    position: relative;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid var(--primary_text_color);
}

.viewbox-attachments .card {
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: hidden;
    border: 1px solid #e2e2e2;
    margin: 5px 0px;
}

.viewbox-attachments .card-body {
    padding: 9px !important;
}


.viewbox-attachments img {
    width: 48px !important;
}

.viewbox-attachments i {
    color:var(--text_color);
}


.viewbox-attachments .file-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.viewbox .text-muted {
    font-size: 12px;
    font-weight: 600;
}

.can_see_attachments {
    position: absolute;
    width: 100%;
    height: 100%;
    background:var(--primary_color);
    right: 0;
    top: 0;
    z-index: 100;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.btn-icon {
    border: 0;
    background: transparent;
    margin: 0;
    padding: 0;
    color: var(--primary_text_color);
    display: block;
}

.btn-icon:hover{
    opacity: 0.8;
}


.is_seen_message {
    position: absolute;
    top: 5px;
    right: 9px;
    background-color: var(--primary_color);
    display: block;
    padding: 2px 6px;
    font-size: 9px;
    border-radius: 5px;
    color: var(--primary_text_color);
}


.tag-cloud a {
    background: var(--primary_color);
    color: var(--primary_text_color);
    padding: 6px 10px;
    border-radius: 5px;
    margin: 3px;
}

.tag-cloud {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}


.post-meta {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.post-meta i {
    margin-right: 5px;
}



.post-meta i {
    color: #555;
}



.meta-item {
    position: relative;
    padding: 6px 12px;
    z-index: 0;
    color: var(--secondary_text_color);
    margin-bottom: 5px;
    text-transform: capitalize;
    font-size: 14px;
    border-radius: 8px;
    display:inline-block;
    margin-right: 10px;

    color: var(--primary_text_color);
}

.meta-item a:hover {
   color: var(--secondary_color);
}



.meta-item i , .meta-item a {
    color: var(--secondary_text_color);
}

.meta-item::before {
   content: "";
   position: absolute;
   background-color: var(--primary_color);
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: -1;
   border-radius: 8px;
}


.card.card-blog img {
    width: 100%;
    max-height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
}


.post-ad img {
    height: 100% !important;
    width: 100% !important;
    border-radius: 0px !important;
}
.post-ad {
    margin: auto;
    display: block;
    height: 100%;
    width: 100%;
}



.recovery-para {
    padding: 0;
    margin: 0px;
    margin-bottom: -24px;
}


.share_btns {
    text-align: center;
    display: inline-block;
    margin-top: 10px;
}

.share_btns p , .trustpilot p{
    text-align: center;
    font-size: 18px;
    margin-top: 6px;
    color: var(--text_color);
    font-weight: 700;
    
}




.trustpilot-btn {
    margin-top: 5px;
    margin-bottom: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    color: var(--text_color);
    text-decoration: none;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    transition: 0.3s ease;
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 16px;
}


.trustpilot-btn img {
    width: 230px;

}

.tp-logo-dark {
    display: none;
}

/* When Bootstrap Dark Mode is active */
[data-bs-theme="dark"] .tp-logo-light {
    display: none;
}

[data-bs-theme="dark"] .tp-logo-dark {
    display: inline-block;
}

                        

/*# sourceMappingURL=style.css.map */
