﻿@charset "UTF-8";
b, strong {
  font-weight: 500;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
input[type=checkbox] + label:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #3a8095;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
  -webkit-transition: all 0.12s, border-color 0.08s;
  transition: all 0.12s, border-color 0.08s;
}
input[type=checkbox]:checked + label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar {
  background-color: #f8f9fc;
  height: 80px;
  border-top: 5px solid #3a8095;
}
.navbar .navbar-brand img {
  height: 35px;
}

table.table th {
  font-weight: 500;
  border-bottom: 0;
}
table.table td {
  vertical-align: middle;
}
table tr:first-child td {
  border-top: 0px !important;
}

.break-all {
  word-break: break-all;
}

.footer a:hover {
  text-decoration: none;
}

.btn {
  box-shadow: none !important;
}

.form-control, .input-group-text {
  border: 0;
}

.navbar-toggler {
  color: #3a8095;
  outline: 0 !important;
}

.navbar-collapse {
  margin-top: -5px;
}
.navbar-collapse.show {
  position: absolute;
  top: 0;
  min-height: 100vh;
  width: 256px;
  padding: 1rem;
  overflow-y: auto;
  z-index: 1;
  background-color: #fff;
  border-left: 1px solid #eaebed;
}
.navbar-collapse.show .navbar-nav {
  height: 100vh;
}

