@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@charset "UTF-8";
:root {
  --menu-title-height: 60px;
  --m-b-width:15px;
  --m-b-height: 110px;
}
.background-grey {
  background-color: var(--grey-color, #EFEEEE) !important;
}
.gh-body {
  color: var(--main-text-color, #777);
  /*font-family: Open Sans;*/
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal; 
}

.getstarted {
  cursor: pointer;
}
.gh-container {
  margin: 0 0 35px 55px;
}
@media (max-width: 991px) {
  .gh-container {
    margin: 0 0 35px 0px;
  }
}
label.required:after {
  content: " *";
  color: red;
}
.text-red {
  color: var(--main-red, #DC3545);
}
.text-green {
  color: var(--main-green, #3fad46);
}

/*--------------------------------------------------------------
# FULL SCREEN
--------------------------------------------------------------*/
.main-menu {
  display: flex;
  align-items: center;
  height: 69px;
  padding: 0 20px;
}
.main-container {
  width: 100%;
  display: flex;
  /* flex-wrap: wrap; */
}
.page-content {
  overflow: auto;
  padding: 0 140px 80px;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .page-content {
    padding: 20px;
  }
  .main-menu {
    padding: 0 10px;
  }
}
.page-menu {
  background: var(--grey-color, #EFEEEE);
  position: relative;
}
.left-menu, .additional-menu {
  overflow: hidden;
  overflow-y: visible;
}
.page-menu .page-menu-container {
  width: 295px;
  transition: all 250ms ease 0s
}
.page-menu.minimized .page-menu-container{
  width: 74px;
}
.page-menu.minimized .accordion-button::after {
  display: none;
}
.menu-accordion-title {
  /*margin-right: 20px;*/
  font-weight: 700;
}

.page-menu-container {
  position: sticky;
  top: 69px;
  z-index: 100;
  max-width: 400px;
}
.page-menu-container .menu-body {
  max-height: 84vh;
  overflow: auto;
}
.menu-title {
  height: var(--menu-title-height, 80px);
  background: var(--grey-color, #EFEEEE);
  display: flex;position: sticky;
  z-index: 100;
  width: 100%;
  align-items: center;
  padding-right: 20px;
  overflow: hidden;
}
.page-menu .accordion-collapse {
  overflow: hidden;
  max-height: 1000px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}
.page-menu.minimized .accordion-collapse {
  max-height: 0;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);  
}
.page-menu.minimized #menu-projects-list-title .accordion-header {
  display: none;
}
.page-menu.minimized .hide-on-minimize {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.page-menu .menu-item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.page-menu .sub-menu-items img {
  margin-right: 10px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
}


.minimized #menu-resize-block {
  transform: rotate(180deg);
  border-radius: 20px 0px 0px 20px;
  border-top: 1px solid var(--delimiter-color, #D7D7D7);
  border-left: 1px solid var(--delimiter-color, #D7D7D7);
  border-bottom: 1px solid var(--delimiter-color, #D7D7D7);

  border-right: unset;
}
#menu-resize-block {
  position: relative;
  left: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* transition: transform 0.3s; */
  cursor: pointer;
  height: var(--m-b-height);
  border: none;
  /* background-color: var(--delimiter-color, #777); */
  background-color: var(--grey-color, #EFEEEE);
  border-radius: 0px 20px 20px 0px;
  border-top: 1px solid var(--delimiter-color, #D7D7D7);
  border-right: 1px solid var(--delimiter-color, #D7D7D7);
  border-bottom: 1px solid var(--delimiter-color, #D7D7D7);
}

#menu-resize-block::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 3px solid var(--primary-color, #37517e);
  border-left: 3px solid var(--primary-color, #37517e);
  transform: translate(-40%, 21%) rotate(45deg);
  transform-origin: 100% 100%;
}
#menu-resize-container > * {
  width: 100%;
}
#menu-resize-container {
  position: absolute;
  right: calc(-1*var(--m-b-width));
  width: var(--m-b-width);
  align-items: center;
  justify-content: center;
  border: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--main-background, #fafafa);
  border-left: 1px solid var(--delimiter-color, #D7D7D7);
}
.flex-in-line {
  display: flex;
  align-items: center;
}


.menu-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-menu .menu-item img.menu-icon,
.page-menu .menu-item i.bi {
  padding: 0 20px 0 10px;
}
.page-menu .menu-item img.menu-icon
{width: 50px;
height: 20px;}
.page-menu .menu-item .sub-menu-item i.bi {
  padding: 0;
}

.page-menu .additional-menu .menu-block .menu-block-title {
  margin-bottom: 15px;
  color: var(--highlight-text-color, #1C1D26);
  font-weight: 700;
}
.page-menu .menu-item {
  padding: 0 20px 0 20px;
}
.page-menu .sub-menu-items .sub-menu-item {
  font-weight: 500;
}
.page-menu .sub-menu-items {
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  gap:20px
}
.page-menu hr {
  margin: 1px 25px 1px 30px;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: .25;
}
.page-menu .accordion-button:not(.collapsed) {
  box-shadow: unset;
}

.page-menu .menu-item span,
.page-menu .menu-item a {
  white-space: nowrap;
  overflow: hidden;
  color: var(--title-text-color, #37517e);
}
.page-menu .additional-menu {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page-menu .additional-menu .menu-block{
  gap: 10px;
}
.page-menu.minimized .additional-menu{
  display: none;
}
.max-w-240 {
  width: min(240px, 100%);
}
.flex-gap-40 {
  display: flex;
  gap: 40px;
}

/*--------------------------------------------------------------
# H - fonts
--------------------------------------------------------------*/
h1.gh-h1,
h2.gh-h2 {
  color: #444;
  /*font-family: Open Sans;*/
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
/*--------------------------------------------------------------
# Domains register Section
--------------------------------------------------------------*/

#top-line {
  width: 100%;
  height: 69px;
  min-height: 69px;
  background: var(--menu-color-top, #37517e);;
}
#header .container {
  min-height: 69px;
}
h1.title, h2.title, h3.title, h4.title, h5.title{
  text-align: center;
}
 
#domains-reg {
  width: 100%;
  height: 555px;
  background-image: url('/assets/img/domain_registration.webp');
  padding: 40px 20px;
  background-color: var(--menu-color-top, #37517e);
  background-size: cover;
  background-position: center;
  color: var(--white-color, #fff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#domains-reg .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap:40px;
  max-width: 888;
}

#domains-reg .container {
  padding-top: 18px;
}

  #domains-reg h1 {
    text-align: center;
    font-size: 60px;
    font-weight: 700; 
  }

  #domains-reg h2 {
    color: var(--white-color, #fff);
    text-align: center;
    font-size: 20px;
    font-weight: 700;
  }

  #domains-reg .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }
  @media (max-width: 991px) {
   
    #domains-reg .animated {
      -webkit-animation: none;
      animation: none;
    }

    #domains-reg .hero-img {
      text-align: center;
    }

    #domains-reg .hero-img img {
      width: 50%;
    }
  }

  .domainsList {
    padding-top: 36px;
  }
  #order-total-cost {
    margin: 0.5rem !important;
    min-height: 4rem !important;
    display: block;
  }
  #order-total-cost #total-cost {
    display: inline-block;
    min-width: 100px;
  }
  #order-total-cost #to_pay-button {
    display: inline-block;
    min-width: 100px;
  }
  #order-total-cost,
  .domainsList-whois {
    min-height: 24px;
    vertical-align: center;
    padding-top: 12px;
    /*border-top: 1px dashed #e0e0e0;*/
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    font-size: 24px;
    border-bottom: 1px dashed #e0e0e0;
  }
  .domainsList-whois .domain-link  a{
    color: #000;
  }
  .domainsList-whois img{
    margin-top: -13px !important;
  }
  .domainsList-whois .btn-whois{
    text-align: center;

    min-width: 100px;
  }
  .domainsList-whois .btn  {
    margin: -7px 0px 0px 0px;
  }
  /*
  .domainsList-whois:last-child{
    border-bottom: 1px dashed #e0e0e0;
  }
  */
  .domainsList-whois .ipv4 img  {
    padding: 10px 10px 0px 0px;
    width: 48px;
  }

  /* #tabpane-domains {
    max-height: 320px;
  } */

  /*.nav-tabs { border-bottom: 2px solid #DDD; }

  .nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover { border-width: 0;}
  .nav-tabs > li > a { border: none; color: var(--fotte-background-color, #34495E); }
      .nav-tabs > li.active > a, .nav-tabs > li > a:hover { border: none; color: var(--fotte-background-color, #34495E) !important;}
      .nav-tabs > li > a::after { content: ""; background: var(--fotte-background-color, #34495E); height: 2px; position: absolute; width: 100%; left: 0px; bottom: -1px; transition: all 250ms ease 0s; transform: scale(0); }
  .nav-tabs > li.active > a::after, .nav-tabs > li:hover > a::after { transform: scale(1); }
  .tab-nav > li > a::after { background: #46b8da none repeat scroll 0% 0%; color: #fff;}
  .tab-pane { padding: 15px 0; }
  .tab-content{padding:20px}

  .card {background: #FFF none repeat scroll 0% 0%; box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3); margin-bottom: 30px; } */


  .label-domains-extra {
    padding: 1px 3px 2px;
    font-size: 10px;
    font-weight: 400;
    color: var(--white-color, #fff);
    text-transform: uppercase;
    white-space: nowrap;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
/*--------------------------------------------------------------
# Domains register Section End
--------------------------------------------------------------*/
.badge-outline {
  color: black;
  border: 1px solid #999;
  background-color: transparent;
}
.badge-success {
  /* color: black;
  border: 1px solid #999; */
  background-color: #198754;
}

.badge-warning {
  /* color: black;
  border: 1px solid #999; */
  background-color: #ffc107;
}

.badge-danger {
  /* color: black;
  border: 1px solid #999; */
  background-color: #dc3545;
}
.badge-info {
  /* color: black;
  border: 1px solid #999; */
  background-color: #6c757d;
}


.outline-gh {
  color: var(--white-color, #fff);
  border-color: var(--white-color, #fff);
}

.outline-gh:hover {
  color: var(--white-color, #fff);
  background-color: transparent;
  border-color: var(--white-color, #fff);
}

.backspace { margin-left: 4px; }

.gh-link-white {
  color: var(--white-color, #fff);
}

.float-right {
    float: right;
}
.float-left {
    float: left;
}
.indent-40 {
    text-indent: 40px;
}

.btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: var(--primary-background-color, #47b2e4);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 10px;
  margin-bottom: 40px;
  border: 2px solid var(--primary-background-color, #47b2e4);
}

.btn-learn-more:hover {
  background: var(--primary-background-color, #47b2e4);
  color: var(--white-color, #fff);
  text-decoration: none;
}
/* ----------------------- */
.gohost-products i.bi {
    font-size: 30px;
    display: block;
    text-align: center;
}
.gohost-products {
    text-align: center;
    margin-bottom: 20px;
    position:relative;
}

.gohost-products .product-item  h5{
    color: var(--menu-color-top, #37517e);
}
/* .gohost-products .product-item:hover  h5, .gohost-products .product-item:hover i.bi{
    color: var(--primary-background-color, #47b2e4);
}
.gohost-products .product-item:hover {
  transform: translateY(-10px);
  cursor: pointer;
} */
.gohost-products .buy-btn-container{
    /*position: absolute;*/
    width: 100%;
    bottom: 0px;
    padding: 15px;
    left: 0px;
}
.modal-dialog .modal-content {
  background-color: var(--main-background, #f3f5fa);
}
.modal-body .buttons {
    float: right;
    padding: 5px;
}
.modal-body .buttons .btn {
    margin: 5px;
}


/* client area */
.mw-20 {
  min-width: 20%;
}
.maxw-250px {
  max-width: 250px;
}
.product-name {
  color: var(--highlight-text-color, #2C2A28);
  /*font-family: Open Sans;*/
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal; 
}
.product-description {
  color: var(--highlight-text-color, #2C2A28);
  /*font-family: Open Sans;*/
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: normal; 
}
.product-description-link {
  color: var(--primary-color, #31a9e1);
  text-decoration: underline dotted var(--product-description-link-underline, #F3A244);
}
#client-area .product-card {
    padding: 40px 30px 40px;
}

#client-area .product-card .title {
    font-size: 22px;
}

.client-area-card {
    max-height: 300px;
}

.icon-box .tile .icon i {
    font-size: 60px;
    color: #ccc;
}

.tiles {
    margin: 0 15px 15px 15px;
}

.tiles .tile {
    position: relative;
    background-color: #f8f8f8;
    border: 1px solid #ccc;
}

.tile .icon {
    position: absolute;
    right: 0px;
    font-size: 48px;
    line-height: 1;
    color: #ccc;
}

.tile .label-active {
    margin-top: 5px;
    font-size: 40px;
    color: #337ab7;
}

.tile .label {
    margin-top: 5px;
    font-size: 15px;
    position: absolute;
    top: 0px;
    left: 10px;
}

.label-default {
    background-color: var(--main-text-color, #777);
}

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: var(--white-color, #fff);
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

.tile .title {
    font-weight: bold;
    color: #888;
    text-transform: uppercase;
    font-size: 12px;
}

.tiles .tile .highlight {
    margin-top: 4px;
    height: 2px;
    border-radius: 2px;
}

.highlight {
    padding: 0px 25px 25px 25px;
    margin-bottom: 14px;
    background-color: #f7f7f9;
    border: 1px solid #e1e1e8;
    border-radius: 4px;
}

.bg-color-blue {
    background-color: #5bc0de;
}

.bg-color-green {
    background-color: #5cb85c;
}

.bg-color-red {
    background-color: #d9534f;
}

.bg-color-gold {
    background-color: #f0ad4e;
}

/* client area -> services */

.product-icon {
    width: 35px;
}

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: var(--white-color, #fff);
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

.status {
    display: block;
    font-size: 0.9em;
    line-height: 22px;
    background-color: #888;
}
.status-mark {
    display: block;
    font-size: 0.9em;
    line-height: 22px;
    width: 1rem;
    height: 1rem;
    background-color: #888;
    border-radius: 10px;
}

.status-terminated {
    background-color: #666;
}

.status{display:block;font-size:0.9em;line-height:22px;background-color:#888;}
.status-custom{background-color:white;color:black;border:1px solid black;padding:1px;}
.status-pending{background-color:#D9534F;}
.status-pending.transfer{background-color:#A68500;}
.status-suspended{background-color:#F0AD4E;}
.status-customer-reply{background-color:#ff6600;}
.status-fraud,
.status-answered{background-color:#000000;}
.status-expired{background-color:#004258;}
.status-cancelled{background-color:#9FA29A;}
.status-terminated{background-color:#666;}
.status-onhold{background-color:#224488;}
.status-inprogress{background-color:#cc0000;}
.status-closed{background-color:#888;}
.status-paid{background-color:#498302;}
.status-unpaid{background-color:#ED3E48;}
.status-cancelled{background-color:#87939F;}
.status-collections{background-color:#9A141E;color:var(--white-color, #ffffff);}
.status-refunded{background-color:#319FC3;}
.status-customer-reply{background-color:#ff6600;}
.status-delivered{background-color:#224488;}
.status-accepted{background-color:#498302;}
.status-lost, .status-dead{background-color:var(--white-color, #fff);border:1px solid #000000;color:#000000;}

.status-active, .status-open {
    background-color: #3fad46;
}

.product-container { 
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: left;
}

.product-card h4 {
  height: 58px;
}
.product-card {
  width: 300px;
  cursor: pointer;
  margin-bottom: 15px;
  /* border: 1px solid #e6e6f8; */
  /* border-radius: 5px; */
}
.protact-data .protact-name, .protact-data .protact-domain {
  margin: 0 5px;
  height: 72px;
}
.protact-name-add {
  font-size: 30;
}
.protact-data .protact-logo {
  font-size: 45;
}
.protact-title {
  width: 100%;
}

/* END client area -> services */

/* client area -> service details*/

.cursor-pointer {
    cursor: pointer;
}

.fa-stack {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2em;
}
div.product-details div.product-icon {
    margin: 0;
    padding: 0;
    background-color: #efefef;
    border-radius: 10px;
    padding: 30px;
    font-size: 60px;
    line-height: 1em;
}

.product-status-text {
    padding: 5px;
    color: var(--white-color, #fff);
    text-align: center;
    text-transform: uppercase;
}

.btn-block {
    display: block;
    width: 100%;
}

.vm-params-icon {
    flex-basis: 150px !important;
}

/* END client area -> service details*/


.bordered-solid-1 {
  border: 1px solid;
}
.border-light-gh {
  border-color: #dee2e6;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.1)!important;
}

.overlay::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid #ccc;
  border-top-color: #333;
  animation: spin 2s linear infinite;
  z-index: 1000;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Gh card section
--------------------------------------------------------------*/

.gh-card {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: var(--white-color, #fff);
}

/*--------------------------------------------------------------
# Gh card section End
--------------------------------------------------------------*/

.form-group label {
  font-weight: 700;
  
}
.form-group {
  margin: 10px;
}

header .navbar-mobile #cart-link .cart-icon {
  display: none;
}
header .navbar-mobile #cart-link .cart-caption {
  display: inline-block;
}
header #cart-link .cart-caption {
  display: none;
}
#cart-link sup {
  font-size: 9px;
}

.empty-cart .btn {
	margin: 0;
	padding: 4px 10px;
	background-color: var(--primary-background-color, #058);
	border: 0;
	color: var(--white-color, #fff);
	border-radius: 0 0 4px 4px;
}
.cart .card .card-body .item:nth-child(odd) {
  background-color: #f1f1f142;
}

.cart .card .card-body .item:nth-child(even) {
  background-color: var(--grey-color, #37517e);
}
.order-summary {
	margin: 0 0 20px 0;
	padding: 0;
	background-color: #666;
	border-bottom: 3px solid #666;
	border-radius: 4px;
}
.cart {
  line-height: 1;
}
.card.card-rounded-top {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.cart .card {
  border-bottom: 2px solid var(--primary-background-color, #058);
  line-height: 1.5;
}
.btn-remove-from-cart {
  color: var(--primary-background-color, #0d6efd) !important;
}
.order-summary .subtotal {
	margin: 0;
	padding: 0 0 5px 0;
	font-size: 1.2em;
	border-bottom: 1px solid #ddd;
}
.order-summary .recurring-totals {
	margin: 5px 0 0 0;
	padding: 0;
}
.order-summary .recurring-charges {
	font-size: .9em;
	color: var(--main-text-color, #777);
	font-style: italic;
	text-align: right;
}
.summary-container {
	font-size: .8em;
}

.order-summary .total-due-today-padded {
	margin: 20px 0;
}
.order-summary .total-due-today .amt {
	font-size: 2.3em;
}

.spinner-container-100 {
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fdfdfd73;
}
.spinner-container-100 .spinner-border {
  width: 20vh;
  height: 20vh;
  margin-left: auto;
  margin-right: auto;
}
#page-spinner .preloader {
  opacity: 0.9;
}
.select-inline {
  display: inline-block !important;
  width: auto !important;
}

/* invoice */

.invoice-container {
    margin: 15px auto;
    padding: 70px;
    max-width: 850px;
    min-height: 1202px !important;
    background-color: var(--white-color, #fff);
    border: 1px solid #ccc;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
}

.invoice-container .invoice-status {
    margin: 20px 0 0 0;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
}

.paid {
    color: #779500;
}

.unpaid {
    color: #cc0000;
}
#tbl-list-ticket_paginate .pagination .paginate_button.page-item.active .page-link,
.pagination .paginate_button.page-item.active .page-link,
.page-item.active .gh.page-link {
	z-index: 3;
	color: #fff;
	background-color: var(--active-color, #37517e);;
	border-color: var(--active-color, #37517e);;
}
.btn-gh-order-bk {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: var(--white-color, #fff);
    background: #1C1D26;
}
.btn-gh-order-bk:hover {
    background: #EB5E28;
    color: var(--white-color, #fff);
    /*background: var(--fotte-background-color, #209dd8);*/
}
.gh-title,
.order h1 {
  color: #444;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.order .gh-title {
  margin-bottom: 60px;
}

/*--------------------------------------------------------------
# ORDER SECTION
--------------------------------------------------------------*/
.product-options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px; 
}
.nav.nav-tabs {
  color: #444;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding-bottom: 10px;
}
.gh-panel-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
}
.gh-panel {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: var(--grey-color, #EFEEEE); 
  padding: 20px 15px;
  border: 1px solid transparent;
  /* overflow: hidden; */
}
.gh-panel:hover {
  border: 1px solid var(--primary-background-color, #47b2e4);;
}
.gh-panel-no-border {
  border: none;
}
.gh-panel-medium-fixed {
  width: 306px;
  height: 224px;
}
@media (max-width: 350px) {
  .gh-panel-medium-fixed {
    width: 280px;
    height: 224px;
  }
}
.gh-panel-quarter-md {
  width: 25%;
  min-width: 306px;
}
@media (max-width: 767px) {
  .gh-panel-quarter-md {
      width: 100%;
  }
}
.gh-panel.gh-panel-br-5 {
  border-radius: 5px;
  border: 1px solid #ddd;
}
/**
 *
 * BALOONS
 *
 */
.gh-panel-baloon {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  border: 1px #ddd solid;
  width: 100%;
  padding: 11px 25px;
}
.gh-panel-baloon-title {
  display: flex;
  border-radius: 20px;
  width: 100%;
  padding: 35px 25px 0 22px;
  border: 1px solid transparent;
}
.gh-zone-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  width: 200px;
  height: 130px;
  padding: 20px; 
  border: 2px solid var(--light-grey-color, #777);
  background: var(--grey-color, #EFEEEE);
  border-radius: 20px;
  box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--grey-color, #EFEEEE);
}
@media (hover: hover) and (pointer: fine) {
  .gh-zone-panel:hover {
    border: 2px solid var(--primary-background-color, #47b2e4);
  }
}
.gh-zone-title {
  color: var(--title-text-color, #444);
  /*font-family: "Open Sans";*/
  font-size: 32px;
  font-weight: 700;
}
.gh-zone-body {
  color: var(--title-text-color, #444);
  /*font-family: "Open Sans";*/
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

input[type="checkbox"]:checked+.gh-zone-panel,
input[type="radio"]:checked+.gh-zone-panel {
  border: 2px solid var(--primary-background-color, #47b2e4); 
  box-shadow:unset;
}
input[type="radio"]:disabled+.gh-zone-panel {
  cursor: not-allowed;
}
input[type="radio"]:disabled+.gh-zone-panel>* {
  opacity: 0.3;
}

.gh-panel.common-baloon {
  padding: 0;
}

.common-baloon {
  width: 100%;
  border-radius: 10px !important;
  border: 1px solid #DDD;
  background: linear-gradient(0deg, var(--grey-color, #F4F4F4) 0%, var(--grey-color, #F4F4F4) 100%), var(--main-white, #EFEEEE);
  transition: 0.2s;
}
.common-baloon:hover {
  border: 1px solid var(--primary-background-color, #47b2e4);
  border: 1px solid var(--delimiter-color, #D7D7D7);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
}
.common-baloon .baloon-content {
  /* border-top: 2px solid var(--light-grey-color, #777); */
  position: relative;
  padding: 0 40px 20px 40px;
}
.common-baloon .baloon-content::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 20px;
  right: 20px;
  height: 2px;
  background-color: var(--light-grey-color, #777);
}
.common-baloon-actions .left-delimiter {
  margin: 0 15px;
}
.common-baloon-actions .left-delimiter::before {
  border-left: 2px solid var(--delimiter-color, #D7D7D7);
}

.common-baloon .btn-show {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23777'%3e%3cpath stroke='%231C1D26' stroke-width='2' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: 50% 50%;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.common-baloon:not(.collapsed) .btn-show {
transform: rotate(180deg);
}
.common-baloon-actions .left-delimiter::before {
border-left: 2px solid var(--delimiter-color, #D7D7D7);
}
.common-baloon.collapsed .baloon-content {
  display: none;
}
.common-baloon-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px; 
  border-radius: 10px 10px 0 0;
  flex-wrap: wrap;
  row-gap: 20px;
  width: 100%;
}
.common-baloon-title {
  width: 300px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: start;
}
.baloon-logo {
  width: 40px;
  height: 40px;
}
.baloon-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px; 
}
.baloon-name-product {
  color: var(--main-text-color, #444);
  font-size: 15px;
  font-weight: 700;
}
.baloon-name-comment {
  color: var(--light-grey-color, #777);
  text-align: left;
  font-size: 14px;
  font-weight: 500;
}
.baloon-name-comment span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 210px;
  cursor: text;
  margin-right: 5px;
}
.baloon-name-comment input {
  height: 14;
  border: none;
  background-color: inherit;
  padding: 0;
  width: 210px;
}


.common-baloon-note {
  width: 300px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: var(--light-grey-color, #777);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.common-baloon-note input{
  border: none;
  background-color: inherit;
  padding: 0;
  width: 220px;
}

.sortable .baloon-name::after {
  display: none;
}

/* .common-baloon .baloon-name::after {
  margin-left: auto;
  content: "";
  background-repeat: no-repeat;
  transition: transform .2s ease-in-out;
  background-size: 0.9em;
  height: 0.9em;
  width: 0.9em;
  transform: rotate(-180deg);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23777'%3e%3cpath stroke='%231C1D26' stroke-width='2' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.common-baloon.collapsed .baloon-name::after {
  transform: rotate(0);
} */
.common-baloon-info {
  width: 125px;
  color: #777;
  font-size: 13px;
  font-weight: 500;
}

.common-baloon-info-span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.common-baloon-status {
  width: 200px;
  color: #777;
  font-size: 15px;
  font-weight: 400; 
}
.common-baloon-belonging {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.common-baloon-belonging.gh-badge {
  display: flex;
} 
.common-baloon-actions {
  width: 170px;
  text-align: right;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: flex-end;
  height: 40px;
  align-items: center;
}
.common-baloon-actions .btn {
  font-size: 25px;
}
@keyframes zoom {
  from {
      transform: scale(0);
      opacity: 0;
  }
  to {
      transform: scale(1);
      opacity: 1;
  }
}

.modal.zoom .modal-dialog {
  animation: zoom 0.3s forwards;
}

.hidden {
  display: none;
}
.gh-panel .description {
  flex-grow: 1; 
  color: #444;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.gh-panel .info {
  color: #444;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.gh-panel .description-title {
  padding: 0 0 12px 0;
}

.gh-panel-shadow {
  border: 1px solid #ddd;
}

.gh-panel-shadow:hover {
  box-shadow: 12px 30px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--primary-background-color, #47b2e4);
}
.gh-panel .description-body {
  color: var(--main-text-color, #777);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.gh-panel-title {
  color: #444;
  /*font-family: Open Sans;*/
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.gh-panel-title .title.d-flex {
  gap: 5px;
}
.gh-panel-title .gh-panel-controls {
  display: flex;
  gap: 6px;
}
.gh-panel-body .icon {
  margin: 0 30px 0 0;
}
.gh-panel-body {
  color: var(--main-text-color, #777);
  font-style: normal;
  line-height: normal;
  font-size: 13px;
}
.gh-panel-footer {
  color: var(--main-text-color, #777);
  font-style: normal;
  line-height: normal;
  font-size: 13px;
}

.gh-panel .icon {
  width: 32px;
  height: 32px; 
}

input[type="radio"]:checked+.gh-panel {
  border: 1px solid var(--primary-background-color, #47b2e4); 
}
input[type="radio"]:disabled+.gh-panel {
  cursor: not-allowed;
}
input[type="radio"]:disabled+.gh-panel>* {
  opacity: 0.3;
}
.gh-panel-medium {
  width: max(100% ,300px);
}
.gh-panel-medium .bootstrap-select{
  width: max(100%, 125px) !important;
}
@media (min-width: 1400px) {
  .gh-panel-medium {
    width: 300px;
  }
  .gh-panel-medium .bootstrap-select{
    width: 135px !important;
  }
  .order {
    padding-left: 25px;
  }
  #menu-projects-title {
    white-space: nowrap;
  }
}
@media (min-width: 1200px) {
  .order {
    padding-left: 25px;
  }
}

/*--------------------------------------------------------------
# breadcrumbs
--------------------------------------------------------------*/
.gh-breadcrumbs a div{
  color: var(--main-text-color, #777);
  /*font-family: Open Sans;*/
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;

  justify-content: left;
  min-width: 40px;
  display: flex;
  align-items: center;
}
.gh-breadcrumbs svg {
  margin: 0 10px 0 0;
}
.gh-breadcrumbs {
  margin: 0 0 24px 0;
}
/*--------------------------------------------------------------
# resource
--------------------------------------------------------------*/

input.resource[type="number"]::-webkit-inner-spin-button,
input.resource[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input.resource[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
input.resource[type="number"]::-moz-number-spin-box {
  display: none;
}
input.resource-input+input.resource-range[type="range"]::-webkit-slider-runnable-track {
  height: 1px;
}

input.resource-input+input.resource-range[type="range"]::-moz-range-track {
  height: 1px;
}
input.resource-input+input.resource-range[type="range"]::-ms-track {
  height: 1px;
}
input.resource-input+input.resource-range[type="range"] {
  position: relative;
  top: -12px;
  padding: 0 25px;
}
.gh-selectpicker {
  background-color: var(--white-color, #fff);
}
input.gh-input,
.gh-selectpicker {
  border: 1px solid var(--light-grey-color, #777777);
  border-radius: 6px;
  height: 45px;
}
input.resource-input:focus {
  border: 1px solid var(--primary-background-color, #47b2e4);
}
input.resource-input+input.resource-range[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
}
input.resource-input+input.resource-range[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: var(--black-color, #000);
  border-radius: 1px;
}
input.resource-input+input.resource-range[type="range"]::-moz-range-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: var(--black-color, #000);
  border-radius: 1px;
}
input.resource-input+input.resource-range[type="range"]::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--accented-color, #47b2e4);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -3.5px;
}
input.resource-input+input.resource-range[type="range"]::-moz-range-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--accented-color, #47b2e4);
  cursor: pointer;
}
input.resource-input+input.resource-range[type="range"]:focus::-webkit-slider-runnable-track {
  background: var(--black-color, #000);
}
input.resource-input+input.resource-range[type="range"]:focus::-moz-range-track {
  background: var(--black-color, #000);
}
.resource-decrement,
.resource-increment {
  position: relative;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color: inherit;
}

.resource-decrement:after,
.resource-increment:after {
  content: '';
  position: absolute;
  transform: translate(-50%, -50%);
  height: 4px;
  width: 70%;
  background: var(--primary-background-color, #47b2e4);
  top: 50%;
  left: 50%;
}
.resource-decrement:after {
  background: #666666;
}

.resource-increment:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-background-color, #47b2e4);
  height: 70%;
  width: 4px;
}

.resource-increment:hover:before,
.resource-increment:hover:after {
  transition: 0.2s;
}


/*--------------------------------------------------------------
# TABS
--------------------------------------------------------------*/

.nav-tabs.gh-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
  color: var(--main-text-color, #777);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 0 0 10px 0;
  margin: 20px 30px 0 0;
  text-align: center;
}
.nav-tabs.gh-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #444;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background-color: inherit;
  border-bottom-width: 2px;
  border-color: #f3f5fa #f3f5fa var(--primary-background-color, #47b2e4);
}
.gh-tabs-button {
  background-color: var(--white-color, #fff);
  border-radius: 5px;
  padding: 0px;
  margin: 25px 0 0 0;
  display: inline-block;
}
.gh-tabs-button .nav-link.active{
  border: none;

}
.nav-tabs.gh-tabs-button .nav-item {
  display: inline-block;
  /* padding-right: 9px; */
}
.nav-tabs.gh-tabs-button > .nav-item:last-child {
  padding-right: 0;
}
.nav-tabs.gh-tabs-button .nav-item .nav-link {
  display: inline-block;
  padding: 6px 12px;
  margin: 0;
}
.nav-tabs.gh-tabs-button .nav-item .nav-link.active {
  background-color: #f3f5fa;
}

/*--------------------------------------------------------------
# SELECTPICKER
--------------------------------------------------------------*/
.gh-select-sm div.dropdown-menu .dropdown-menu.inner li,
.gh-select-sm {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;;
}

.gh-select-m {
  color: var(--main-text-color, #777);
  font-size: 14px;
  font-weight: 400;
}

.gh-select {
  font-size: 1rem;
}

.gh-select-lg {
  font-size: 1.5rem;
}
.gh-select-flat {
  padding: 0;
}
#show-protuct-types.dropdown-toggle:after {
  margin-left: 1.255em;
}
select.gh-select-flat + button.dropdown-toggle::after,
select.gh-select + button.gh-selectpicker.dropdown-toggle::after,
select.os-select + button.os-selectpicker.dropdown-toggle::after {
  content: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.989 7a.997.997 0 0 1-.639-.23l-4.99-4a1.002 1.002 0 0 1 .547-1.768.998.998 0 0 1 .73.227L5.99 4.71l4.351-3.32a.998.998 0 0 1 1.407.15 1 1 0 0 1-.14 1.46l-4.99 3.83A.996.996 0 0 1 5.99 7Z' fill='%23777'%3E%3C/path%3E%3C/svg%3E");
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  border: 0;
  position:relative;
  top: -3px;
}
.os-select div.dropdown-menu.show div#bs-select-1.inner.show ul.dropdown-menu.inner.show li a,
.os-selectpicker, .os-select {
  color: var(--main-text-color, #777);
}
.gh-select-flat div.dropdown-menu {
  padding: 0;
}
.gh-select-flat div.dropdown-menu ul {
  padding: 0 20px;
  text-align: left;
}
.gh-select div.dropdown-menu,
.os-select div.dropdown-menu {
  padding: 0 0 ;
}
.gh-select-flat div.dropdown-menu,
.os-select div.dropdown-menu {
  border-radius: 0px 0px 20px 20px;
  line-height: 1rem;
}
.gh-select-flat.dropup div.dropdown-menu,
.os-select.dropup div.dropdown-menu {
  border-radius: 20px 20px 0 0;
}
.gh-select-flat div.dropdown-menu .active.selected,
.gh-select div.dropdown-menu .active.selected,
.os-select div.dropdown-menu .active.selected {
  background: var(--primary-background-color, #47b2e4);
}
.gh-select-flat div.dropdown-item:hover,
.gh-select-flat div.dropdown-item:focus,
.gh-select div.dropdown-item:hover,
.gh-select div.dropdown-item:focus,
.os-select div.dropdown-item:hover,
.os-select div.dropdown-item:focus {
  background: var(--hover-collor, #00adff85);
}
.gh-select-flat .dropdown-item.active,
.os-select .dropdown-item.active,
.gh-select .dropdown-item.active ,
a.dropdown-item:focus, a.dropdown-item:hover {
  background: var(--hover-collor, #00adff85);
}
button .filter-option {
  display: flex;
  align-items: center;
}
.gh-select-flat div.dropdown-menu .active.selected .text,
.gh-select div.dropdown-menu .active.selected .text,
.os-select div.dropdown-menu .active.selected .text {
  color: var(--white-color, #fff);
}
.btn.os-selectpicker{
  padding: 0;
}
.gh-select-flat.order-parameter .btn.dropdown-toggle.gh-select-flat.detail .filter-option .filter-option-inner {
  width: 100%;
}
.gh-select-flat div.dropdown-menu ul.dropdown-menu.inner li,
.os-select div.dropdown-menu ul.dropdown-menu.inner li,
.os-select.os-selectpicker .filter-option-inner{
  text-align: center;
}
.gh-select-flat.dropdown-toggle .filter-option .filter-option-inner .filter-option-inner-inner,
.os-selectpicker.dropdown-toggle .filter-option .filter-option-inner .filter-option-inner-inner {
  text-align: left;
}
.gh-select-flat div.dropdown-menu .dropdown-item,
.os-select div.dropdown-menu .dropdown-item  {
  padding: 10px 0;
}

.gh-select-flat .dropdown-toggle.gh-select-flat.detail .filter-option .filter-option-inner .filter-option-inner-inner small.text-muted {
  color: #47B2E4 !important;
  font-weight: 900;
}
.gh-select-flat.dropdown-menu .inner.show .dropdown-menu.inner .dropdown-item.detail span.text small.text-muted,
.gh-select-flat.detail .filter-option .filter-option-inner .filter-option-inner-inner small.text-muted
{
  color: var(--primary-background-color, #47b2e4);
}
.gh-select-flat div.dropdown-menu li {
  color: #444444 !important;
}
.gh-select-flat .dropdown-menu .dropdown-menu.inner .text{
  padding: 0 20px;
}
.gh-select-flat .filter-option div.filter-option-inner div.filter-option-inner-inner,
.gh-select-flat .dropdown-menu .dropdown-menu.inner .text{
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/*--------------------------------------------------------------
# My project select
--------------------------------------------------------------*/
.gh-selectpicker.gh-project-select .filter-option .filter-option-inner .filter-option-inner-inner::after  {
  padding-top: -3px;
}
.gh-selectpicker.gh-project-select .filter-option .filter-option-inner .filter-option-inner-inner  {
  display: flex;
  align-items: inline-flex;
  padding-top: 2px;
}
.selection-pointer::before {
  padding-right: 15px;
}
.selection-pointer::before,
.gh-selectpicker.gh-project-select
.filter-option
.filter-option-inner
.filter-option-inner-inner::before  {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='12' fill='%2347B2E4'%3E%3C/circle%3E%3Cpath d='M10 8L14 12L10 16' stroke='white' stroke-width='2'%3E%3C/path%3E%3C/svg%3E");
  display: inline-block;
}
.gh-selectpicker.gh-project-select
.filter-option
.filter-option-inner
.filter-option-inner-inner::before  {
  padding: 0px 22px 0 20px;
}

/*--------------------------------------------------------------
# RATE
--------------------------------------------------------------*/
.gh-rate {
  color: #777;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.gh-rate .gh-rate-title {
  background-color: inherit;
}
.gh-rate .gh-rate-title:hover {
  border: none;
}
.gh-rate > *:not(:first-child):not(:last-child) {
  margin-bottom: 22px;
}
.gh-elements > div {
  padding-top: 25px;
}

/*--------------------------------------------------------------
# Окно оплаты
--------------------------------------------------------------*/

vds-summary {
  color: var(--main-text-color, #777);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: sticky;
}
.vds-summary:hover {
  border: 1px solid transparent;
}
.vds-summary .total {
  color: #444;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.vds-summary .detail {
  color: #444;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.vds-summary .details >*:not(:first-child):not(:last-child) {
   margin-bottom: 15px;
 }


ol.product-options li {
  color: #444;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
ol.product-options li > h2{
  display: inline-block;
    margin-bottom: 0px;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
ol.product-options > li label{
  color: var(--main-text-color, #777);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
ol.product-options > li{
  text-align: match-parent
}
ol.product-options {
  list-style-position: inside;
  list-style-type: decimal;
}

.order-details > *:not(:last-child),
.order-details .order-configurations-details > *:not(:last-child) {
  margin-bottom: 15px;
}
#configurator {
  padding-top: 20px;
}
.vds-summary-footer {
  padding: 20px 0;
}
.vds-summary-footer .discount {
  display: block;
  color: var(--main-blue, #47b2e4);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  padding: 13px;
}

.slide-panel {
  position: sticky !important;
  top: 75px; 
  margin-bottom: 25px;
}

/*--------------------------------------------------------------------
# menu with progect
---------------------------------------------------------------------*/
#add-project-menu {
  padding-left: 24px;
  display: inline-block;
}
.gh-content{
  color: var(--main-text-color, #777);
  /*font-family: Open Sans;*/
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.gh-asside-menu a,
.gh-asside-menu a:hover {
  color: var(--main-text-color, #777);
}

.gh-panel .accordion-button::after,
.page-menu .menu-body .accordion-button::after {
  background-size: 0.9em;
  height: 0.9em;
  width: 0.9em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23777'%3e%3cpath stroke='%231C1D26' stroke-width='2' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.gh-asside-menu .accordion-body > * {
  padding-left: 10px;
  padding-top: 10px;
}
.gh-asside-menu .accordion-body > *:not(:first-child){
  padding-top: 18px;
}
.gh-asside-menu> *:not(:last-child) {
  padding: 0 0 20px 0;
}
.gh-asside-menu .accordion-button:not(.collapsed) {
  background-color: inherit;
  color: inherit;
}
/*--------------------------------------------------------------------
# menu with progect
---------------------------------------------------------------------*/
aside .gh-panel {
  padding: 20px;
}
aside>div {
  margin-bottom: 20px;
}
.my-projects {
  display: flex;
  align-items: center;
}

.increment {
  display: inline-block;
  position: relative;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  background-color: inherit;
}
.increment:after {
  background: var(--main-text-color, #777);
  content: '';
  position: absolute;
  transform: translate(-50%, -50%);
  height: 1px;
  width: 90%;
  top: 50%;
  left: 50%;
}

.increment:before {
  background: var(--main-text-color, #777);
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 90%;
  width: 1px;
}

.page-part {
  padding: 30px 0 30px 0;
}
.page-part ol,
.page-part ul {
  padding: 0;
}
.nav.nav-tabs.gh-tabs-button .nav-item {
  margin: 4px;
}
header .navbar-mobile .gh-asside-menu a{
  justify-content: left;
}
header .navbar-mobile .gh-asside-menu.gh-panel{
  padding: 0;
}
header .navbar-mobile .gh-asside-menu a i{
  margin-right: 1rem;
}

/*--------------------------------------------------------------
# breadcrumbs
--------------------------------------------------------------*/

.breadcrumb .breadcrumb-item {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 20px;
}
.gh-badge-medium {
  display: flex;
  padding: 2px 5px;
  align-items: flex-start;
  gap: 10px; 
}
.gh-badge {
  padding: 0 5px;
  display: inline-block;
  color: var(--white-color, #fff);
  font-weight: 700;
  border-radius: 4px;
}
.gh-badge-primary {
  background: var(--primary-background-color, #47b2e4);
  color: var(--white-color, #fff);
}
.gh-badge-accented {
  padding: 0 5px;
  color: var(--white-color, #fff);
  font-weight: 700;
  border-radius: 4px;
  background: var(--accented-color, #47b2e4);
}
.gh-badge-accented-outline {
  border-radius: 5px;
  border: 1px solid var(--accented-color, #47b2e4);
  color: var(--accented-color, #47b2e4);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.gh-badge-secondary {
  padding: 0 5px;
  display: inline-block;
  color: var(--white-color, #fff);
  font-weight: 700;
  border-radius: 4px;
  background: var(--main-color-color, #777);
}
.gh-badge-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  font-weight: 700;
  border-radius: 4px;
}

.auth-area ul.nav.nav-tabs li.nav-item {
  flex: 1;
}
#iaccepttos-container,
#register-account-btn {
  width: 258px;
  margin: auto;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
#iaccepttos {
  display: flex;
  gap: 20px;
  align-items: center;
}
#iaccepttos label {
  margin: 0;
}
.register-footer {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#register-account-btn {
  padding: 12px 0px;
}
#recaptcha-element {
  margin: auto;
}
input[type="checkbox"].is-invalid {
  border: 2px solid red;
  outline: none;
  box-shadow: 0 0 5px red;
}
/*------------------------------------------------------------
| social logo
--------------------------------------------------------------*/
#auth-social {
  width: 258px;
  margin: auto;
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 16px;
}
.social-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
}
.social-logo {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-logo.btn-gh-secondary:hover,
.social-logo.btn-gh-secondary {
  border-radius: 15px;
  background: var(--white-color, #fff);
}

/*------------------------------------------------------------
| auth
--------------------------------------------------------------*/
.vpn-attention {
  max-width: 360;
  margin: auto;
  color: var(--main-text-color, #777);
  text-align: center;
  /*font-family: Open Sans;*/
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal; 
  padding-bottom: 5px;
}
.auth-area {
  max-width: 490px !important;
  margin: auto;
  margin-top: 80px;
  margin-bottom: 80px;
}
.auth-area .nav-tabs .nav-link {
  margin-top: 30px;
}
.auth-area label{
  margin: 0 0 15px 0;
}
.auth-buttons {
  display: flex;
  justify-content: space-around;
  gap: 15px;
}
.auth-button {
  border-radius: 15px;
  width: 230px; 
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal; 
  padding: 12px 0;
}

/*------------------------------------------------------------
| svg background block
--------------------------------------------------------------*/
.guard-background {
  background-image: url("../img/tile-cloud-01.png");
  /*background-color: white;*/
  background-position: right -20px bottom -10px;
  background-size: 100px 100px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease, background-position 0.5s ease;
}

.guard-background:hover {
  background-size: 130px 130px;
  background-position: right -20px bottom -20px;
}
.time-background {
  background-image: url("../img/time-cloud.png");
  background-position: right 0px bottom 0px;
  background-size: 100px 100px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease, background-position 0.5s ease;
}

.time-background:hover {
  background-size: 130px 130px;
  background-position: right -20px bottom -20px;
}
.element-group-container {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.register-promo {
  margin-bottom:30px;
}

.search-container,
.password-container {
  position: relative;
}
.password-input {
  padding-right: 30px;
}
.form-control.password-input.is-invalid,
.form-control.password-input.is-valid{
  background-image:none !important;
}
.form-control:has(+ .toggle-password-btn) {
  padding-right: 25px;
}
.toggle-icon,
.toggle-password {
  position: absolute;
  right: 10px;
  /* bottom: .55em; */
  top: 1.6em;
  transform: translateY(-50%);
}
.toggle-password {
  cursor: pointer;
}
.add-input-group {
  display: flex;
  gap: 15px;
}

.search-container input:focus + .toggle-icon {
  display: none;
}

/*--------------------------------------------------------------
# pagination
--------------------------------------------------------------*/
.pagination-container {
  margin: 20px 20px 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 19px;
}
.pagination-container .per-page-part #per-page {
  border-color: var(--pagination-border-color, #dee2e6);
  width: 60px;
}
.pagination-container select#per-page {
  padding: 3px 0 3px 8px;
  line-height: 19px;
}
.pagination-container .pagination .page-item .page-link {
  background-color: var(--grey-color, #EFEEEE);
  line-height: 19px;
  padding: 3px 7px;
}
.pagination-container .pagination .page-item:first-child .page-link {
  padding: 3px 4px 3px 8px;
}
.pagination-container .pagination .page-item:last-child .page-link {
  padding: 3px 5px 3px 6px;
}
.pagination-container .pagination .page-item.active .page-link{
  background-color: var(--active-color, #37517e);
}
.page-item.disabled .page-link,
.page-link {
	position: relative;
	display: block;
	color: var(--main-text-color, #444444);
	text-decoration: none;
	background-color: var(--white-color, #fff);
	border: 1px solid var(--pagination-border-color, #dee2e6);
	}

/*--------------------------------------------------------------
# sizes
--------------------------------------------------------------*/
.form-check-input:checked {
  background-color: var(--primary-background-color, #47b2e4);
  border-color: var(--primary-background-color, #47b2e4);
}

/*--------------------------------------------------------------
# sort
--------------------------------------------------------------*/
.sortable {
  display: inline-block;
  cursor: pointer;
}
.sortable-panel:hover,
.sortable-panel {
  border: none !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: transparent;
  box-shadow: none;
}
.sortable-panel * {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--light-grey-color, #777);
  background: transparent;
}
.sortable-head {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.sortable .bi-sort-down, .sortable .bi-sort-up, .sortable .bi-arrow-down-up {
  display: none;
}

.sortable[data-direction="asc"] .bi-sort-up {
  display: inline;
}

.sortable[data-direction="desc"] .bi-sort-down {
  display: inline;
}

.sortable:not([data-direction="asc"]):not([data-direction="desc"]) .bi-arrow-down-up {
  display: inline;
}
/*------------------------------------------------------------
| language select
--------------------------------------------------------------*/

header .language-select{
  font-size: 15px;
  background-color: rgba(60, 76, 105, 0);
  color: var(--white-color, #fff);
  font-size: 14px;
  border: 2px solid var(--primary-background-color, #47b2e4);
  border-radius: 50px;
  height: 41px;
}
header  .language-select option{
  color: #000;
}
header .navbar-mobile .language-select{
  color: #000;
}

header .navbar-mobile .language-box{
  width: 100%;
}

header .navbar-mobile .language-box ::after {
  right: 32px;
}

header .language-box .language-select::after {
  content: '';
  display: inline-block;
  position: absolute;
  right: 0.5rem;
  top: 1rem;
  border: 10px solid transparent;
  border-top: 10px solid var(--primary-background-color, #47b2e4);
}
.navbar .language-box .dropdown.bootstrap-select .btn.dropdown-toggle.language-box .filter-option .filter-option-inner .filter-option-inner-inner img {
  min-height: 1rem;
}

.language-box .language-select img,
.language-box .dropdown-menu .dropdown-item img {
  min-height: 1rem;
}
.navbar .language-box .dropdown.bootstrap-select ul.dropdown-menu {
  visibility: visible;
  opacity: 1;
  left: 10px;
}
.language-box .dropdown-menu {
  padding: 0;
  border-radius: 0 0 6px 6px;
}
.navbar .language-box .dropdown-menu ul a {
  padding: 10px 28px;
}

.navbar .language-box .bootstrap-select{
  min-width: 5rem;
}
.language-box .dropdown.bootstrap-select .dropdown-menu ul{
  width: 0.5rem;
}
.language-box .dropdown.bootstrap-select .dropdown-menu ul li{
  min-width: 1rem;
}
.dropdown-menu .dropdown-item.active, .dropdown-item:active {
	color: var(--white-color, #fff);
	text-decoration: none;
	background-color: var(--primary-background-color, #47b2e4);
}
.navbar-mobile .language-box .dropdown .dropdown-menu.show ul {
	display: block;
}

.cycle-cost-container {
  display: flex;
  justify-content: space-between;
  gap: 2px;
}
.cycle-cost {
  /* margin: 0 3px; */
  font-size: 10px;
  color: var(--main-text-color, #444);
  flex: 1;
  min-height: 60px;
  border: 1px solid var(--delimiter-color, #777);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 6px;
  cursor: pointer;
}
.cycle-cost.active {
  color: var(--white-color, #fff);
  background: var(--primary-background-color, #31a9e1);
}
.cycle-cost:hover {
  color: var(--white-color, #fff);
  background: var(--hover-collor, #209dd8);
}

.nowrap-hidden {
  overflow: hidden;
  white-space: nowrap;
}


/*--------------------------------------------------------------
# spinner classes
--------------------------------------------------------------*/
.spinner-m-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: not-allowed;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  z-index: 1;
}


/*--------------------------------------------------------------
# main menu
--------------------------------------------------------------*/
.account-dropdown {
  width: 210px;
  padding-left: 5px;
}
.account-btn {
  display: flex;
  align-items: center;
}
.dropdown-toggle.show + .dropdown-menu {
  display: block;
}

.dropdown-menu .dropdown-item,
.dropdown-menu a.dropdown-item:focus {
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: normal; 
}
.account-dropdown .dropdown-menu  {
  width: 100%;
  background: var(--menu-color-top, #37517e);
  border-radius: 0 0 6px 6px;
  border: none;
}
.account-dropdown .account {
  margin-left: 15px;
}
.dropdown-menu .dropdown-item,
.dropdown-menu a.dropdown-item:focus {
  padding: 7px 15px;
}
.account-dropdown hr {
  height: 2px;
  margin: 0 15px;
  background-color: var(--grey-color, #EFEEEE);
}
.account .account-title {
  color: var(--grey-color, #EFEEEE);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: right;
}
.account .account-info {
  color: var(--grey-color, #EFEEEE);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal; 
  text-align: right;
}
.left-delimiter {
  position: relative;
}
.left-delimiter::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border-left: 2px solid var(--grey-color, #EFEEEE);
}
.dropdown-menu a.dropdown-item {
  cursor: pointer;
}
.account-dropdown .account-btn {
  display: flex;
  justify-content: space-between;
}
.project-logo img,
.account-dropdown .account-icon img{
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.m-35px {
  margin-left: 35px;
}
.mt-40px {
  margin-top: 40px;
}
#navbar .user-menu .account-dropdown .dropdown-menu a.dropdown-item:hover {
  color: var(--white-collor, #fff);
}
.user-menu .person {
  align-items: center;
  display: flex;
}
.user-menu .person .person-description {
  font-weight: 400;
  font-size: 10px;
}
.user-menu .person img {
  margin-right: 10px;
  height: 25px;
  width: 25px;
  border-radius: 50%;
}
@media (max-width: 991px) {
}


.account-btn.dropdown-toggle::after {
  content: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.989 7a.997.997 0 0 1-.639-.23l-4.99-4a1.002 1.002 0 0 1 .547-1.768.998.998 0 0 1 .73.227L5.99 4.71l4.351-3.32a.998.998 0 0 1 1.407.15 1 1 0 0 1-.14 1.46l-4.99 3.83A.996.996 0 0 1 5.99 7Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  border: 0;
  position:relative;
  top: -3px;
}
.account-btn.dropdown-toggle.show::after {
  transform: rotate(180deg);
}

.account-dropdown .dropdown-menu {
  overflow: hidden;
}
.user-photo-container {
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
}
.user-photo-container img {
  max-width: auto;
  height: 100%;
}

.user-photo-load {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.user-photo-control * {
  cursor: pointer;
}
@media (max-width: 445px) {
  header .logo img{
    height: 60px !important;
    width: 40px !important;
    object-fit: cover;
    object-position: left
  }
}
@media (max-width: 992px) {

  .navbar.navbar-mobile .user-menu {
    display: none;
  }
  .navbar .user-menu .account-icon {
    margin-left: 10px;
  }
  #navbar .m-35px {
    margin: 0;
  }
  /* .user-menu {
    margin-bottom: 15px;
  }
  .user-menu, .account-dropdown {
    width: 100%;
  }
  .user-menu .account .account-info,
  .user-menu .account .account-title{
    color: var(--menu-color-top, #37517e);
  } */
  /* #navbar .user-menu .account-dropdown .dropdown-menu a.dropdown-item:hover {
    color: var(--menu-color-top, #37517e);
  }
  .account-dropdown .left-delimiter::before {
    display: none;
  }
  #navbar .m-35px {
    margin-left: 0;
  }
  .account-dropdown .account-btn {
    justify-content: flex-start;
    gap: 20px;
  }
  .account-btn.dropdown-toggle::after {
    display: none;
  } */

  /* .account-dropdown .dropdown-menu {
    background-color: var(--white-color, #fff);
  } */

  #navbar .gh-panel {
    background-color: var(--white-color, #fff);
  }
  .gh-asside-menu a, .gh-asside-menu a:hover {
    color: var(--menu-color-top, #37517e);
  }
  #navbar .accordion {
    padding: 10px 20px;
  }
  #navbar .accordion .background-grey{
    background-color: var(--white-color, #fff) !important;
  }
}
.disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}
.active-click {
  opacity: 1 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1400px;
  }
}
@media (min-width: 1200px){
  .col-xl-80p {
      flex: 0 0 auto;
      width: 80%;
  }
  .col-xl-20p {
    flex: 0 0 auto;
    width: 20%;
  }
}

/*------------------------------------------------------------
| common blocks
--------------------------------------------------------------*/

.add-block {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.dashed-border {
  border: 1px dashed var(--main-text-color, #777);
  width: 150px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plus {
  font-size: 2em;
}
/*------------------------------------------------------------
| teams
--------------------------------------------------------------*/
.department-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(306px, 1fr));
  grid-row-gap: 20px;
}
.department-grid .gh-panel {
  padding: 20px 27px;
}

.avatars, .icon-group {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-left: 10px;
  margin-top: 8px;
}

.avatar, .icon-element {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: -10px;
  transition: transform 0.3s ease, z-index 0s;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.avatar:hover, .icon-element:hover {
  transform: scale(1.06);
  z-index: 2;
}
.control-button,
.gh-panel-control {
  border: 1px solid var(--main-text-color, #000);
  border-radius: 5px;
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  cursor: pointer;
}
.control-button:hover,
.gh-panel-control:hover {
  border: 1px solid var(--hover-collor, #73c5eb);
}
.gh-panel .team-description {
  max-height: 45px;
  overflow: hidden;
}
.employee-title .employee-position {
  font-size: 10px;
  font-weight: 400;
}
.employee-name {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  gap: 10px;
}
.employee-title .employee-name {
  font-size: 15px;
  font-weight: 700;
}
.employee-title {
  margin-left: 15px;
  display: flex;
  gap: 5px;
  flex-direction: column;
}
.control-buttons {
  display: flex;
  justify-content: end;
  gap: 15px;
}
/*------------------------------------------------------------
| selection groups
--------------------------------------------------------------*/
input.selection-input[type="checkbox"]:checked + * {
  border: 1px solid var(--primary-background-dark-color, #47b2e4);
}
input.selection-input[type="checkbox"] {
  display: none;
  visibility: hidden;
}
.service-baloon-head
.service-icon {
  color: var(--primary-background-color, #47b2e4);
  font-size: 40px;
}
.status-indicator,
.vm-status-indicator {
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
}

.mashine-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-title,
.mashine-head .mashine-title,
.mashine-head .mashine-title .mashine-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.mashine-head .mashine-title .mashine-info span{
  margin-left: 10px;
}
.mashine-head .mashine-title .mashine-uptime {
  color: var(--main-text-color, #444);
  font-size: 11px;
  font-weight: 700;
}
.mashine-head .mashine-title .mashine-comment {
  color: var(--main-text-color, #444);
  font-size: 10px;
  font-weight: 600;
}
.mashine-head .mashine-control-buttons div{
  display: flex;
  gap: 15px;
}
.service-baloon-head,
.vm-baloon-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  min-height: 64px;
  flex-wrap: wrap;
}

.service-baloon-head .service-title {
  width: 30%;
  min-width: 150px;
  font-weight: 600;
}
.service-baloon-head .service-title,
.service-baloon-head .service-status,
.service-baloon-head .service-comand-buttons {
  width: 20%;
  min-width: 150px;
}

.domain-baloon.gh-panel-baloon,
.hosting-baloon.gh-panel-baloon,
.vm-baloon.gh-panel-baloon {
  padding: 0;
}
.domain-baloon.gh-panel-baloon,
.hosting-baloon.gh-panel-baloon,
.role-baloon.gh-panel-baloon,
.department-baloon.gh-panel-baloon,
.vm-baloon.gh-panel-baloon {
  border: 1px solid var(--light-grey-color, #777);
}
.domain-baloon.gh-panel-baloon:hover,
.hosting-baloon.gh-panel-baloon:hover,
.role-baloon.gh-panel-baloon:hover,
.department-baloon.gh-panel-baloon:hover,
.vm-baloon.gh-panel-baloon:hover {
  border: 1px solid var(--primary-background-color, #47b2e4);
}
.hosting-baloon.gh-panel-baloon .hosting-baloon-head,
.domain-baloon.gh-panel-baloon .domain-baloon-head,
.vm-baloon.gh-panel-baloon .vm-baloon-head {
  padding: 40px 40px 40px 40px;
}
.domain-baloon.gh-panel-baloon .baloon-content,
.hosting-baloon.gh-panel-baloon .baloon-content,
.vm-baloon.gh-panel-baloon .baloon-content {
  border-top: 2px solid var(--light-grey-color, #777);
}
.domain-baloon.gh-panel-baloon .baloon-content,
.hosting-baloon.gh-panel-baloon .baloon-content,
.vm-baloon.gh-panel-baloon .baloon-content {
  padding: 0 40px 40px 40px;
}

.domain-baloon.gh-panel-baloon .domain-baloon-head,
.hosting-baloon.gh-panel-baloon .hosting-baloon-head,
.vm-baloon.gh-panel-baloon .vm-baloon-head {
  min-height: 40px;
  display: flex;
  align-items: center;
  font-size: 15px;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.domain-baloon .domain-logo,
.hosting-baloon .hosting-logo,
.vm-baloon .vm-logo {
  height: 40px;
  width: 40px;
}
@media (max-width: 1854px) {
  .domain-baloon .domain-baloon-head .domain-title,
  .hosting-baloon .hosting-baloon-head .hosting-title,
  .vm-baloon .vm-baloon-head .mashine-title {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
}
.domain-title {
  width: 150px;
}
.domain-info {
  width: 195px;
}
.domain-info {
  width: 135px;
}
.domain-nextduedate {
  width: 120px;
}
.domain-domain-status-info {
  width: 135px;
}
.gh-panel-baloon-info {
  width: 40px;
}
.domain-groups {
  width: 160px;
}
.domain-control-buttons {
  width: 150px;
}
.domain-baloon .domain-title .domain-name,
.hosting-baloon .hosting-title .hosting-name,
.vm-baloon .mashine-title .mashine-name {
  width: 193px;
  text-align: center;
}
.domain-baloon .domain-title .domain-resources,
.hosting-baloon .hosting-title .hosting-resources,
.vm-baloon .mashine-title .mashine-resources {
  width: 197px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.domain-baloon .nextduedate,
.hosting-baloon .hosting-ip-info,
.vm-baloon .mashine-ip-info {
  width: 125px;
}
.domain-baloon .domain-status-info,
.hosting-baloon .hosting-status-info,
.vm-baloon .mashine-status-info {
  width: 135px;
}
.domain-baloon .domain-groups,
.hosting-baloon .hosting-groups,
.vm-baloon .vm-groups {
  width: 160px;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 20px;
}
.domain-baloon .domain-groups .gh-badge-accented,
.hosting-baloon .hosting-groups .gh-badge-accented,
.vm-baloon .vm-groups .gh-badge-accented {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.domain-baloon .domain-groups .icon-group,
.hosting-baloon .hosting-groups .icon-group,
.vm-baloon .vm-groups .icon-group {
  margin-top: 0px;
}

.domain-baloon .domain-groups .icon-group img,
.hosting-baloon .hosting-groups .icon-group img,
.vm-baloon .vm-groups .icon-group img {
  height: 40px;
  width: 40px;
}
.domain-baloon .domain-control-buttons,
.hosting-baloon .hosting-control-buttons,
.vm-baloon .mashine-control-buttons {
  width: 155px;
}

.service-baloon-head .service-name,
.domain-baloon-head .domain-name,
.hosting-baloon-head .hosting-name,
.vm-baloon-head .mashine-name {
  color: var(--highlight-text-color, #444);
  font-size: 15px;
  font-weight: 700;
}
.domain-baloon-head .domain-resources,
.hosting-baloon-head .hosting-resources,
.vm-baloon-head .mashine-resources {
  color: var(--main-text-color, #444);
  font-size: 10px;
  font-weight: 600;
}
.domain-baloon-head .domain-title,
.hosting-baloon-head .hosting-title,
.vm-baloon-head .mashine-title {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  column-gap: 40px;
}
.service-comand-buttons,
.domain-baloon-head .domain-control-buttons,
.hosting-baloon-head .hosting-control-buttons,
.vm-baloon-head .mashine-control-buttons {
  text-align: right;
}
.domain-baloon-head .domain-control-buttons:hover,
.hosting-baloon-head .hosting-control-buttons:hover,
.vm-baloon-head .mashine-control-buttons:hover {
  font-weight: 900;
}

.domain-nextduedate {
  color: var(--panel-info-color, #F3A244);
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}
.ip-flag {
  margin-right: 8px;
  border-radius: 50%;
  height: 0.8rem;
  width: 0.8rem;
}

.table-resources {
  font-size: 15px;
  font-weight: 400;
  color: var(--main-text-color, #777);
  text-align: center;
}
.table-resources tr td:first-child,
.table-resources th{
  color: var(--highlight-text-color, #444);
  font-weight: 700;
}
.table-resources tr td:first-child {
  text-align: left;
}

.info-card .info-key {
  font-weight: 700;
  color: var(--highlight-text-color, #444);
  margin-bottom: 20px;
}
.info-card .info-value {
  font-weight: 400;
  color: var(--main-text-color, #777);
}

.fs-15px {
  font-size: 15px !important;
}

.config-vm-group {
  display: flex;
  padding-top: 20px;
  grid-area: 40px;
}
.config-form-group {
  display: flex;
  flex-direction: column;
  column-gap: 40px;
  row-gap: 20px;
}
.config-form-group + label {
  color: var(--highlight-text-color, #444);
  font-size: 14px;
  font-weight: 700;
}
.config-form-group .input-control-group .control-group-input:not(select),
.config-form-group .gh-selectpicker:not(select) {
  height: 40px;
  width: min(280px, 100%) !important;
}
.config-form-group .input-control-group .control-group-button {
  height: 40px;
  width: 155px;
}
.config-form-group .input-control-group {
  display: flex;
  column-gap: 40px;
  row-gap: 20px;
  flex-wrap: wrap;
}

.ptr-settings{
  display: flex;
}
.nw-settings {
  display: flex;
  align-items: flex-start;
}
.nw-title {
  line-height: 43px;
  width: min(240px,100%);
}
.nw-details {
  width: min(265px,100%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 19px;
}
.nw-details > * {
  display: flex;
  width: min(265px,100%);
  justify-content: space-between;
  align-items: center;
  column-gap: 40px;
  row-gap: 20px;
}
.gh-tab-panel {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  padding-top: 20px;
}
.dns-settings {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.dns-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 20px;
  align-items: center;
}
.dns-list .dns-input,
.ptr-item {
  width: min(240px,100%);
}

.ptr-settings .ptr-settings-imputs {
  width: min(377px,100%);
}
.ptr-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 376px;
}

.highlight-text {
  color: var(--highlight-text-color, #1C1D26);
  font-weight: 700;
}
.password-gen-btn-container {
  display: flex;
  align-items: stretch;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
  gap: 15px;
  position: relative;
}
.password-gen-btn-container .password-field-wrapper input {
  width: 100%;
  padding-right: 1.7rem;
}
.password-gen-btn-container .password-field-wrapper {
  position: relative;
}
.password-gen-btn-container .password-field-wrapper .toggle-password-btn{
  position: absolute;
  right: 10px;
  top: 45%;
  transform: translateY(-50%);
}
.password-gen-btn-container .gen-password-btn {
  aspect-ratio: 1 / 1;
  background-color: var(--white-color, #fff);
  border: 1px solid var(--main-text-color, #777777);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.password-gen-btn-container {
  display: flex;
  align-items: stretch;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
  gap: 15px;
  position: relative;
}
.password-gen-btn-container .password-field-wrapper input {
  width: 100%;
  padding-right: 1.7rem;
}
.password-gen-btn-container .password-field-wrapper {
  position: relative;
}
.password-gen-btn-container .password-field-wrapper .toggle-password-btn{
  position: absolute;
  right: 10px;
  top: 45%;
  transform: translateY(-50%);
}
.password-gen-btn-container .gen-password-btn {
  aspect-ratio: 1 / 1;
  background-color: var(--white-color, #fff);
  border: 1px solid var(--main-text-color, #777777);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal-gh .quotas{
  padding: 40px 0;
}
.modal-gh .nav-tabs .nav-link{
  margin: 0 10px 0 0;
}
.modal-dialog .modal-content {
  background-color: var(--main-background, #f3f5fa);
}
.modal-gh-medium {
  width: min(800px, 97%);
}
#resource-conf-info-area {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  padding-top: 40px;
}
#resource-conf-info-area > div {
  width: 100%;
}

#resource-buttons-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 20px;
}
@media (min-width: 576px) {
  .modal-gh-medium {
    max-width: 576px;
    margin: 1.75rem auto;
  }
}
@media (min-width: 800px) {
  .modal-gh-medium {
    max-width: 800px;
    margin: 1.75rem auto;
  }
  #resource-conf-info-area > div {
    width: 50%;
  }

  #resource-buttons-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 20px;
  }
}
#newInstanceVmModal .tab-pane {
  min-height: 265px;
}
.preset-parameter-values {
  display: flex;
  flex-wrap: wrap;
  grid-row: 15px;
  justify-content: space-between;
  align-items: flex-start;
}
.resource-input-group {
  position: relative;
}
.resource-input-group input.resource-input + input.resource-range[type="range"]{
  position: absolute;
  top: auto;
  bottom: -11px;
}
.resource-block label {
  color: var(--highlight-text-color, #1C1D26);
  font-size: 14px;
  font-weight: 700;
  margin: 20px 0;
}
.modal-gh .modal-content{
  padding: 40px;
}
.modal-gh .modal-header .btn-close.btn-danger{
  width: 25px;
  height: 25px;
  background: none;
  background-color: #DC3545;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  font-weight: bold;
  color: white;
  opacity: 1;
  cursor: pointer;
}
.modal-gh .modal-tab-row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
}
.accented-text {
  color: var(--accented-color, #47b2e4);
  font-weight: 700;
}
.resource-conf-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}


.text-breaked {
  word-break: break-all;
  overflow-wrap: break-word;
}

.chartjs-render-monitor {
  background-color: var(--white-color, #FFF);
}

.gh-panel-hosting {
  display: flex;
  width: 420px;
  min-height: 345px;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 20px; 
}

.gh-panel-hosting-domain .gh-panel-footer{
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 40px;
  align-self: stretch;
  flex-wrap: wrap; 
}
.gh-panel-hosting-statistic .gh-panel-body {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 40px;
  align-self: stretch;
  flex-wrap: wrap; 
}
.gh-panel-hosting-statistic .gh-panel-body > div {
  min-width: 165px;
}
.gh-panel-hosting-statistic .gh-panel-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  align-self: stretch;  
}
.gh-panel-hosting-statistic .gh-panel-footer span {
  color: var(--primary-color, #EB5E28);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.gh-panel-hosting-links .gh-panel-body {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 40px;
  align-self: stretch;
  flex-wrap: wrap; 
}
.gh-panel-hosting-links .gh-panel-body figure{
  display: flex;
  width: 102px;
  flex-direction: column;
  align-items: center;
  gap: 10px; 
}
[data-target-url] {
  border-radius: 5px;  overflow: hidden;
}
.gh-panel-hosting-links .gh-panel-body figure figcaption{
  text-align: center;
}
.gh-domain-billing,
.gh-panel-hosting-billing .gh-panel-body{
  display: flex;
  height: 100%;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  flex: 1 0 0; 
}
.gh-domain-billing > div {
  width: 440px;
  display: flex;
  align-items: center;
  gap: 40px; 
}
.gh-panel-hosting-billing .gh-panel-body > div {
  width: 260px;
  display: flex;
  align-items: center;
  gap: 40px; 
}
.gh-panel-hosting-billing.gh-panel-hosting-billing .gh-panel-body > div {
  gap: 0;
}
.gh-panel-hosting-billing.gh-panel-hosting-billing .gh-panel-body .gh-panel-hosting-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.gh-panel.gh-panel-hosting.gh-panel-hosting-billing .gh-panel-body .dropdown.bootstrap-select.gh-select-flat button.btn.dropdown-toggle.gh-select-flat.fs-15px .filter-option .filter-option-inner .filter-option-inner-inner {
  font-weight: 700;
  font-size: 13px;
}

.pie-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@property --p{
  syntax: '<number>';
  inherits: true;
  initial-value: 0;
}

.pie {
  --p:20;
  --b:22px;
  --c:darkred;
  --w:150px;
  
  width:var(--w);
  aspect-ratio:1;
  position:relative;
  display:inline-grid;
  margin:5px;
  place-content:center;
  font-size:25px;
  font-weight:bold;
  font-family:sans-serif;
}
.pie:before {
  content:"";
  position:absolute;
  border-radius:50%;
}
.pie:before {
  inset:0;
  background:
    conic-gradient(var(--c) calc(var(--p)*1%), white calc(var(--p)*1%), white 100%);
  -webkit-mask:radial-gradient(farthest-side,#0000 calc(99% - var(--b)),#000 calc(100% - var(--b)));
          mask:radial-gradient(farthest-side,#0000 calc(99% - var(--b)),#000 calc(100% - var(--b)));
}

.edit-product-cart-info > * {
  height: 25px;
  font-size: 13px;
}
.edit-product-cart-info > button {
  padding: revert-layer;
}
.edit-product-cart-info {
  width: max(265px, 90%);
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 20px;
  padding: 20px 0;
}

#add-project-form .modal-body,
#edit-project-form .modal-body,
#role-modal .modal-body,
#employee-data-modal .modal-body {
  position: unset;
}

.check-button-container input[type="radio"],
#edit-employee-depatment-list input[type="radio"],
#edit-employee-project-list input[type="radio"],
#add-employee-depatment-list input[type="radio"],
.check-button-container input[type="checkbox"],
#edit-employee-depatment-list input[type="checkbox"],
#edit-employee-project-list input[type="checkbox"],
#add-employee-depatment-list input[type="checkbox"] {
  display: none;
}
.is-invalid-shadow,
input.is-invalid label {
  box-shadow: 0px 0px 0px 1px #ff7a7a;
}

.check-button-container,
#edit-employee-project-list,
#edit-employee-depatment-list,
#add-employee-depatment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.row-gap-20 {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}
.test-class {
  border: 1px solid #f00;
  row-gap: 15px;
}

.role-name-show input,
.role-note-show input,
.role-name-show button,
.role-note-show button {
  font-size: 24px;
  font-weight: 500;
  line-height: 1rem;
  padding: 0 15px 0 15px;
  color: var(--main-text-color, #777);
  height: 29px;
  /* background-color: unset; */
  /* border: unset; */
}
.role-name-show button,
.role-note-show button {
  font-size: 18px;
}
.user-roles-list {
  display: flex;
}
.user-roles-list .user-role {
  display: flex;
  flex-direction: row;
}

.user-roles-list .user-role .user-name {
  width: 30%;
  display: flex;
  align-items: center;
}
.user-roles-list .user-role .role-name {
  width: 30%;
  display: flex;
  align-items: center;
}
.user-roles-list .user-role .project-name {
  width: 30%;
  display: flex;
  align-items: center;
}
.user-roles-list .user-role .actions {
  width: 10%;
  display: flex;
  align-items: center;
}

.department-baloon {
  border-radius: 10px; 
}
.department-baloon .gh-panel-baloon-body {
  border-radius: 0 0 10px 10px;
}

.department-baloon .gh-panel-baloon-head {
  padding: 20px 40px;
  border-radius: 10px 10px 0 0;
}
.gh-panel-baloon-head .gh-panel-baloon-name .accordion-button {
  background-color: transparent;
  box-shadow: none;
  /* width: 1em;
  height: 1em; */
}
.gh-panel-baloon-head .gh-panel-baloon-name .accordion-button::after {
  margin-left: 20px;
}
.gh-panel-baloon-name span {
  color: var(--main-text-color, #777);
  padding-right: 20px;
}
.gh-panel-baloon-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 20px;
}
.gh-panel-baloon-info .gh-badge {
  height: 40px;
  min-width: 40px;
}
.department-baloon .accordion-body .gh-panel-container {
  gap: 40px;
}
.department-baloon .accordion-body .gh-panel-container .gh-panel-baloon {
  border: 1px solid var(--light-grey-color, #777);
}

.department-baloon .gh-panel-baloon-body .nav.nav-tabs {
  margin: 0 40px 20px 40px;
}
.department-baloon .gh-panel-baloon-body .accordion-body {
  padding: 0 40px 40px 40px;
}
.department-baloon .gh-panel-baloon-head .gh-panel-baloon-icon {
  width: 40px;
  height: 40px;
}
.department-baloon .gh-panel-baloon-head .gh-panel-baloon-name {
  width: min(200px, 80%);
  text-align: center; 
}
.department-baloon .gh-panel-baloon-head .gh-panel-baloon-note {
  width: min(200px, 100%);
  text-align: center; 
}
.department-baloon .gh-panel-baloon-head .gh-panel-baloon-info {
  /* width: min(200px, 100%); */
  text-align: center; 
}

.employee-baloon {
  padding: none;
}
.employee-baloon .gh-panel-baloon-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
  padding: 11px 25px;
}
.employee-baloon .gh-panel-baloon-head > div {
  flex-grow: 1;
  text-align: center;
}
.employee-baloon .gh-panel-baloon-head .employee-name{
  text-align: left;
  width: min(285px, 100%);
}
.employee-baloon .gh-panel-baloon-head .employee-email{
  width: min(250px, 100%);
}
.employee-baloon .gh-panel-baloon-head .employee-phone{
  width: min(250px, 100%);
}
.employee-baloon .gh-panel-baloon-head .employee-position{
  width: min(250px, 100%);
}
.permission-list {
  padding: 20px 0 40px 0;
}
.action-buttons {
  display: flex;
  gap: 20px;
  justify-content: end;
}

.role-baloon .gh-panel-baloon-head .gh-panel-baloon-icon{
  height: 40px;
  width: 40px;
}
.role-baloon .gh-panel-baloon-head .gh-panel-baloon-name{
  width: min(250px, 100%);
}
.role-baloon .gh-panel-baloon-head .gh-panel-baloon-note{
  width: min(250px, 100%);
}
/*.role-baloon .gh-panel-baloon-head .gh-panel-baloon-info{
  width: min(150px, 100%);
}
 .role-baloon .gh-panel-baloon-head .gh-panel-baloon-actions{
  width: min(250px, 100%);
} */


.input-domain-block {
  width: 95%;
}
.input-domain-block .invalid-feedback {
 flex-basis: 95%;
}

.password-group {
  display: grid;
  grid-template-columns: 1fr 45px 1fr;
  column-gap: 20px;
}
.input-grid-group-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
}
.flag-small {
  width: 40px;
  height: 40px;
}
.password-group {
  display: grid;
  grid-template-columns: 1fr 45px 1fr;
  column-gap: 20px;
}
.input-grid-group-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
}

.bg-black {
  background-color: #000 !important;
}
.gh-tab-pane {
  padding: 40px 0 40px 0;
}
.gh-box {
  border-radius: 5px;
  background: var(--white-color, #FFF);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}
.gh-box>:last-child,
.gh-box>:last-of-type {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  overflow: hidden;
}
.gh-box>:first-child,
.gh-box>:first-of-type {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.gh-box .box-title,
.gh-box .box-title {
  color: #444;
  /*font-family: "Open Sans";*/
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.gh-box .box-title {
  background: linear-gradient(0deg, #D7D7D7 0%, #D7D7D7 100%), #DAF0FA; 
  display: flex;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
}
.gh-box .box-title {
  background: #DAF0FA;
  display: flex;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
}


.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid var(--delimiter-color, #D7D7D7);
  padding: 1rem !important;
}
.properties {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch; 
}
.property {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch; 
}
.property-key {
  font-weight: 400;
}
.property-value {
  font-weight: 900;
}
.gh-panel-hosting figure img {
  height: 40px;
}

.transparent {
  background: transparent;
  border: none;
}
.hosting-fast-links {
  color: var(--main-text-color, #444);
  font-size: 14px;
  font-weight: 600;
}

.menu-body:hover {
  scrollbar-width: thin;
  scrollbar-color: var(--delimiter-color, #777) transparent;
}

.menu-body::-webkit-scrollbar {
  width: 5px;
}

.menu-body:hover::-webkit-scrollbar-thumb {
  background-color: var(--delimiter-color, #777);
  border-radius: 5px;
}

.menu-body:hover::-webkit-scrollbar-thumb:hover {
  background-color: var(--delimiter-color, #777);
  border-radius: 5px;
}

.v-btn__overlay {
  opacity: 0 !important;
}
:root {
  --v-theme-overlay-multiplier: 0.2;
  --v-scrollbar-offset: 0px;
}
.container-button {
  display: flex;
  padding: 20px 0px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}
.container-action {
  display: flex;
  padding: 0px 20px 10px 20px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid #FFF;
  box-shadow: 0px 15px 10px -15px rgba(0, 0, 0, 0.25);
}

.ssl .baloon-logo {
  width: unset;
}

.ssl .btn-show {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23777'%3e%3cpath stroke='%231C1D26' stroke-width='2' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: 50% 50%;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.ssl:not(.collapsed) .btn-show {
  transform: rotate(180deg);
}
.ssl-info-block {
  width: min(560px, 100%);
  display: flex;
  padding-left: 40px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.common-baloon-actions button {
  width: 44px;
  height: 44px;
}
.sale-sign {
  background: #47B2E4;
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-size: 14px;
  font-weight: 300;
  z-index: 999;
}
.dns-tab-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dns-tab-head .container-action {
  box-shadow: none;
}
.dns-tab-head .container-action button{
  background: inherit;
}

.ns-records th,
.ns-records td {
  padding-top: 40px;
}

.gh-modal .input-container {
  display: inline-flex;
  align-items: center;
  width: 100%;
}
.gh-modal .input-container::after {
  content: '.';
  margin-left: 2px;
}

.gh-modal .btn-gh-medium-size{
  padding: .375rem .75rem;
}
.gh-modal label{
  color: var(--ighted-bold-text-color, #1C1D26);
  font-size: 14px;
  font-weight: 700;
}
.gh-modal .modal-header{
  font-size: 18px;
  font-weight: 700;
  flex: 1 0 0;
}
.gh-modal .modal-content{
  border-radius: 20px;
  border: 1px solid var(--ighted-bold-text-color, #1C1D26);;
  background: linear-gradient(0deg, #F5F5F5 0%, #F5F5F5 100%), #EFEEEE;
  box-shadow: 15px 15px 15px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  min-width: 650px;
  max-width: 1350px;
  padding: 40px;
  flex-direction: column;
}

#services a.icon-box{
  color: var(--main-text-color, #444444);
}
#services .icon-box:hover h4{
  color: var(--hover-collor, #73c5eb);
}

.js-snackbar-container {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 100%;
  z-index: 999;
  overflow: hidden;
}

.js-snackbar-container--top-left {
  bottom: unset;
  right: unset;
  top: 0;
  left: 0;
}

.js-snackbar-container--top-center {
  top: 0;
  bottom: unset;
  left: 50%;
  right: unset;
  transform: translateX(-50%);
}

.js-snackbar-container--top-right {
  bottom: unset;
  right: 0;
  left: unset;
  top: 0;
}

.js-snackbar-container--bottom-left {
  bottom: 0;
  right: unset;
  left: 0;
  top: unset;
}

.js-snackbar-container--bottom-center {
  bottom: 0;
  right: unset;
  left: 50%;
  top: unset;
  transform: translateX(-50%);
}

.js-snackbar-container--fixed {
  position: fixed;
}

.js-snackbar-container * {
  box-sizing: border-box;
}

.js-snackbar__wrapper {
  overflow: hidden;
  height: auto;
  margin: 0;
  border-radius: 3px;
  display: flex;
  min-width: auto;
  transition-property: all;
  transition-timing-function: ease;
  transition-duration: 0.5s;
}

.js-snackbar {
  display: inline-flex;
  box-sizing: border-box;
  border-radius: 3px;
  color: #eee;
  font-size: 16px;
  background-color: #262626;
  vertical-align: bottom;
  box-shadow: 0 0 4px 0 black;
  margin: 0 10px;
  flex-grow: 1;
}

.js-snackbar__close,
.js-snackbar__status,
.js-snackbar__message-wrapper {
  position: relative;
}

.js-snackbar__message-wrapper::after {
  content: '';
  position: absolute;
  top: 25%;
  right: 0;
  width: 2px;
  height: 50%;
  background-color: #5a585d;
}
.js-snackbar__message-wrapper {
  flex: 1;
  padding: 12px;
}

.js-snackbar__message {
  display: inline-block;
}

.js-snackbar__status {
  display: none;
  min-width: 15px;
  margin-right: 5px;
  border-radius: 3px 0 0 3px;
  background-color: transparent;
}

.js-snackbar__status.js-snackbar--success,
.js-snackbar__status.js-snackbar--warning,
.js-snackbar__status.js-snackbar--danger,
.js-snackbar__status.js-snackbar--info {
  display: flex;
  justify-content: center;
  align-items: center;
}

.js-snackbar__status.js-snackbar--success  {
  background-color: #4caf50;
}

.js-snackbar__status.js-snackbar--warning  {
  background-color: #ff9800;
}

.js-snackbar__status.js-snackbar--danger {
  background-color: #b90909;
}

.js-snackbar__status.js-snackbar--info {
  background-color: #2196f3;
}

.js-snackbar__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid white;
  font-weight: bold;
  border-radius: 20px;
  height: 20px;
  width: 20px;
  text-align: center;
  margin: 0 5px;
  font-family: monospace;
}

.js-snackbar__action {
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: #838cff;
  cursor: pointer;
}

.js-snackbar__action:hover {
  background-color: #333;
}

.js-snackbar__close {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 10px;
  user-select: none;
  color: #BBB;
}

.js-snackbar__close:hover {
  background-color: #444;
}