.full-table {
  box-shadow: 0 3px 6px rgba(0, 0, 0, .08);
}

.full-table .table-header {
  position: sticky;
  top: 120px;
  z-index: 999;
  margin-bottom: 108px;
}


/* Locations */

.locations-wrap {
  grid-template: 62px / auto auto;
  background-color: #000;
  padding: 0 20px;
}

.locations-wrap .title {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  justify-self: start;
  margin: auto 0;
} 

.locations-wrap .title b {
  font-weight: 900;
}

.locations-wrap .locations {
  justify-self: end;
  display: flex;
  align-items: center;
}

.locations-wrap .locations .loc {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  color: rgba(255, 255, 255, .6);
  cursor: pointer;
  height: 60px;
  display: flex;
  align-items: center;
  margin: 0 15px;
}

.locations-wrap .locations .loc:last-child {
  margin-right: 0;
}

.locations-wrap .locations .loc:hover {
  color: rgba(255, 255, 255, .8);
}

.locations-wrap .locations .loc span {
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.locations-wrap .locations .loc.active {
  color: #fff;
}

.locations-wrap .locations .loc.active span {
  border-color: #fff;
}


/* Filters */

.full-table .filters-wrap {
  padding: 0 20px;
  background-color: #f2f2f2;
  border: 1px solid #ededed;
  border-top: none;
}

.full-table .filters {
  display: grid;
  /* grid: auto / 0.8fr 1fr 1fr 1.3fr 1fr; */
  grid: auto / 1fr 230px 230px auto 210px;
  height: 0;
  transition: all .2s ease;
  opacity: 0;
  pointer-events: none;
}

.full-table .filters.active {
  height: 102px;
  padding: 20px 0 15px;
  opacity: 1;
  pointer-events: auto;
}

.full-table .filters > div {
  text-align: left;
  border-right: 1px solid rgba(112, 112, 112, .1);
  padding: 0 30px;
  font-size: 13px;
  color: #858585;
}

.full-table .filters > div:first-child {
  padding-left: 0;
}

.full-table .filters > div:last-child {
  border-right: none;
  padding-right: 0;
}

.full-table .filters h6 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #858585;
}

.full-table .filters label {
  display: flex;
  align-items: center;
}

.full-table .filters label:first-of-type {
  margin-bottom: 5px;
}

.full-table .filters .range-values {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}

.full-table .filters .grid {
  /* grid: auto / 1fr 0.6fr; */
  grid: auto / 170px 1fr;
}

.full-table .filters .grid h6 {
  grid-column: 1/3;
}

.full-table .filters .grid .checkboxes {
  margin-left: 20px;
}


/* Checkbox */

.full-table .filters input[type='checkbox'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 1px solid #dcdcdc !important;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  height: 18px;
  width: 18px !important;
}

.full-table .filters input[type='checkbox']:checked:after {
  content: '\2714';
  font-size: 14px;
  position: absolute;
  top: 8px;
  left: 3px;
  color: #0095cd;
  line-height: 1px;
}


/* Filters toggle */

.full-table .dd-link {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.full-table .dd-link .link {
  font-size: 12px;
  text-transform: uppercase;
  color: #0095cd;
  height: 40px;
  line-height: 40px;
}

.full-table .dd-link .link:hover,
.full-table .dd-link .link:hover .icon:before {
  color: #05a7e7;
}

.full-table .dd-link .link .icon {
  margin-right: 8px;
}

.full-table .dd-link .link .icon.reverse {
  display: inline-block;
  transform: rotate(180deg);
}


/* Header */

.full-table .servers-table {
  margin-top: -109px;
}

.full-table .servers-table .grid {
  grid-template: auto / 3fr 1fr 1fr 1.5fr 1.2fr 1.4fr 1fr 2fr;
  grid-gap: 40px;
  align-items: center;
}

.full-table .servers-table .head {
  height: 40px;
  line-height: 40px;
  font-size: 11px;
  font-weight: 700;
  color: #858585;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px solid #ededed;
  border-top: none;
  grid-template-rows: 40px;
  padding: 0 20px;
  position: sticky;
  top: 223px;
  z-index: 99;
  margin-bottom: 70px;
}


/* Details (sort and hours) */

.servers-table .details {
  border: 1px solid #dfdfdf;
  background: #fff;
  position: absolute;
  top: 42px;
  left: 12px;
  border-radius: 4px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .1);
  z-index: 4;
  min-width: 150px;
}