@media (max-width: 575px) {
  .navbar .navbar-brand img {
    height: 26px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1.1rem;
  }
  h6 {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .col-form-label {
    font-size: 0.8rem;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0.2rem;
  }
}
html, body {
  height: 100%;
}

body {
  position: relative;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
}
body.menu-open {
  overflow: hidden;
  margin-right: 256px;
  margin-left: -256px;
}
body.menu-open .navbar-toggler {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  font-size: 3rem;
  padding: 0 0.6rem;
  color: #ced4da;
}
body.menu-open .navbar-toggler i::before {
  content: "×";
}
body.search-focus::after {
  position: fixed;
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(24, 66, 78, 0.75);
}

.font-alt {
  font-family: Dosis;
}

.lh-1 {
  line-height: 1rem;
}

.w-1 {
  width: 1px;
}

.border-radius-top-left-fix {
  border-top-left-radius: 1rem;
}

.border-radius-top-right-fix {
  border-top-right-radius: 1rem;
}

@keyframes mover {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    transform: translateY(-30px);
  }
}
.generic-page h1 {
  margin-top: 0.5rem;
}
.generic-page h2, .generic-page h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.generic-page h4 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.generic-page h5 {
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.generic-page .last-update {
  display: block;
  margin-top: 1rem;
}
.generic-page .policy-js-toggle {
  position: relative;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.5rem 2rem 0.5rem 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.375rem;
  cursor: pointer;
  font-size: 1.25rem;
}
.generic-page .policy-js-toggle.active:after {
  content: "\f106";
}
.generic-page .policy-js-toggle:after {
  font-family: "FontAwesome";
  content: "\f107";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.generic-page .policy-toggle-container {
  padding: 0.5rem 0.75rem 0;
}

.tt-menu {
  background: #fff;
  width: 100%;
  padding: 1rem;
  overflow-x: hidden;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-top: 0;
}

#cc_cont {
  position: fixed;
  display: flex;
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  justify-content: center;
  align-items: center;
}
#cc_cont #cc_inner {
  display: flex;
  flex-direction: column;
  justify-content: start;
  overflow: auto;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  padding-top: 30px;
  background: white;
  color: #4c4c4c;
  width: 420px;
  max-width: calc(100% - 30px);
  max-height: calc(100% - 30px);
  font-size: 13px;
  line-height: 16px;
  font-weight: 300;
}
#cc_cont #cc_inner .intro {
  margin: 0 auto;
  width: 300px;
  max-width: 90%;
}
#cc_cont #cc_inner .intro img {
  display: block;
  margin: 0 auto 15px;
  height: 30px;
}
#cc_cont #cc_inner .intro p {
  display: block;
  text-align: justify;
  margin-bottom: 15px;
}
#cc_cont #cc_inner .intro p .ck_url {
  color: #4c4c4c;
  text-decoration: underline;
}
#cc_cont #cc_inner .intro .btns-cont {
  display: flex;
}
#cc_cont #cc_inner .intro .btns-cont #cc_deny {
  width: 48%;
  margin-right: 2%;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  background: #ececec;
  color: #4c4c4c;
  font-size: 13px;
  line-height: 16px;
  font-weight: 300;
  padding: 10px 20px;
  border: 0;
  transition: all linear 0.3s;
}
#cc_cont #cc_inner .intro .btns-cont #cc_deny:hover {
  background: rgb(223.25, 223.25, 223.25);
}
#cc_cont #cc_inner .intro .btns-cont #cc_accept {
  width: 48%;
  margin-left: 2%;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  background: #3a8095;
  color: white;
  font-size: 13px;
  line-height: 16px;
  font-weight: 300;
  padding: 10px 20px;
  border: 0;
  transition: all linear 0.3s;
}
#cc_cont #cc_inner .intro .btns-cont #cc_accept:hover {
  background: rgb(50.8550724638, 112.231884058, 130.6449275362);
}
#cc_cont #cc_inner hr {
  display: block;
  border-top: 1px solid #ececec;
  width: 100%;
  margin: 30px auto 0;
}
#cc_cont #cc_inner .btn-details-cont {
  margin: 0 auto;
  width: 100%;
}
#cc_cont #cc_inner .btn-details-cont #cc_det_btn {
  display: flex;
  justify-content: center;
  cursor: pointer;
  align-items: center;
  color: #4c4c4c;
  padding: 15px 0;
  text-decoration: none;
  transition: all linear 0.3s;
}
#cc_cont #cc_inner .btn-details-cont #cc_det_btn:hover {
  text-decoration: underline;
}
#cc_cont #cc_inner .details {
  margin: 0 auto;
  width: 300px;
  max-width: 90%;
  color: #9d9d9d;
}
#cc_cont #cc_inner .details #cc_det .cc_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
#cc_cont #cc_inner .details #cc_det .cc_box:nth-child(5) {
  margin-bottom: 20px;
}
#cc_cont #cc_inner .details #cc_det .cc_box .switch {
  display: inline-block;
  position: relative;
  height: 20px;
  width: 35px;
  margin: 0;
}
#cc_cont #cc_inner .details #cc_det .cc_box .switch input {
  display: none;
}
#cc_cont #cc_inner .details #cc_det .cc_box .slider {
  background: #ececec;
  border: 0;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
}
#cc_cont #cc_inner .details #cc_det .cc_box .slider:before {
  position: absolute;
  content: "";
  background-color: white;
  color: white;
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  font-size: 9px;
  line-height: 9px;
  transition: 0.3s;
}
#cc_cont #cc_inner .details #cc_det .cc_box input:checked + .slider:before {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3a8095;
}
#cc_cont #cc_inner .details #cc_det .cc_box input:checked + .slider:before {
  transform: translateX(14px);
}
#cc_cont #cc_inner .details #cc_det .cc_box input:disabled + .slider:before {
  background-color: #ccc;
}
#cc_cont #cc_inner .details #cc_det .cc_box .slider.round {
  border-radius: 15px;
}
#cc_cont #cc_inner .details #cc_det .cc_box .slider.round:before {
  border-radius: 50%;
}
#cc_cont #cc_inner .details #cc_det #cc_save {
  display: block;
  text-align: center;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
  background: #ebf7fe;
  color: #3a8095;
  font-size: 13px;
  line-height: 16px;
  font-weight: 300;
  padding: 10px 20px;
  border: 0;
  margin-bottom: 15px;
  transition: all linear 0.3s;
}
#cc_cont #cc_inner .details #cc_det #cc_save:hover {
  background: rgb(210.7142857143, 237.2857142857, 252.7857142857);
}
#cc_cont #cc_inner .details #cc_det #cc_add_det {
  color: #9d9d9d;
  font-weight: 300;
  font-size: 11px;
  line-height: 13px;
  margin-bottom: 15px;
  text-align: center;
}

.home-box {
  padding: 5rem 0;
}
@media (max-width: 767px) {
  .home-box {
    padding: 2rem 0;
  }
}
.home-box form {
  width: 100%;
}
.home-box form .input-group {
  z-index: 3;
}
.home-box form .input-group.search-focus input {
  border-bottom-left-radius: 0;
}
.home-box form .input-group.search-focus button {
  border-bottom-right-radius: 0;
}
.home-box form .input-group span.twitter-typeahead {
  width: 100%;
}
.home-box form .input-group .input-group-append {
  position: absolute;
  right: 0;
  margin: 0;
}
.home-box form .input-group input {
  font-size: 1.8rem;
  height: 70px;
  padding-left: 20px;
  padding-right: 90px;
  border-top-left-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
}
.home-box form .input-group button {
  height: 70px;
  width: 80px;
  border-top-right-radius: 0.8rem;
  border-bottom-right-radius: 0.8rem;
  z-index: 4;
}
.home-box form .input-group button i {
  font-size: 2rem;
}
.home-box form .input-group button img {
  width: 36px;
  height: 36px;
}
.home-box .rocket {
  width: 100%;
  max-width: 100%;
  animation: mover 1s infinite alternate;
}