.servers-table .details .close {
  position: absolute;
  font-size: 14px;
  display: block;
  height: 16px;
  width: 16px;
  text-align: center;
  color: #858585;
  cursor: pointer;
}

.servers-table .details .close:hover {
  color: #05a7e7;
}

.servers-table .details .triangle {
  height: 12px;
  width: 14px;
  position: absolute;
  overflow: hidden;
}

.servers-table .details .triangle:before {
  height: 100%;
  width: 100%;
  position: relative;
  transform: rotate(45deg);
  content: '';
  display: block;
  position: absolute;
  border: 1px solid #dfdfdf;
  bottom: -75%;
  background: #fff;
  background-size: cover;
}


/* Sort details */

.servers-table .sort {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.servers-table .sort .details {
  padding: 10px 14px;
  text-transform: none;
  text-align: left;
}

.servers-table .sort .details > span {
  display: block;
  line-height: normal;
  padding: 6px 0;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  transition: all .2s ease;
  cursor: pointer;
}

.servers-table .sort .details .close {
  right: 5px;
  top: 4px;
}

.servers-table .sort .details .triangle {
  right: 40px;
  top: -12px;
}

.servers-table .sort > span {
  display: inline;
  text-transform: none;
  white-space: nowrap;
  font-size: 12px;
  color: #0095cd;
  cursor: pointer;
}

.servers-table .sort .details > span:hover,
.servers-table .sort > span:hover {
  color: #05a7e7;
}


/* end of Sort */

.full-table .servers-table .head.mfix {
  top: 324px;
}

.full-table .servers-table .grid > div:first-child {
  justify-self: start;
  padding-left: 60px;
}


/* Items */

.servers-table .servers {
  background-color: #fff;
}

.servers-table .servers .server {
  padding: 0 20px;
  font-size: 13px;
  color: #000;
  /* height: 69px; */
  height: 54px;
  border-bottom: 1px solid #ededed;
}

.servers-table .servers .server .name {
  font-size: 14px;
  position: relative;
}

.servers-table .servers .server .price-curr {
  font-size: 16px;
  font-weight: 900;
}

.servers-table .servers .server .price-curr del {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #858585;
}

.servers-table .servers .server .btn {
  height: 36px;
  line-height: 36px;
  font-size: 13px;
  width: 100%;
}


/* Setup details */

.servers-table .hours {
  position: relative;
  text-align: left;
  padding-left: 12px;
}

.servers-table .hours .d-link {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: #0095cd;
  cursor: pointer;
}

.servers-table .hours .d-link:hover {
  color: #05a7e7;
}

.servers-table .hours .details {
  padding: 10px 20px 10px 40px;
}

.servers-table .hours .details .close {
  right: 5px;
  top: 4px;
}

.servers-table .hours .details .triangle {
  left: 10px;
  top: -12px;
}

.servers-table .hours span {
  display: block;
  position: relative;
  white-space: nowrap;
}

.servers-table .hours span:before {
  position: absolute;
  left: -24px;
  top: 1px;
}

.servers-table .hours span.ca:before {
  content: url('/gallery/images/flag-ca.png');
}

.servers-table .hours span.us:before {
  content: url('/gallery/images/flag-us.png');
}

.servers-table .hours span.nl:before {
  content: url('/gallery/images/flag-nl.png');
}

.servers-table .hours span.nz:before {
  content: url('/gallery/images/flag-nz.png');
}

.servers-table .hours span b.green {
  color: #8bb94b;
}

.servers-table .hours span b.red {
  color: #ffa252;
}

.servers-table .servers-wrap {
  position: relative;
  margin-top: -70px;
}

.servers-table .no-result {
  width: 100%;
  height: 140px;
  padding: 20px;
  text-align: center;
  border: 1px solid #ddd;
  border-top: none;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.servers-table .layer {
  pointer-events: none;
}

.servers-table .layer.active {
  background: #fff;
  border: 1px solid #ededed;
  border-top: none;
  pointer-events: auto;
}

.servers-table .layer.error-msg .icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.servers-table .flag {
  z-index: 50;
  top: -4px;
  height: 26px;
  width: 45px;
}

.servers-table .flag:after {
  top: 7px;
}

.servers-table .flag.sale {
  background-color: #F16866;
}

.servers-table .flag.special {
  width: 59px;
  left: -14px;
}

@media (max-width: 1199px) {
  .full-table .filters {
    grid: auto / 1fr 1fr 1fr 1.1fr 0.9fr;
  }
  .full-table .servers-table .grid {
    grid-gap: 10px;
  }
}

@media (max-width: 999px) {
  .full-table {
    width: 100%;
    overflow: auto;
  }
  .full-table .table-header {
    display: none;
  }
  .servers-table .no-result {
    height: 100%;
  }
  .full-table .servers-table {
    grid-template: auto / 120px auto;
    grid-gap: 0;
    margin-top: 0;
  }
  .full-table .servers-table .grid {
    grid-template: repeat(8, 50px) / 1fr;
    grid-gap: 0;
  }
  .full-table .servers-table .head {
    position: static;
    height: auto;
    line-height: normal;
    margin: 0;
    text-align: left;
    padding: 0;
  }
  .full-table .servers-table .grid > div:first-child {
    padding-left: 0;
    padding-top: 6px;
  }
  .full-table .servers-table .grid > div:not(:last-child) {
    border-bottom: 1px solid #ededed;
    height: 50px;
    line-height: 50px;
    width: 100%;
  }
  .full-table .servers-table .head > div:not(:last-child) {
    padding-left: 20px;
  }
  .servers-table .servers-wrap {
    margin: 0;
  }
  .servers-table .servers {
    display: flex;
  }
  .servers-table .servers .server {
    padding: 0;
    height: auto;
    border: none;
    width: 170px;
  }
  .servers-table .servers .server:last-child {
    border-right: 1px solid #ededed;
  }
  .servers-table .servers .server:nth-child(odd) {
    background-color: #fafafa;
  }
  .servers-table .servers .server .price-curr del {
    display: none;
  }
  .servers-table .servers .server .btn {
    color: #0095cd !important;
    background: transparent !important;
  }
  .servers-table .servers .server .btn:hover {
    color: #05a7e7 !important;
  }
  .servers-table .hours {
    padding-left: 0;
    text-align: center;
  }
  .servers-table .flag,
  .servers-table .flag.special {
    top: 0;
    left: 62px;
    width: 45px;
  }
  .servers-table .flag.nvme {
    background: url(/gallery/images/nvme-logo-blue.svg) no-repeat center;
    background-size: 36px;
  }
  .servers-table .sort {
    display: none;
  }
}

section.hero {
  height: 250px;
  background: #035481 url(/gallery/images/dedi-overview.jpg) no-repeat 0 0;
}


/* Section 1 */

section.advice .grid {
  /* grid: auto / 1fr 412px; */
  grid: auto / 1fr 380px;
  grid-gap: 100px;
}

section.advice .grid ul li {
  height: 48px;
  display: flex;
  align-items: center;
  padding-left: 50px;
  position: relative;
}

section.advice .grid ul .icon {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 32px;
}

section.advice .grid .card {
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(0, 0, 0, .1);
  align-self: center;
  background: #F7F7F7;
  border-color: #e6e6e6;
}

section.advice .grid .card .top-text {
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  background-color: #0095cd;
  height: 40px;
  line-height: 40px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

section.advice .grid .card .main-content {
  padding: 25px;
}

section.advice .grid .card h2 {
  margin: 0 0 20px;
  font-size: 20px;
  text-transform: none;
}

section.advice .grid .card .btn {
  height: 40px;
  line-height: 40px;
  width: 100%;
  margin: 20px 0 0;
  display: block;
}

@media(max-width:991px) {
  section.advice .grid {
    grid: auto / 1fr 1fr;
    grid-gap: 40px;
  }
  section.advice .grid .card {
    max-width: 412px;
  }
}

@media(max-width:767px) {
  section.advice .grid {
    grid: auto / 1fr;
  }
}


/* Section 2 */

section.servers .wrap {
  padding-bottom: 20px;
}

section.servers .h2-sub,
section.os .h2-sub {
  line-height: normal;
}

section.servers .l-grey {
  font-size: 14px;
  color: #858585;
  text-align: left;
}


/* Section 2.5 */

section.video .grid {
  grid: auto / 1fr 1fr;
  grid-gap: 100px;
  align-items: center;
}

@media(max-width:991px) {
  section.video .grid {
    grid-gap: 40px;
  }
}

@media(max-width:767px) {
  section.video .grid {
    grid: auto / 1fr;
  }
}


/* Section 3 */

section.help .wrap {
  padding-top: 20px;
}

section.help p.h2 {
  font-size: 24px;
  line-height: 24px;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
}

section.help .btn-info {
  width: 250px;
}

section.help .link {
  padding: 0 20px;
  display: inline-block;
}

@media(max-width:767px) {
  section.help .btn-info {
    margin-bottom: 20px;
  }
}


/* Section 4 */

section.os .grid {
  grid: auto / repeat(6, auto);
  align-items: center;
  justify-items: center;
  margin-bottom: 24px;
}

section.os .sprite {
  display: inline-block;
  background: url('/gallery/images/dedi-overview-testim-logo-sprite.png') no-repeat;
  overflow: hidden;
  text-indent: -9999px;
  text-align: left;
  cursor: pointer;
}

section.os .sprite.windows {
  background-position: 50% 0;
  width: 206px;
  height: 24px;
}

section.os .sprite.freebsd {
  background-position: 3.509% 31.111%;
  width: 100px;
  height: 28px;
}

section.os .sprite.centos {
  background-position: 91.525% 31.461%;
  width: 96px;
  height: 29px;
}

section.os .sprite.ubuntu {
  background-position: 3.478% 63.158%;
  width: 99px;
  height: 23px;
}

section.os .sprite.fedora {
  background-position: 89.167% 68.539%;
  width: 94px;
  height: 29px;
}

section.os .sprite.debian {
  background-position: 3.15% 95.604%;
  width: 87px;
  height: 27px;
}

section.os .btn-transparent {
  width: 200px;
}

@media(max-width:991px) {
  section.os .grid {
    grid: auto / repeat(3, auto);
    margin: 36px 0 30px;
    grid-gap: 20px;
  }
  section.os .sprite.windows,
  section.os .sprite.centos {
    justify-self: start;
  }
  section.os .sprite.ubuntu,
  section.os .sprite.fedora {
    justify-self: end;
  }
}

@media(max-width:767px) {
  section.os .grid {
    grid: auto / repeat(2, auto);
  }
  section.os .sprite.windows,
  section.os .sprite.centos,
  section.os .sprite.ubuntu,
  section.os .sprite.fedora {
    justify-self: center;
  }
  section.os .sprite.windows {
    width: 150px;
    height: 19px;
    background-size: 100%;
  }
  section.os .btn-transparent {
    width: 100%;
  }
}


/* Section 5 */

section.solutions .wrap,
section.testimonial .wrap {
  max-width: 800px;
}

section.solutions .grid {
  margin-top: 60px;
  grid: auto / 1fr 2fr;
}

section.solutions ul {
  border-right: 1px solid rgba(0, 0, 0, .2);
}

section.solutions ul li {
  height: 50px;
  line-height: 50px;
  padding-left: 74px;
  position: relative;
  font-size: 15px;
  cursor: pointer;
}

section.solutions ul li:hover {
  background-color: #f7f7f7;
}

section.solutions ul li .icon {
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 32px;
}

section.solutions ul li.active {
  background-color: #0095cd;
  color: #fff;
  font-weight: 700;
}

section.solutions ul li.active .icon:before {
  color: #fff;
}

section.solutions .desc {
  padding: 0 40px;
  align-self: center;
}

section.solutions .desc .h3 {
  font-size: 19px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #000;
  font-weight: 700;
}

section.solutions .desc .icon {
  margin-right: 10px;
  font-size: 48px;
}

section.solutions .desc p {
  font-size: 15px;
}

@media(max-width:767px) {
  section.solutions .grid {
    grid: auto / 1fr;
  }
  section.solutions ul {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    padding-bottom: 20px;
  }
  section.solutions .desc {
    padding: 30px 5px;
  }
}


/* Section 6 */

section.testimonial .grid {
  grid: auto / 1fr 3fr;
}

section.testimonial .grid p {
  font-size: 17px;
}

@media(max-width:767px) {
  section.testimonial .grid {
    grid: auto / 1fr;
    text-align: center;
    justify-items: center;
  }
}


/* Form */

.product-catalog {
  background: linear-gradient(96deg, #0094CD 45%, #ffffff 45.1%);
}

.product-catalog .pricing-form {
  width: 940px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid: auto / auto 1fr;
  grid-gap: 80px;
  align-items: center;
  position: relative;
}

.product-catalog .pricing-form img {
  max-width: 360px;
}

.product-catalog .pricing-form .title {
  color: #000;
  font-size: 26px;
  margin-bottom: 60px;
}

.product-catalog .pricing-form .title b {
  font-size: 38px;
  font-weight: 900;
}

.product-catalog .pricing-form input {
  width: 100%;
  height: 48px;
  line-height: 48px;
  margin-bottom: 30px;
  border: 1px solid #D6D6D6;
  padding: 10px;
}

.product-catalog .pricing-form .btn-orange {
  font-size: 17px;
  font-weight: 900;
  font-family: 'Lato';
  width: 100%;
  height: 48px;
  line-height: 48px;
  background: #FFA252;
  border: none;
}

.product-catalog .pricing-form .btn-orange:hover {
  background: #FF983F;
}

.product-catalog .pricing-form .small {
  font-size: 14px;
  color: #bfbfbf;
  text-align: center;
}

.product-catalog .close-modal {
  z-index: 9;
  position: absolute;
  top: 0;
  cursor: pointer;
  right: 0;
  color: #a4a4a4;
  font-size: 40px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  width: 30px;
  border-radius: 50%;
  transition: all .4s ease;
}

.product-catalog .close-modal:hover {
  color: red;
}

@media(max-width:991px) {
  .product-catalog .pricing-form {
    width: 100%;
    grid-gap: 40px;
  }
  .product-catalog .pricing-form img {
    width: 250px;
  }
  .product-catalog .pricing-form .title {
    font-size: 20px;
  }
  .product-catalog .pricing-form .title b {
    font-size: 28px;
  }
}

@media(max-width:767px) {
  .product-catalog {
    background: #0095cd;
  }
  .product-catalog .pricing-form {
    grid: auto / 1fr;
    padding: 20px;
  }
  .product-catalog .pricing-form .title,
  .product-catalog .pricing-form .small {
    color: #fff;
  }
  .product-catalog .pricing-form img {
    width: 100%;
    margin: 0 auto;
  }
}