@media (max-width: 575px) {
  .home-box form .input-group input {
    font-size: 1.5rem;
    height: 55px;
  }
  .home-box form .input-group button {
    height: 55px;
    width: 65px;
  }
  .home-box form .input-group button i {
    font-size: 1.4rem;
  }
  .home-box form .input-group button img {
    width: 24px;
    height: 24px;
  }
}
.home-full-cont {
  background-color: #edf2f9;
  position: relative;
  padding-bottom: 2rem;
}
.home-full-cont:before {
  content: "";
  background-color: #fff;
  top: 0;
  height: 70px;
  width: 100%;
  position: absolute;
}
.home-full-cont .home-domain-boxes-cont {
  margin-bottom: 2rem;
}
.home-full-cont .home-domain-boxes-cont .home-domain-list-box {
  border: 0;
  margin-bottom: 1rem;
}
.home-full-cont .home-domain-boxes-cont .home-domain-list-box .card-header {
  background-color: #3a8095;
  color: #fff;
  font-family: "Dosis";
  font-size: 1.8rem;
  text-align: center;
  text-transform: uppercase;
  padding: 0.83rem 1.25rem;
  height: 70px;
}
.home-full-cont .home-domain-boxes-cont .home-domain-list-box .card-body {
  font-weight: 300;
  font-size: 0.85rem;
}
.home-full-cont .home-tag-cont {
  border: 0;
}

.domain-full-cont {
  background-color: #edf2f9;
}

.image-tag-box {
  display: block;
  color: white;
  margin-bottom: 1rem;
  text-transform: capitalize;
}
.image-tag-box:hover {
  text-decoration: none;
  color: white;
}
.image-tag-box > div {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  position: relative;
}
.image-tag-box > div:before {
  position: absolute;
  z-index: 0;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.35;
  background: #4c4c4c;
  border-radius: 0.5rem;
}
.image-tag-box > div .tag-title {
  font-family: Dosis;
  font-size: 2rem;
  z-index: 1;
}

.big-tag-box {
  display: block;
  text-transform: uppercase;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.big-tag-box .tag-title {
  font-family: Dosis;
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin-bottom: 0.5rem;
}
.big-tag-box .tag-subtitle {
  font-size: 0.8rem;
  line-height: 0.8rem;
  font-weight: lighter;
  margin: 0;
}

.small-tag-box {
  display: block;
  text-transform: uppercase;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.2rem;
}
.small-tag-box .tag-title {
  font-family: Dosis;
  font-size: 1rem;
  line-height: 1rem;
  margin-bottom: 0.5rem;
}
.small-tag-box .tag-subtitle {
  font-size: 0.8rem;
  line-height: 0.8rem;
  font-weight: lighter;
  margin: 0;
}

.search-bar {
  margin-top: -1rem;
}
.search-bar table {
  border-collapse: collapse;
}
.search-bar table td {
  padding: 0;
  margin: 0;
  border-collapse: collapse;
}
.search-bar table td input, .search-bar table td button {
  border-radius: 0;
}
.search-bar table td input.form-control-lg {
  height: 2.875rem;
}
.search-bar table td span.twitter-typeahead {
  width: 100%;
}
.search-bar table td button {
  height: 2.875rem;
}
.search-bar table td button img {
  display: block;
  height: 20px;
}
.search-bar .tt-menu {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.domain-row {
  display: flex;
  justify-content: space-between;
  padding: 0.2rem;
  line-height: 2;
}
.domain-row:not(:first-of-type) {
  border-top: 1px solid #dee2e6;
}
.domain-row:hover {
  text-decoration: none;
  background-color: #ebf7fe;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.2rem;
  line-height: 2;
}
.checkout-summary-row:not(:first-of-type) {
  border-top: 1px solid #dee2e6;
}

.buy-box {
  padding: 2rem 0;
}
.buy-box button.btn-lg {
  font-size: 1.8rem;
  font-weight: 500;
}
.buy-box .happy-man {
  width: 100%;
  max-width: 100%;
}

.domain-list {
  margin-bottom: 0;
}
.domain-list tr:hover a.domain-list-item-btn span {
  color: #fff;
  background-color: #3a8095 !important;
}
.domain-list .domain-row {
  padding: 0.32rem 0.2rem;
}
.domain-list a.domain-list-item-btn {
  padding: 0.3rem;
  display: block;
}
.domain-list a.domain-list-item-btn:hover {
  text-decoration: none;
}
.domain-list a.domain-list-item-btn span {
  display: block;
  width: 100%;
  color: #212529;
  background-color: #f8f9fc;
  border-color: #f8f9fc;
  text-align: center;
  padding: 0.3rem 0.2rem;
  border-radius: 0.5rem;
}
