/*!
 *   Core Stylesheet
!*/

/*
 * Core: General Layout Style
 * --------------------------
 */
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900%7CMontserrat:700");

body,
html {
  height: 100%;
}
a.btn-custom.btn-lg,
body {
  font-size: 1rem;
  line-height: 1.5;
}
body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}
a,
a:active,
a:hover,
a:link,
a:visited {
  color: #fff;
  text-decoration: none;
  outline: 0;
}
button,
button:active,
button:focus,
button:hover,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
select:focus,
.uneditable-input:focus,
.btn {
  border: none;
  box-shadow: none !important;
  outline: 0 none !important;
}
::-webkit-input-placeholder {
  opacity: 0.5 !important;
}
::-moz-placeholder {
  opacity: 0.5 !important;
}
:-ms-input-placeholder {
  opacity: 0.5 !important;
}
:-moz-placeholder {
  opacity: 0.5 !important;
}
.nav-tabs .nav-link,
.alert,
.card,
.input-group,
.input-group-prepend,
.input-group-append,
.input-group-text,
.custom-select {
  border-radius: 0;
}
.form-control {
  border-radius: 0;
  background-clip: unset;
  border: 1px solid #e9e9e9;
}
.form-control:active,
.form-control:focus {
  border: 1px solid #e9e9e9 !important;
}
.modal {
  overflow-y: auto;
  z-index: 10000;
}
.modal-content {
  border-radius: 0;
  border: none;
}
hr {
  border-color: #e9e9e9;
}
/*
 * Core: Custom Scrollbar
 * ----------------------
 */
::-webkit-scrollbar-track {
  background: none;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
  background: #ccc;
}
/*
 * Core: Vertical Alignment
 * ------------------------
 */
.d-table {
  display: table;
}
.d-table-row {
  display: table-row;
}
.d-table-cell {
  display: table-cell;
}
.v-align-middle {
  vertical-align: middle;
}
/*
 * Core: Margin & Padding
 * ----------------------
 */
.mt-custom-5 {
  margin-top: 2rem !important;
}
.mb-custom-5 {
  margin-bottom: 2rem !important;
}
/*
 * Core: General Theme Colour
 * --------------------------
 */
.bg--lightgray {
  background-color: #f0f5f6;
}
.bg--img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg--img-blue {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #414f63;
  height: 100vh;
}
.bg--overlay,
.bg--overlay-light {
  position: relative;
  z-index: 0;
}
.bg--overlay:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=97)";
  z-index: -1;
}
.bg--overlay-light:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.05;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=5)";
  z-index: -1;
}
.bd--top-bottom {
  border-style: solid;
  border-width: 1px 0;
  border-color: #e9e9e9;
}
/*
 * Core: Button
 * ------------
 */
.btn {
  border-radius: 0;
  padding: 0.5rem 1rem;
  font-weight: 700;
}
.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.2rem;
}
.btn-custom {
  background-color: #414f63;
  color: #fff !important;
}
.btn-custom-outline {
  background-color: transparent;
  border: 1px solid #414f63 !important;
  color: #414f63 !important;
}
.btn-custom-secondary {
  background-color: #ed1c24;
  color: #fff !important;
}
.btn-custom-secondary-outline {
  background-color: transparent;
  border: 1px solid #ed1c24;
  color: #ed1c24 !important;
}
.btn-custom-white {
  background-color: #fff;
  color: #333 !important;
}
.btn-custom-white-outline {
  background-color: transparent;
  border: 1px solid #fff !important;
  color: #fff !important;
}
.btn-custom-dark-outline {
  background-color: transparent;
  border: 1px solid #333 !important;
  color: #333 !important;
}
/*
 * Core: Hover Effect
 * ------------------
 */
.btn-custom.hvr-fade:hover,
.btn-custom.hvr-fade:active,
.btn-custom.hvr-fade:focus,
.wizard > .actions a.hvr-fade:hover,
.wizard > .actions a.hvr-fade:active {
  background-color: rgba(65, 79, 99, 0.8) !important;
}
.btn-custom-outline.hvr-fade:hover,
.btn-custom-outline.hvr-fade:active,
.btn-custom-outline.hvr-fade:focus {
  background-color: rgba(65, 79, 99, 0.15) !important;
}
.btn-custom-secondary.hvr-fade:hover,
.btn-custom-secondary.hvr-fade:active,
.btn-custom-secondary.hvr-fade:focus {
  background-color: rgba(237, 28, 36, 0.8) !important;
}
.btn-custom-secondary-outline.hvr-fade:hover,
.btn-custom-secondary-outline.hvr-fade:active,
.btn-custom-secondary-outline.hvr-fade:focus {
  background-color: rgba(237, 28, 36, 0.15) !important;
}
.btn-custom-white-outline.hvr-fade:hover,
.btn-custom-white-outline.hvr-fade:active,
.btn-custom-white-outline.hvr-fade:focus {
  background-color: rgba(255, 255, 255, 0.15) !important;
}
.btn-custom-dark-outline.hvr-fade:hover,
.btn-custom-dark-outline.hvr-fade:active,
.btn-custom-dark-outline.hvr-fade:focus,
.nav-log-in.hvr-fade:hover,
.nav-log-in.hvr-fade:active,
.nav-log-in.hvr-fade:focus,
.nav-sign-up.hvr-fade:hover,
.nav-sign-up.hvr-fade:active,
.nav-sign-up.hvr-fade:focus {
  background-color: rgba(51, 51, 51, 0.15) !important;
}
/*
 * Core: Select
 * ------------
 */
 /*
.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 0.6rem;
}
*/
/*
.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: 100%;
  height: 40px;
  background-color: #fff;
  border: 1px solid #e9e9e9;
  padding: 0.4rem 0.9rem;
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  border: 1px solid #e9e9e9;
  padding: 0.4rem 0.9rem;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-color: #333 transparent transparent transparent;
  position: absolute;
  top: 1rem;
  right: 0.6rem;
}
.select-styled:active:after,
.select-styled.active:after {
  top: 0.5rem;
  border-color: transparent transparent #333 transparent;
}
*/
.select-styled {
display: none;
  }
.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
}
.select-options li {
  margin: 0;
  padding: 0.4rem 0;
  text-indent: 0.9rem;
  border-right: 1px solid #e9e9e9;
  border-left: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  background-color: #fff;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
.select-options li:hover {
  background-color: #fafafa;
}
.select-options li[rel="hide"] {
  display: none;
}

/*
 * Core: Alert
 * -----------
 */
.alert-container {
  position: fixed;
  width: 100%;
  z-index: 998;
  display: none;
}
.alert-custom {
  margin-top: 0px;
  margin-bottom: 0;
  padding: 1.55rem;
  font-weight: 500;
}
.alert-danger button.close {
  color: #721c24;
  opacity: 1;
}
.alert-danger button.close:hover,
.alert-danger button.close:focus,
.alert-danger button.close:active {
  opacity: 0.7;
}
.alert-success button.close {
  color: #155724;
  opacity: 1;
}
.alert-success button.close:hover,
.alert-success button.close:focus,
.alert-success button.close:active {
  opacity: 0.7;
}
/*
 * Core: Pagination
 * ----------------
 */
.pagination {
  display: block;
  margin: 0;
  border-radius: 0;
  font-size: 0;
  line-height: 1.5;
}
.pagination > li {
  display: inline-block;
}
.pagination > li > a,
.pagination > li > span {
  color: #333;
  font-size: 0.875rem;
  line-height: 1.5;
  -webkit-transition: color 0.25s, background-color 0.25s ease-in-out,
    border-color 0.25s;
  transition: color 0.25s, background-color 0.25s ease-in-out,
    border-color 0.25s;
}
.pagination > li.active > a,
.pagination > li.active > a:hover,
.pagination > li.active > span,
.pagination > li.active > span:hover,
.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  color: #fff;
  background-color: #ed1c24;
  border-color: #ed1c24;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  border-radius: 0;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-radius: 0;
}
/*
 * Core: Navigation
 * -----------------
 */
.is-sticky .navbar {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.28);
  background-color: #fff;
}
.navbar-toggler {
  border: 1px solid #ed1c24;
  border-radius: 0;
  margin: 1.07rem 0;
}
.navbar-toggler:hover,
.navbar-toggler:focus,
.navbar-toggler:active {
  border: 1px solid #ed1c24;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(237, 28, 36, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.nav-notification {
  padding-right: 0 !important;
}
.nav-notification > .nav-link {
  padding: 0.3rem 0 !important;
  margin-left: 1.5rem;
  margin-top: 1.1rem;
  border: none !important;
}
.nav-notification .fa-bell {
  font-size: 1rem !important;
}
.nav-notification .badge {
  border-radius: 50%;
  position: absolute;
  top: 1rem;
  right: 0.5rem;
  text-align: center;
  padding: 0.2rem 0.3rem 0.2rem 0.3rem;
  font-size: 0.6rem;
}
.nav-notification .badge-custom {
  background-color: #414f63;
  color: #fff;
}
.nav-notification .notification-dropdown {
  min-width: 250px;
  font-weight: 400;
}
.nav-notification .notification-dropdown > .dropdown-menu-header {
  padding: 1rem 1.25rem;
  background-color: #414f63;
  color: #fff;
}
.nav-notification .dropdown-menu-link {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  padding: 0.5rem 1.25rem !important;
  font-size: 0.8rem;
  color: #333;
  text-decoration: none;
  display: block;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.nav-notification .dropdown-menu-link:hover,
.nav-notification .dropdown-menu-link:focus,
.nav-notification .dropdown-menu-link:active {
  background-color: #fff;
  color: #414f63;
}
.nav-notification .dropdown-menu-link > i {
  display: inline !important;
  font-size: 0.8rem !important;
}
#exploreMore {
  -webkit-transform: translatey(0px);
  transform: translatey(0px);
  -webkit-animation: float 2s ease-in-out infinite;
  animation: float 2s ease-in-out infinite;
  position: relative;
  margin-left: 50%;
}
.btn-explore-more {
  position: absolute;
  display: block;
  margin: 0 auto 0 auto;
  width: 50px;
  height: 50px;
  bottom: 5rem;
  transform: translateX(-50%);
}
#secondaryNav {
  background-color: #fff;
  margin-bottom: 0;
  padding: 0;
  border-radius: 0;
  border: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.25s ease-in-out, box-shadow 0.25s;
  transition: background-color 0.25s ease-in-out, box-shadow 0.25s;
  z-index: 999;
}
#secondaryNav a.navbar-brand {
  display: block;
  padding: 0;
  margin: 0.6rem 0;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
}
#secondaryNav a.navbar-brand > img {
  width: 110px;
  height: auto;
}
.secondary-nav-links .nav-item {
  padding: 0 0.5rem;
}
.secondary-nav-links .dropdown-menu {
  margin-top: -0.01rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.secondary-nav-links .nav-link {
  font-weight: 400;
  padding: 1.5rem 0;
  color: #333;
  border-bottom: 3px solid transparent;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-transition: background-color 0.25s ease-in-out, border 0.25s,
    padding-bottom 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out, border 0.25s,
    padding-bottom 0.25s ease-in-out;
}
.secondary-nav-links .dropdown-menu .dropdown-item {
  font-weight: 400;
  padding: 0.5rem 1rem;
  color: #333;
  border-bottom: 3px solid transparent;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-transition: background-color 0.25s ease-in-out, border 0.25s,
    padding-bottom 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out, border 0.25s,
    padding-bottom 0.25s ease-in-out;
}
.secondary-nav-links li a .fas {
  display: block;
  margin: 0 auto 0.2rem;
  font-size: 1.25rem;
}
.secondary-nav-links .open > a,
.secondary-nav-links .open > a:focus,
.secondary-nav-links .open > a:hover,
.secondary-nav-links li a:focus,
.secondary-nav-links li a:hover,
.secondary-nav-links li.active > a,
.secondary-nav-links li.active > a:hover {
  background-color: transparent;
  border-color: #ed1c24;
}
.secondary-nav-links li .dropdown-menu {
  padding: 0;
  border: 0;
  border-radius: 0;
}
.secondary-nav-links li .dropdown-menu a {
  padding: 0.6rem 0.9rem;
}
.secondary-nav-links li .dropdown-menu a,
.secondary-nav-links li .dropdown-menu a:focus,
.secondary-nav-links li .dropdown-menu a:hover,
.secondary-nav-links li .dropdown-menu a.active {
  border-color: transparent;
  border-bottom: 3px solid #ed1c24;
}
.secondary-menu--custom-btn {
  float: right;
  margin-left: 1.8rem;
}
.secondary-menu--custom-btn a {
  margin-top: 1.5rem;
  padding: 0.6rem 0.9rem;
  font-size: 1rem;
  line-height: 1.5;
}
#backToTop {
  position: fixed;
  right: 1.8rem;
  bottom: 1.8rem;
  z-index: 999;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
#backToTop a {
  display: block;
  min-width: 45px;
  padding: 0.3rem 1rem;
  color: #fff;
  background-color: #ed1c24;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
}
body.scrolling #backToTop {
  opacity: 1;
}
/*
 * Core: Reset, VC Components
 * --------------------------
 */
.reset-gutter,
.reset-margin {
  margin-right: 0;
  margin-left: 0;
}
.reset-gutter > [class*="col-"],
.reset-padding {
  padding-right: 0;
  padding-left: 0;
}
.vc-parent {
  width: 100%;
  height: 100%;
  display: table;
}
.row-vc > div,
.vc-child {
  display: table-cell;
  vertical-align: middle;
}
.row-vc > div {
  float: none;
}
/*
 * Core: Section Title
 * -------------------
 */
.section-title h2 {
  position: relative;
  margin-top: -7px;
  margin-bottom: 80px;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
  text-align: center;
}

.section-title h2:before {
  content: " ";
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 100px;
  height: 1.5px;
  background-color: #ed1c24;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.section-title.text-left h2 {
  text-align: left;
}

.section-title.text-left h2:before {
  left: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
/*
 * Core: Banner
 * ------------
 */
#banner {
  position: relative;
  overflow: hidden !important;
}
#banner .ytplayer-container {
  position: absolute;
  top: 0;
  z-index: -2;
}
#banner .btn-custom {
  border: 1.5px solid #fff;
  background-color: transparent;
}
#banner .btn-custom:hover,
#banner .btn-custom:focus,
#banner .btn-custom:active {
  background-color: rgba(255, 255, 255, 0.2);
}
.banner-item {
  padding: 10rem 0;
  color: #fff;
  height: 80vh;
}
.banner-item[data-bg-video]:before {
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}
.banner-item-content img {
  width: 40px;
  height: auto;
  margin-bottom: 1rem;
}
.banner-item-content h1 {
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 3rem;
}
.banner-item-content h1 span {
  display: block;
  font-weight: 800;
}
.banner-item-content h4 {
  display: inline;
}
.banner-item-content h4 span {
  font-size: 1rem;
}
.banner-item-content p {
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.owl-item.active .banner-item-content h1 {
  -webkit-animation: fadeInUp 1s ease-out 0s;
  animation: fadeInUp 1s ease-out 0s;
}
.owl-item.active .banner-item-content a.btn {
  -webkit-animation: fadeInDown 1s ease-out 0s;
  animation: fadeInDown 1s ease-out 0s;
}
.banner-slider .owl-pagination {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  margin-bottom: 23px;
  text-align: center;
}
.banner-slider .owl-page {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 0.5rem;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.5;
  -webkit-transition: width 0.25s ease-in-out,
    background-color 0.25s ease-in-out;
  transition: width 0.25s ease-in-out, background-color 0.25s ease-in-out;
}
.banner-slider .owl-page.active {
  opacity: 1;
}
.banner-slider .owl-next,
.banner-slider .owl-prev {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 44px;
  margin-top: -1.5rem;
  padding: 0.5rem 0;
  color: #414f63;
  background-color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: left 0.25s ease-in-out, right 0.25s ease-in-out,
    opacity 0.25s ease-in-out;
  transition: left 0.25s ease-in-out, right 0.25s ease-in-out,
    opacity 0.25s ease-in-out;
  overflow: hidden;
}
.banner-slider .owl-next {
  left: auto;
  right: 0;
}
.banner-slider:hover .owl-next,
.banner-slider:hover .owl-prev {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.banner-slider:hover .owl-prev {
  left: 0.9rem;
}
.banner-slider:hover .owl-next {
  right: 0.9rem;
}
.banner-item-img {
  position: relative;
  text-align: right;
}
.banner-item-img > img {
  width: 300px;
  height: auto;
}
/*
 * Core: Video
 * -----------
 */
video {
  display: block;
  width: 550px;
  margin-top: 5rem;
  margin-left: -2rem;
}
video#bgvid {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  /*background: url('../img/o365-poster-img.jpg') no-repeat;*/
  background-size: cover;
}
/*
 * Core: Menu
 * ----------
 */
#secondaryMenu {
  margin-bottom: 0;
  padding: 0 !important;
  border-radius: 0;
  border: 0;
  -webkit-transition: background-color 0.25s ease-in-out, box-shadow 0.25s;
  transition: background-color 0.25s ease-in-out, box-shadow 0.25s;
  z-index: 999;
  background-color: #fff;
}
#menu .is-sticky .navbar {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#menu .is-sticky .navbar .navbar-nav > .nav-item > a.nav-link.active {
  color: #fff !important;
  background-color: #ed1c24;
}
#secondaryMenu .navbar-nav {
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  -webkit-transition: box-shadow 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out;
  z-index: 999;
  margin-left: auto;
}
#secondaryMenu .navbar-nav li a {
  color: #333;
  padding: 1.8rem;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 800;
}
#secondaryMenu .navbar-nav > li > a {
  padding: 1.8rem;
  border-bottom: 3px solid transparent;
  font-size: 1rem;
  font-weight: 800;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#secondaryMenu .navbar-nav > li.active > a,
#secondaryMenu .navbar-nav > li.open > a,
#secondaryMenu .navbar-nav > li > a:focus,
#secondaryMenu .navbar-nav > li > a:hover {
  color: #fff;
  background-color: #ed1c24;
}
.get-started-content {
  margin-top: 5rem;
  margin-bottom: 4rem;
}
.get-started-content .nav-tabs {
  border: none;
  background-color: rgba(0, 0, 0, 0.95);
}
.get-started-content .nav-tabs .nav-link {
  border: none;
  padding: 1rem;
  background-color: #292929;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
}
.get-started-content .nav-tabs .nav-item.show .nav-link,
.get-started-content .nav-tabs .nav-link.active {
  background-color: transparent;
  color: #fff;
  border-bottom: none;
}
.get-started-content .nav-tabs .nav-link > small {
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: block;
}
.get-started-content .tab-content {
  background-color: rgba(0, 0, 0, 0.95);
  color: #fff;
  padding: 2rem;
}
.get-started-content .tab-content h4 {
  margin-top: -1rem;
}
.get-started-menu-bar {
  padding: 2rem 0;
  background-color: #202020;
  overflow: hidden;
}
.get-started-menu-bar a {
  display: block;
  width: 250px;
  background-color: transparent;
  border: 1.5px solid #fff !important;
}
.checkbox-container h6 {
  display: inline-block;
  margin-top: -0.5rem;
  margin-left: 3.5rem;
  margin-bottom: 3rem;
}
.checkbox-container h6 > small {
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  margin-right: 0;
  display: block;
  line-height: 1.5;
}
.checkbox-container label {
  display: block;
  user-select: none;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #fff;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  margin-bottom: 0;
}
.checkbox-container label:after {
  content: "";
  display: block;
  margin-left: 11px;
  margin-top: 6px;
  width: 7px;
  height: 14px;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkbox-container label:hover {
  background-color: #fff;
}
.checkbox-container label:active {
  -webkit-transition-duration: 0;
  transition-duration: 0;
  -webkit-filter: brightness(0.8);
}
.checkbox-container input {
  display: none;
}
.checkbox-container input:checked + label {
  color: #fff;
}
.checkbox-container input:checked + .bg-checkbox-dark {
  background: #fff;
}
.checkbox-container input:checked + .bg-checkbox-dark:after {
  content: "";
  display: block;
  margin-left: 11px;
  margin-top: 6px;
  width: 7px;
  height: 14px;
  border: solid #ed1c24;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkbox-container input:checked + label {
  -webkit-animation: boom 0.5s ease;
  animation: boom 0.5s ease;
}
.checkbox-container input:disabled + .bg-checkbox-dark {
  opacity: 0.5;
}
.get-started-bar a {
  display: block;
  width: 150px;
  background-color: transparent;
  border: 1.5px solid #fff !important;
}
/*
 * Core: Features Panel
 * --------------------
 */
.feature--item {
  padding: 1.4rem 0.9rem 1.8rem;
  background-color: #fff;
  border: 1px solid #e9e9e9;
  text-align: center;
}
.feature--icon {
  display: table;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  font-size: 2.25rem;
  line-height: 1.5;
}
.feature--icon .fas {
  display: table-cell;
  vertical-align: middle;
}
.feature--content h1 {
  font-size: 2.25rem;
  margin: 0.9rem 0 1.8rem 0;
}
.feature--content h4 {
  font-weight: 700;
  margin: 0.9rem 0;
}
.feature--content p {
  margin-bottom: 0;
}
.feature--content a.btn {
  margin-top: 1.25rem;
  padding: 0.6rem 0.9rem 0.5rem;
  font-size: 0.75rem;
}
.features-tab--nav {
  margin-bottom: 3.75rem;
}
.features-tab--nav ul {
  margin: -0.6rem -0.125rem 0;
  padding: 0;
  list-style: none;
  font-size: 0;
  line-height: 1.5;
}
.features-tab--nav ul li {
  margin: 0.6rem 0.125rem 0;
}
.features-tab--nav ul li a {
  display: block;
  text-align: left;
}
.features-tab--nav ul li.active a {
  background-color: #ed1c24;
}
.features-tab--item {
  padding: 1.8rem;
  background-color: #fff;
  border: 1px solid #e9e9e9;
}
.features-tab--content a {
  color: #303030;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}
.features-tab--content a:hover {
  color: #ed1c24;
}
.features-tab--content h3 {
  margin: 0 0 1.5rem;
  font-size: 2.25rem;
  line-height: 1.5;
}
.features-tab--content p {
  margin-bottom: 1.5rem;
}
.features-tab--content p:last-child {
  margin-bottom: 0;
}
.features-tab--content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.features-tab--content ul:after,
.features-tab--content ul:before {
  content: " ";
  display: table;
  clear: both;
}
.features-tab--content ul li {
  float: left;
  width: 50%;
}
.features-tab--content ul li .fas {
  margin-right: 0.5rem;
  color: #ed1c24;
}
/*
 * Core: Info Banner
 * -----------------
 */
#info-banner {
  padding: 8rem 0 8rem;
}
#info-banner .mb-8 {
  margin-bottom: 8rem;
}
.info-banner-img img {
  width: 300px;
}
/*
 * Core: Office Plans
 * ------------------
 */
#office-plans {
  padding: 5rem 0 1.8rem;
}
#office-plans .feature--item {
  margin-top: 1.8rem;
  background-color: transparent;
  border: none;
}
#office-plans .feature--content > div {
  display: inline-block;
  margin: 0 auto;
}
#office-plans .feature--content p {
  text-align: left;
  margin-bottom: 1.25rem;
}
#office-plans .feature--content .fas {
  margin-right: 0.5rem;
  color: #ed1c24;
}
#pricing {
  padding: 5rem 0;
}
#office-plans .pricing--wrapper {
  padding: 2.8rem 1rem 1rem 1rem;
}
#office-plans .pricing--item {
  padding: 1.25rem;
  background-color: #f0f0f0;
  border-right: 1px solid #e9e9e9;
  -webkit-transition: box-shadow 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out;
  text-align: center;
  z-index: 0;
}
#office-plans .pricing--item.popular,
#office-plans .pricing--item:hover {
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14),
    0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
#office-plans .pricing--item:hover {
  z-index: 2;
}
#office-plans .pricing--item:last-child {
  border-right: none;
}
#office-plans .pricing--item.popular {
  margin-top: -2.8rem;
  color: #fff;
  background-color: #333;
  border-color: #333;
}
#office-plans .pricing--item {
  background-color: #fff;
}
#office-plans .pricing--item.popular {
  background-color: #333;
}
#office-plans .pricing--popular-tag {
  display: block;
  margin-bottom: 2rem;
  color: #333;
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
}
#office-plans .pricing--header {
  margin-top: 1rem;
}
#office-plans .pricing--header--tag {
  border: 1.5px solid #333;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: 0 1rem;
}
#office-plans .pricing--item.popular .pricing--header--tag {
  border: 1.5px solid #fff !important;
}
#office-plans .pricing--body {
  margin-top: 2rem;
}
#office-plans .gradient-hr {
  background-image: linear-gradient(90deg, #333, transparent) !important;
  border: 0;
  height: 0.8px;
}
#office-plans .pricing--item.popular .gradient-hr {
  background-image: linear-gradient(90deg, #fff, transparent) !important;
}
#office-plans .normal-hr {
  background-color: #333;
  border: 0;
  height: 0.8px;
}
#office-plans .pricing--item.popular .normal-hr {
  background-color: #fff;
}
#office-plans .main-office-img-container > img {
  width: 40px;
  height: 40px;
  margin: 0.2rem 0.1rem 0.2rem 0.1rem;
}
#office-plans .pricing-container .price--tag {
  margin-bottom: 0;
  text-align: right;
}
#office-plans .pricing-container .old--price-tag {
  font-size: 0.8rem;
  margin-bottom: 0;
  text-align: right;
}
#office-plans .pricing-container .old--price-tag > span {
  text-decoration: line-through;
}
#office-plans .pricing-container .month--tag {
  margin-bottom: 0;
  text-align: right;
  line-height: 1.2;
}
#office-plans .inclusive-container .office-icon-img-container {
  text-align: left;
}
#office-plans .inclusive-container .office-icon-img-container > img {
  width: 30px;
  height: 30px;
}
#office-plans .inclusive-container .office-icon-img-container > span {
  font-size: 0.8rem;
}
#office-plans .inclusive-container .pc-hr {
  background-color: #333;
  margin-bottom: 0;
  height: 0.8px;
  border: none;
}
#office-plans .pricing--item.popular .inclusive-container .pc-hr {
  background-color: #fff;
}
#office-plans .inclusive-container .pc-version {
  font-size: 0.8rem;
  text-align: right;
  margin-top: 0.3rem;
}
#office-plans .inclusive-container .web-hr {
  background-color: #333;
  border: none;
  height: 0.8px;
  position: relative;
  top: -2rem;
  margin-left: 0;
}
#office-plans .pricing--item.popular .inclusive-container .web-hr {
  background-color: #fff;
}
#web-bp-hr,
#web-oe-hr {
  width: 160px;
}
#web-be-hr {
  width: 200px;
}
#office-plans .inclusive-container .web-version {
  font-size: 0.8rem;
  margin-top: 0.3rem;
  position: relative;
  top: -2.7rem;
  text-align: left;
}
#office-plans .tenure-container {
  margin-top: -1rem;
  margin-bottom: 1.5rem;
}
#office-plans .pricing--item.popular .tenure-container {
  margin-bottom: auto !important;
}
#office-plans .tenure-container img {
  width: 40px;
}
#office-plans .tenure-container p {
  font-size: 0.8rem;
}
#office-plans .tenure-container .img-title {
  margin-bottom: 0;
}
#office-plans .tenure-container .img-subtitle {
  text-align: left;
}
#office-plans .tenure-container .img-subtitle > span {
  display: block;
  font-size: 0.7rem;
}
#office-plans .tenure-container .img-block {
  border: 1px solid #333;
  padding: 0.3rem;
  text-align: center;
  font-size: 0.7rem;
}
#office-plans .pricing--item.popular .tenure-container .img-block {
  border: 1px solid #fff;
}
#office-plans .pricing--footer {
  margin-top: 1rem;
  margin-bottom: 0.8rem;
}
#office-plans .pricing--footer button {
  display: block;
}
#office-plans .pricing--footer button > small {
  display: block;
}
#office-plans .pricing--footer button > p > span {
  display: block;
}
.pricing--item {
  padding: 1rem 1rem 1rem;
}
.pricing--content {
  background-color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14);
  text-align: center;
}
.pt-head {
  position: relative;
  padding: 1.25rem 0;
  color: #ed1c24;
  border-radius: 50%;
  text-align: center;
  z-index: 0;
}
.pt-head:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 217px;
  margin: 0 auto;
  border-radius: 50%;
  z-index: -1;
}
.pt-head-empty {
  background-color: transparent;
}
.pt-head .caption {
  display: inline-block;
  margin-bottom: 0;
  padding: 0.9rem 0 0.4rem;
  border-bottom: 3px solid #ed1c24;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  color: #000;
}
.pt-price-tag {
  margin-top: 0.3rem;
  font-size: 3rem;
  line-height: 1.5;
  font-weight: 700;
}
.pt-price-tag span {
  font-size: 1.5rem;
  font-weight: 500;
}
.pt-price-tag-caption {
  font-size: initial;
  font-weight: 500;
}
.pt-plan {
  padding: 1.25rem;
  font-size: 1.5rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.pt-plan p {
  font-size: initial;
  font-weight: normal;
  padding: 0.6rem 1.25rem;
}
.pt-plan-content {
  height: 170px;
}
.pt-plan-banner {
  padding: 1.25rem 0;
  font-size: 1.125rem;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  color: #fff;
  background-color: #414f63;
}
.pt-no-banner {
  margin-top: 4rem;
}
.pt-features,
.pt-footer,
.pt-plan {
  text-align: center;
}
.pt-features ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.pt-features ul li {
  color: #737373;
  padding: 1.8rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  min-height: 180px;
  font-weight: 700;
}
.pt-features ul .icon--list {
  min-width: 100px;
  width: 100%;
  padding: 1.8rem;
}
.pt-features ul .icon--list small {
  font-weight: 700 !important;
}
.pt-features ul li i {
  display: block;
  text-align: center;
  margin-top: 1.25rem;
  min-width: 120px;
}
.pt-features ul li .fa-check {
  color: #ed1c24;
}
.pt-features ul li .fa-times {
  color: #414f63;
}
.pt-features ul li p {
  margin-top: 1rem;
  line-height: 1;
  text-align: center;
}
.pt-features-content {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 1.8rem;
  min-height: 380px;
}
.pt-features-content p {
  padding: 0.5rem 1.8rem;
  margin-bottom: 0;
  text-align: left;
  font-weight: normal;
}
.pt-features-content p span {
  font-weight: 700;
}
.pt-features-img {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.9rem 1.8rem;
  min-height: 180px;
}
.pt-features-img img {
  width: 50px;
  height: 50px;
  display: block;
}
.pt-footer {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
/*
 * Core: Features
 * --------------
 */
#features {
  padding: 5rem 0 1.8rem;
}
#features .section-title h2 {
  margin-bottom: 0;
}
#features .single-feature {
  padding: 5rem 0;
  overflow: hidden;
}
.single-feature-content {
  margin: 0 auto;
  padding: 1.8rem 3rem;
}
.single-feature-content h2 {
  margin: 0 0 1rem;
  font-size: 36px;
  line-height: 1.5;
  font-weight: 700;
  word-wrap: break-word;
}
.single-feature-content h2 span {
  display: block;
  line-height: 1.5;
  font-weight: 500;
  text-indent: 1px;
}
.single-feature-content p {
  margin-bottom: 1rem;
}
.single-feature-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.single-feature-content ul li {
  margin-bottom: 0.6rem;
}
.single-feature-content ul li .fas {
  margin-right: 0.5rem;
  color: #ed1c24;
}
.single-feature-img img {
  padding: 1.8rem 3rem;
}
.single-feature-content ul:after,
.single-feature-content ul:before {
  content: " ";
  display: table;
  clear: both;
}
/*
 * Core: Compare Plans
 * -------------------
 */
.pricing-table-item .pt-features li strong {
  display: none;
}
.pricing-table {
  padding: 5rem 0;
}
.pricing-table .pricing-table-item:first-child {
  font-weight: 800;
}
.pricing-table .pricing--content {
  border-top: 1px solid #e9e9e9;
}
.pricing-table .pt-footer a.btn-custom {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
/*
 * Core: FAQ
 * ---------
 */
#faq {
  padding: 5rem 0;
}
.accordion .panel-heading a {
  color: #333;
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.faq-content .panel-group {
  margin-bottom: 0;
}
.card-group .panel {
  margin-bottom: -0.3rem;
}
.panel-body {
  padding: 1.8rem 1.25rem 1.25rem 1.25rem;
}
.panel-title {
  line-height: 1.5;
}
.accordion .panel {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.accordion .panel-heading {
  padding: 0;
  border: 0;
}
.accordion .panel-heading a {
  display: block;
  padding: 1.8rem 1.25rem;
  -webkit-transition: all ease-in-out;
  transition: all ease-in-out 0.25s;
}
.accordion .panel-heading a:hover,
.accordion .panel-heading a:focus,
.accordion .panel-heading a:active {
  background-color: #f0f5f6;
}
.accordion .panel-heading a.collapsed {
  background-color: #fff;
}
.accordion .panel-heading a.collapsed:hover,
.accordion .panel-heading a.collapsed:focus,
.accordion .panel-heading a.collapsed:active {
  background-color: #f0f5f6;
}
.accordion .panel-heading a h5 {
  font-weight: 500;
  overflow: hidden;
}
.accordion .panel-collapse {
  border: none;
}
/*
 * Core: Guided Tour
 * -----------------
 */
.guided-title {
  margin-top: 3rem;
}
.guided-container {
  margin-top: 1rem;
}
.guided-container .sub-container img {
  width: 80px;
  height: auto;
}
.guided-container .sub-container h5 {
  margin-bottom: 1rem;
}
.guided-container .sub-container a {
  color: #6c757d;
}
.guided-container .sub-container a:hover,
.guided-container .sub-container a:focus,
.guided-container .sub-container a:active {
  text-decoration: underline;
}
.guided-container .form-control {
  border: 1px solid #e9e9e9;
}
.guided-container .form-control:focus {
  border: 1px solid #e9e9e9;
}
.main-office-icon {
  display: block;
  margin: 2.5rem auto;
}
.office-icon-container {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.office-icon {
  width: 40px;
  height: auto;
}
.recommendation-card {
  margin-top: 3rem;
}
.recommendation-card .card {
  border: none;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14);
}
.recommendation-card .card-header {
  text-align: center;
  background-color: #333;
  color: #fff;
  border-radius: 0;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.recommendation-card .card-row {
  border-bottom: 1px solid #e9e9e9;
  cursor: pointer;
  height: 250px;
}
.recommendation-card .card-row a {
  color: #333;
  position: absolute;
  top: 5rem;
  right: 1rem;
  z-index: 1;
}
#overlay-one,
#overlay-two,
#overlay-three {
  background-color: rgba(0, 0, 0, 0.65);
  color: #fff;
  position: absolute;
  z-index: 100;
  width: 100%;
  text-align: center;
  display: none;
  padding: 0 1.25rem;
  height: 250px;
  cursor: pointer;
}
#overlay-one-title,
#overlay-two-title,
#overlay-three-title {
  margin-top: 6rem;
  margin-bottom: 1rem;
}
#overlay-one .btn-custom-white-outline,
#overlay-two .btn-custom-white-outline,
#overlay-three .btn-custom-white-outline {
  opacity: 0;
}
#card-close-one {
  display: none;
}
#card-close-two {
  top: 20.7rem;
  display: none;
}
#card-close-three {
  top: 36.5rem;
  display: none;
}
.recommendation-card .card-row-title {
  margin-top: 4.5rem;
}
.recommendation-card .card-row h6 > span {
  font-size: 0.9rem;
}
.recommendation-card .card-footer {
  border-radius: 0;
  background-color: #333;
  color: #fff;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-top: none;
}
.recommendation-card .card-footer .btn-next {
  padding-right: 2rem;
  padding-left: 2rem;
  margin-top: 1rem;
  border-width: 1.5px;
}
.recommendation-card .card-footer .btn-next > small {
  display: block;
}
/*
 * Core: Package Selection
 * -----------------------
 */
.package-title {
  margin-top: 3rem;
  text-align: center;
}
.package--plan--contents {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
#package .pricing--wrapper {
  padding: 2.8rem 1rem 1rem 1rem;
}
#package .pricing--item {
  padding: 1.25rem;
  background-color: #f0f0f0;
  border-right: 1px solid #e9e9e9;
  -webkit-transition: box-shadow 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out;
  text-align: center;
  z-index: 0;
}
#package .pricing--item.popular,
#package .pricing--item:hover {
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14),
    0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
#package .pricing--item:hover {
  z-index: 2;
}
#package .pricing--item:last-child {
  border-right: none;
}
#package .pricing--item.popular {
  margin-top: -2.8rem;
  color: #fff;
  background-color: #333;
  border-color: #333;
}
#package .pricing--item {
  background-color: #fff;
}
#package .pricing--item.popular {
  background-color: #333;
}
#package .pricing--popular-tag {
  display: block;
  margin-bottom: 2rem;
  color: #333;
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
}
#package .pricing--header {
  margin-top: 1rem;
}
#package .pricing--header--tag {
  border: 1.5px solid #333;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: 0 1rem;
}
#package .pricing--item.popular .pricing--header--tag {
  border: 1.5px solid #fff !important;
}
#package .pricing--body {
  margin-top: 2rem;
}
#package .gradient-hr {
  background-image: linear-gradient(90deg, #333, transparent) !important;
  border: 0;
  height: 0.8px;
}
#package .pricing--item.popular .gradient-hr {
  background-image: linear-gradient(90deg, #fff, transparent) !important;
}
#package .normal-hr {
  background-color: #333;
  border: 0;
  height: 0.8px;
}
#package .pricing--item.popular .normal-hr {
  background-color: #fff;
}
#package .main-office-img-container > img {
  width: 40px;
  height: 40px;
  margin: 0.2rem 0.1rem 0.2rem 0.1rem;
}
#package .pricing-container .price--tag {
  margin-bottom: 0;
  text-align: right;
}
#package .pricing-container .old--price-tag {
  font-size: 0.8rem;
  margin-bottom: 0;
  text-align: right;
}
#package .pricing-container .old--price-tag > span {
  text-decoration: line-through;
}
#package .pricing-container .month--tag {
  margin-bottom: 0;
  text-align: right;
  line-height: 1.2;
}
#package .inclusive-container .office-icon-img-container {
  text-align: left;
}
#package .inclusive-container .office-icon-img-container > img {
  width: 30px;
  height: 30px;
}
#package .inclusive-container .office-icon-img-container > span {
  font-size: 0.8rem;
}
#package .inclusive-container .pc-hr {
  background-color: #333;
  margin-bottom: 0;
  height: 0.8px;
  border: none;
}
#package .pricing--item.popular .inclusive-container .pc-hr {
  background-color: #fff;
}
#package .inclusive-container .pc-version {
  font-size: 0.8rem;
  text-align: right;
  margin-top: 0.3rem;
}
#package .inclusive-container .web-hr {
  background-color: #333;
  border: none;
  height: 0.8px;
  position: relative;
  top: -2rem;
  margin-left: 0;
}
#package .pricing--item.popular .inclusive-container .web-hr {
  background-color: #fff;
}
#web-bp-hr,
#web-oe-hr {
  width: 160px;
}
#web-be-hr {
  width: 200px;
}
#package .inclusive-container .web-version {
  font-size: 0.8rem;
  margin-top: 0.3rem;
  position: relative;
  top: -2.7rem;
  text-align: left;
}
#package .tenure-container {
  margin-top: -1rem;
  margin-bottom: 1.5rem;
}
#package .pricing--item.popular .tenure-container {
  margin-bottom: auto !important;
}
#package .tenure-container img {
  width: 40px;
}
#package .tenure-container p {
  font-size: 0.8rem;
}
#package .tenure-container .img-title {
  margin-bottom: 0;
}
#package .tenure-container .img-subtitle {
  text-align: left;
}
#package .tenure-container .img-subtitle > span {
  display: block;
  font-size: 0.7rem;
}
#package .tenure-container .img-block {
  border: 1px solid #333;
  padding: 0.3rem;
  text-align: center;
  font-size: 0.7rem;
}
#package .pricing--item.popular .tenure-container .img-block {
  border: 1px solid #fff;
}
#package .pricing--footer {
  margin-top: 1rem;
  margin-bottom: 0.8rem;
}
#package .pricing--footer button {
  display: block;
}
#package .pricing--footer button > small {
  display: block;
}
#package .pricing--footer button > p > span {
  display: block;
}
/*
 * Core: Shopping Cart
 * -------------------
 */
.wizard {
  display: block;
  width: 100%;
  overflow: hidden;
}
.wizard a {
  outline: 0;
}
.wizard ul {
  list-style: none !important;
  padding: 0;
  margin-bottom: 3rem;
}
.wizard ul > li {
  display: block;
}
/* Accessibility */
.wizard > .steps .current-info {
  position: absolute;
  left: -999em;
}
.wizard > .content > .title {
  position: absolute;
  left: -999rem;
}
.wizard > .steps {
  position: relative;
  display: block;
  width: 100%;
}
.wizard.vertical > .steps {
  display: inline;
  float: left;
  width: 30%;
}
.wizard > .steps .number {
  font-size: 1.429rem;
}
.wizard > .steps > ul > li {
  width: 25%;
}
.wizard > .steps > ul > li,
.wizard > .actions > ul > li {
  float: left;
}
.wizard.vertical > .steps > ul > li {
  float: none;
  width: 100%;
}
.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active {
  border: 3px solid #414f63;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  display: block;
  text-align: center;
  color: #333 !important;
  font-size: 1rem;
  background-color: #fff;
  margin: 1rem auto;
  z-index: 2;
  position: relative;
}
.wizard > .steps a > span {
  width: 200px;
  margin-top: 3rem;
  margin-left: -4.9rem;
  display: block;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active {
  background: #d8e1e6;
  border-color: #aab5c8;
  cursor: default;
}
.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active {
  background: #acb7bf;
  color: #fff;
  cursor: default;
}
.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active {
  background: #414f63;
  color: #fff;
}
.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active {
  background: #721c24;
  border-color: #721c24;
  color: #fff;
}
.wizard > .content {
  display: block;
  overflow: hidden;
  position: relative;
  width: auto;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  min-height: 100px;
}
.wizard.vertical > .content {
  display: inline;
  float: left;
  margin: 0 2.5% 0.5rem 2.5%;
  width: 65%;
}
.wizard > .content > .body {
  float: left;
  position: relative;
  width: 100%;
  height: auto;
}
.wizard > .content > .body ul {
  list-style: none;
}
.wizard > .content > .body ul > li {
  display: list-item;
}
.wizard > .content > .body > iframe {
  border: 0 none;
  width: 100%;
  height: 100%;
}
.wizard > .content > .body input {
  border: 1px solid #e9e9e9;
}
.wizard > .content > .body input[type="checkbox"] {
  display: inline-block;
}
.wizard > .content > .body input.error {
  background: rgb(251, 227, 228);
  border: 1px solid #f8d7da;
  color: #721c24;
}
.wizard > .content > .body label {
  display: inline-block;
  margin-bottom: 0.5rem;
}
.wizard > .content > .body label.error {
  color: #721c24;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 400;
}
.wizard > .actions {
  position: relative;
  display: block;
  text-align: right;
  width: 100%;
  margin-top: 1rem;
}
.wizard.vertical > .actions {
  display: inline;
  float: right;
  margin: 0 2.5%;
  width: 95%;
}
.wizard > .actions > ul {
  display: inline-block;
  text-align: right;
}
.wizard > .actions > ul > li {
  margin: 0 0.5rem;
}
.wizard.vertical > .actions > ul > li {
  margin: 0 0 0 1rem;
}
.wizard > .actions a {
  background: #414f63;
  color: #fff;
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.wizard > .actions .disabled a {
  background: #d8e1e6;
  border-color: #aab5c8;
  color: #aab5c8;
}
.wizard .steps ul {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.wizard .steps ul li {
  -webkit-box-flex: 200;
  -webkit-flex-grow: 200;
  -moz-box-flex: 200;
  -ms-flex-positive: 200;
  flex-grow: 200;
  margin-bottom: 0.6rem;
  float: none;
  width: auto;
  position: relative;
}
.wizard .steps ul li a .number {
  display: none;
}
.wizard .steps ul li:before,
.wizard .steps ul li:after {
  position: absolute;
  content: "";
  display: block;
  width: 50%;
  height: 3px;
  top: 2.25rem;
  right: 0;
  background: #414f63;
  z-index: 1;
}
.wizard .steps ul li.error:before,
.wizard .steps ul li.error:after {
  background: #721c24;
}
.wizard .steps ul li:after {
  right: auto;
  left: 0;
}
.wizard .steps ul li:first-child:after {
  display: none;
}
.wizard .steps ul li:last-child:before {
  display: none;
}
.wizard .steps ul li.disabled:before,
.wizard .steps ul li.disabled:after {
  background: #aab5c8;
}
.wizard .steps ul li.disabled .wizard--steps--icon,
.wizard .steps ul li.disabled .number {
  border-color: #aab5c8;
  background: #aab5c8;
  color: #fff;
}
.wizard .steps ul li.disabled a {
  color: #aab5c8 !important;
}
.wizard .actions {
  text-align: center;
}
.wizard .actions li {
  margin-left: 0 !important;
}
.wizard .actions li a {
  border-radius: 0;
  min-width: 150px;
  text-align: center;
  font-weight: 700;
}
.wizard .actions li a:hover,
.wizard .actions li a:active {
  border-radius: 0;
}
.wizard .actions li.disabled a {
  background-color: #acb7bf !important;
  color: #ffffff !important;
  cursor: not-allowed;
  opacity: 0.65;
  font-weight: 700;
}
.wizard__numbers .number {
  padding-left: 3px;
}
.wizard__numbers .steps ul li a .number {
  display: inline-block !important;
}
.wizard .content > .body input {
  border-color: #e9e9e9;
}
.wizard .content > .body input:focus {
}
#cart .select-options,
#domain-cart .select-options {
  position: unset !important;
}
#cart-steps,
#cart-two-steps {
  margin-top: 3rem;
}
.cart--contents {
  margin-bottom: 2rem;
}
.cart--contents .card {
  border: none;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14);
}
.cart--summary .card .card-header {
  background-color: #fff;
  border-bottom: none;
  padding: 1.25rem;
  font-weight: 700;
}
.cart--summary .card .card-body {
  padding-top: 0;
}
.cart--summary .card .card-body p,
.cart--options .card .card-body p {
  margin-bottom: 0;
  color: #737373;
  font-weight: 400;
  font-size: 0.8rem;
}
.cart--summary > a {
  color: #333;
}
.search--domain--section {
  cursor: pointer;
}
.search--domain--section .line-through {
  text-decoration: line-through;
}
.right--content {
  float: right;
  text-align: right;
  min-width: 130px;
  width: 130px;
}
.left--content {
  float: left;
}
#domain-cart .right--content {
  min-width: 100px;
  width: 100px;
}
.cart--options .card {
  border: none;
  border-top: none;
}
.cart--options .card .card-header {
  border-top: 1px solid #e9e9e9;
  border-bottom: none;
  background-color: #fff;
  padding: 1.25rem;
  cursor: pointer;
}
.cart--options .card .card-header h6 {
  font-weight: 700;
  color: #333;
}
#cart .cart--options .accordion .card-header:after {
  margin-right: -8.17rem;
}
.cart--options .accordion .card-header:after {
  font-family: "Font Awesome\ 5 Free";
  content: "\f106";
  font-weight: 900;
  float: right;
  margin-right: -6.3rem;
}
.cart--options .accordion .collapsed:after {
  /* symbol for "collapsed" panels */
  content: "\f107";
  font-weight: 900;
}
.cart--options .card .card-footer {
  font-size: 0.8rem;
  background-color: #fff;
  color: #737373;
  font-weight: 400;
  border-color: #e9e9e9;
}
.cart--options hr {
  margin-top: 3rem;
}
#domain-cart .cart--options hr:last-child {
  margin-top: 2rem;
  margin-bottom: 0;
  border: none;
}
.whois-text {
  color: #74b3b3;
}
.price-caption {
  text-decoration: line-through;
  margin-top: -0.5rem;
  margin-bottom: 0;
}
.discount-caption {
  color: #ed1c24 !important;
  font-size: 0.8rem;
}
.main-caption {
  color: #737373;
  font-weight: 400;
  font-size: 0.8rem;
  margin-bottom: 0;
}
.edit-caption {
  font-size: 0.8rem;
  position: relative;
  top: -0.1rem;
  margin-right: 1rem;
}
.term-caption {
  color: #ed1c24 !important;
  font-size: 0.8rem;
  font-weight: 700 !important;
}
#domain-cart .text-light {
  color: rgb(115, 115, 115, 0.8) !important;
  display: block;
  margin-left: 2.25rem;
}
.contact-link {
  color: rgb(115, 115, 115, 0.8) !important;
  text-decoration: underline !important;
}
.underline-link {
  color: #74b3b3 !important;
  text-decoration: underline !important;
}
.contact-link:hover,
.underline-link:hover {
  opacity: 0.8;
}
.domain-listing {
  color: #74b3b3 !important;
}
.cart--options .card-select .left--content {
  margin-bottom: 1.5rem;
}
.cart--options input {
  display: block;
  padding: 0.5rem;
  position: relative;
  border: 1px solid #e9e9e9;
  width: 90px;
}
.cart--options input:focus {
  border: 1px solid #e9e9e9;
  outline: none;
}
.cart--options input[type="number"] {
  margin-top: 1rem;
}
.cart--options input[type="number"]::-webkit-inner-spin-button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 0.5rem;
  opacity: 1;
  cursor: pointer;
}
.cart--options .card .card-body .card-radio {
  height: 40px;
  margin: 1rem 0;
}
.cart--options .card .card-body .card-radio h6 {
  margin-top: 0.5rem;
}
#cart .radio,
#domain-cart .radio {
  display: block;
  margin-bottom: 1rem;
  font-weight: 400;
  color: #737373;
}
#cart .radio .inner,
#domain-cart .radio .inner {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0.5;
}
#cart .radio input,
#domain-cart .radio input {
  height: 5px;
  width: 5px;
  opacity: 0;
}
#cart .radio input:checked + .outer .inner,
#domain-cart .radio input:checked + .outer .inner {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
#cart .radio input:checked + .outer,
#domain-cart .radio input:checked + .outer {
  border: 2px solid #ed1c24;
}
#cart .radio input:focus + .outer .inner,
#domain-cart .radio input:focus + .outer .inner {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  background-color: #ed1c24;
}
#cart .radio .outer,
#domain-cart .radio .outer {
  height: 20px;
  width: 20px;
  display: block;
  cursor: pointer;
  float: left;
  border: 2px solid #737373;
  border-radius: 50%;
  background-color: #fff;
  margin-top: 0.15rem;
  margin-right: 1rem;
}
#cart .radio .inner,
#domain-cart .radio .inner {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  height: 10.5px;
  width: 10.5px;
  margin: 0.18rem;
  -webkit-transform: scale(0);
  transform: scale(0);
  display: block;
  border-radius: 50%;
  background-color: #ed1c24;
  opacity: 0;
}
.upselling--contents {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.upselling--contents h4 {
  margin-bottom: 1rem;
}
.upselling--contents .card {
  border: none;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14);
}
.upselling--contents .right--content {
  min-width: auto;
  width: auto;
}
.upselling--contents .right--content .price-caption {
  color: #737373;
  font-weight: 400;
  margin-bottom: 1rem;
}
.upselling--contents ul {
  margin-bottom: 0;
  list-style: disc !important;
}
.upselling--contents ul li {
  font-size: 0.8rem;
  color: #737373;
  font-weight: 400;
}
.upselling--img {
  width: 100px;
  height: auto;
  margin-right: 2rem;
}
.order--contents,
.complete--order--contents {
  margin-bottom: 2rem;
}
.order--contents .card,
.complete--order--contents .card,
.payment--contents .card {
  border: none;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14);
}
.order--contents .card .card-header,
.payment--contents .card .card-header {
  background-color: #fff;
  border-bottom: none;
  padding: 1.25rem;
}
.payment--contents .btn-pay {
  margin-left: 1.3rem;
  margin-right: 1.3rem;
}
.payment--contents .hvr-nuka:hover {
  color: #414f63;
}
.payment--contents .hvr-nuka::before,
.payment--contents .hvr-nuka::after {
  background: #414f63;
}
.payment--contents .hvr-nuka:hover::before {
  background: #414f63;
}
.payment--contents .hvr-nuka:hover::after {
  background-color: #f0f5f6;
}
.order--contents .right--content {
  min-width: auto;
  width: auto;
}
.order--contents .left--content {
  float: none;
}
.order--contents hr {
  margin-top: 3rem;
}
.order--contents .btn-custom-secondary-outline {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
}
.order--section {
  height: auto;
  font-size: 0.8rem;
  margin-bottom: 4rem;
}
.order--section p {
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
}
.order--section a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-left: 0.5rem;
}
.order--section a:nth-of-type(1) {
  color: #414f63;
}
.order--section a:nth-of-type(2) {
  color: #ed1c24;
}
.order--section ul li {
  color: #737373;
  font-weight: 400;
}
#empty-cart-modal .modal-body {
  padding: 3rem 1.25rem;
  text-align: center;
}
#empty-cart-modal .modal-body .far {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
#empty-cart-modal .modal-footer div {
  margin: 0 auto;
}
#empty-cart-modal .modal-footer div button {
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}
.promo--section a {
  color: #737373;
  font-weight: 400;
}
.promo--section a:hover {
  text-decoration: underline;
}
.promo--section div {
  width: 400px;
}
.search--domain--section .form-inline .form-control,
.promo--section .form-control {
  background-color: #f7f7f7;
  font-size: 0.8rem;
}
.search--domain--section .form-control:focus {
  background-color: #fff;
}
.promo--section button,
.search--domain--section button {
  padding: 0.38rem 1rem !important;
  font-size: 0.8rem;
}
.subtotal--section {
  margin-top: 1rem;
}
.subtotal--section p {
  font-family: "Montserrat", sans-serif;
}
.total--section .right--content {
  width: 160px;
  min-width: 160px;
}
#domain-cart .total--section .right--content {
  width: 160px;
  min-width: 160px;
}
.promo-value-caption {
  color: #ed1c24;
}
.payment--contents {
  margin-bottom: 2rem;
}
.payment--contents > a {
  display: block;
  margin: 2rem auto 0 auto;
}
.payment--contents .form-group {
  color: #737373;
  font-weight: 400;
}
.payment--contents .label-title {
  font-family: "Montserrat", sans-serif;
  color: #333;
}
.payment--contents .radio {
  margin-bottom: 0 !important;
}
.payment--contents .subtotal--section {
  margin: 0;
  display: block;
  height: 105px;
}
#editProfileForm {
  display: none;
}
#editProfileForm .label-title {
  font-weight: 400;
  margin-top: 0.45rem;
}
#editProfileForm .text-edit {
  position: absolute;
  right: 1.5rem;
  top: 1.8rem;
  color: #74b3b3;
  display: none;
  cursor: pointer;
}
#editProfileForm .form-control {
  padding-bottom: 1.5rem;
}
#editProfileForm .form-control,
#editProfileForm .form-control:focus {
  border: none !important;
  outline: 1px solid #e9e9e9 !important;
}
#editProfileForm .form-control:disabled {
  background-color: #fff;
  cursor: pointer;
  border: none;
  outline: none !important;
}
#editProfileForm .select-options {
  position: static;
}
.card--logo {
  margin-bottom: 1rem;
}
.card--logo img {
  width: 100px;
  height: auto;
  margin-right: 1rem;
}
.complete--order--contents img {
  width: 50px;
  height: auto;
}
.complete--order--contents .credit-card-caption {
  font-family: "Montserrat", sans-serif;
  color: #ed1c24;
  margin-left: 1rem;
}
.complete--order--contents .terms-caption {
  line-height: 1rem !important;
  color: #737373;
}
.complete--order--contents .terms-caption a {
  color: #ed1c24;
  text-decoration: underline;
}
.complete--order--contents .terms-caption a:hover,
.complete--order--contents .terms-caption a:focus,
.complete--order--contents .terms-caption a:active {
  color: rgba(237, 28, 36, 0.8);
}
.user--info {
  width: 500px;
  height: auto;
  margin-bottom: 1rem;
}
.user--info p {
  margin-bottom: 0;
  color: #737373;
  font-weight: 400;
}
.loading {
  background-image: url("../img/gif/loading-spinner.gif");
  background-size: 25px 25px;
  background-position: right 0.3rem center;
  background-repeat: no-repeat;
}
.popover,
.arrow {
  border-color: rgba(0, 0, 0, 0.125) !important;
}
.popover-body {
  width: 200px;
  padding: 0.75rem;
}
.popover-body .popover-content {
  margin-bottom: 1rem;
}
.popover-body > button {
  display: block;
  margin: 0 auto;
  width: 100%;
  white-space: normal;
  font-size: 0.9rem;
}
/*
 * Core: Complete Order
 * --------------------
 */
#complete-order h4 {
  margin-top: 3rem;
}
#complete-order-steps {
  margin-top: 1.5rem;
}
#complete-order .radio {
  cursor: pointer;
  margin-right: 1rem;
  font-weight: 400;
}
#complete-order .radio .inner {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0.5;
}
#complete-order .radio input {
  height: 5px;
  width: 5px;
  opacity: 0;
}
#complete-order .radio input:checked + .outer .inner {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
#complete-order .radio input:checked + .outer {
  border: 2px solid #333;
}
#complete-order .radio input:focus + .outer .inner {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  background-color: #333;
}
#complete-order .radio .outer {
  height: 20px;
  width: 20px;
  display: block;
  float: left;
  border: 2px solid #737373;
  border-radius: 50%;
  background-color: #fff;
  margin-top: 0.15rem;
  margin-right: 0.5rem;
}
#complete-order .radio .inner {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  height: 10.5px;
  width: 10.5px;
  margin: 0.18rem;
  -webkit-transform: scale(0);
  transform: scale(0);
  display: block;
  border-radius: 50%;
  background-color: #333;
  opacity: 0;
}
.create--account--contents {
  margin-bottom: 2rem;
}
.create--account--contents .card {
  border: none;
}
.create--account--contents .exist-link {
  color: #6c757d;
  font-weight: 400;
  font-size: 0.8rem;
}
.create--account--contents .exist-link:hover {
  text-decoration: underline;
}
.create--account--contents .label-title {
  font-family: "Montserrat", sans-serif;
}
#login-modal .modal-body,
#microsoft-login-modal .modal-body,
#transfer-domain-modal .modal-body {
  padding: 3rem 1.25rem 1.25rem 1.25rem;
}
#microsoft-login-modal .modal-body form,
#transfer-domain-modal .modal-body form {
  margin-top: 2rem;
}
#login-modal .modal-body .form-control,
#microsoft-login-modal .modal-body .form-control,
#transfer-domain-modal .modal-body .form-control {
  border: 1px solid #e9e9e9;
}
#transfer-domain-modal a {
  color: #6c757d;
  font-weight: 400;
  font-size: 0.8rem;
}
#transfer-domain-modal a:hover {
  text-decoration: underline;
}
/*
 * Core: Complete Order Sub Wizard
 * -------------------------------
 */
#sub-wizard-one-p-0 {
  display: block !important;
  left: 0 !important;
}
.sub-wizard .steps {
  display: none;
}
.sub-wizard .actions {
  width: 150px;
  margin: 0 auto;
}
.sub-wizard .actions > ul {
  margin-bottom: 0;
}
.sub-wizard .actions > ul > li:nth-of-type(1),
.sub-wizard .actions > ul > li:nth-of-type(2) {
  display: none !important;
}
.sub-wizard .actions > ul > li:nth-of-type(3) {
  display: block !important;
}
.sub-wizard .actions > ul > li > a {
  margin-bottom: 1.5rem;
  background-color: #d0d9de;
  color: #414f63 !important;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.sub-wizard .actions > ul > li > a:hover,
.sub-wizard .actions > ul > li > a:focus,
.sub-wizard .actions > ul > li > a:active {
  background-color: #d4dde2;
}
.sub-wizard--contents {
  min-height: 100px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.sub-wizard--contents .exist-link {
  color: #6c757d;
  font-weight: 400;
  font-size: 0.8rem;
}
.sub-wizard--contents .exist-link:hover {
  text-decoration: underline;
}
.sub-wizard--contents .input-group .form-control {
  border-right: none !important;
}
.sub-wizard--contents .input-group-text {
  border-color: #e9e9e9;
  background-color: #fff;
}
.sub-wizard--contents .btn-check {
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 250px;
}
.sub-wizard--contents .btn-get-domain {
  width: 250px;
  display: none;
}
#check-domain {
  /* display: none; */
}
#check-domain .form-control {
  height: 58px;
  border-right: 1px solid #e9e9e9;
}
#preload-check {
  margin-top: 5rem;
  margin-bottom: 5rem;
  text-align: center;
  display: none;
}
#post-preload-check {
  /* display: none;*/
}
#post-preload-check h6 {
  margin-bottom: 2rem;
}
#post-preload-check button {
  display: block;
  width: 400px;
  margin-top: 1rem;
}
.configure--dns--contents h6 {
  margin-bottom: 2.5rem;
}
.configure--dns--contents .card {
  border: none;
  margin-bottom: 2rem;
}
.configure--dns--contents table {
  margin-top: -1.5rem;
  margin-bottom: 2.5rem;
}
.configure--dns--contents .table-bordered thead td,
.configure--dns--contents .table-bordered thead th {
  border-bottom: 1px solid #fff;
  background-color: #414f63;
  color: #fff;
}
.configure--dns--contents .btn-container a {
  display: block;
  margin: 0 auto;
  width: 150px;
}
.configure--dns--contents .btn-container a {
  background-color: #d0d9de;
  color: #414f63 !important;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.configure--dns--contents .btn-container a:hover,
.configure--dns--contents .btn-container a:focus,
.configure--dns--contents .btn-container a:active {
  background-color: #d4dde2;
}


#verify-dns .verify--dns--contents {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
#dns-complete {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 7rem;
}
#dns-complete i {
  color: #414f63;
  font-size: 3rem;
}
#dns-complete .btn-container {
  margin-top: 3rem;
}
#dns-complete .btn-container a {
  display: block;
  margin: 0.5rem auto 1rem auto;
  width: 250px;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
/*
 * Core: Domain
 * ------------
 */
.domain-app .bg--img {
  height: 65vh;
  background-attachment: fixed;
}
.domain-app .banner-container {
  position: absolute;
  width: 100%;
  z-index: 100;
  top: -22.5rem;
  left: 0;
}
.domain-app .domain-banner-title {
  padding: 1rem;
}
.domain-app .domain-banner-title > h3 {
  text-align: center;
  color: #fff;
}
#domain-search {
  padding: 1rem;
}
#domain-search input::placeholder {
  color: #fff;
  opacity: 0.8 !important;
}
.ds--form-input {
  position: relative;
}
.ds--form-input .text--input {
  padding: 1rem 1.5rem;
  color: #fff !important;
  background-color: transparent;
  border: 1px solid #fff !important;
  -webkit-transition: border-color 0.25s;
  transition: border-color 0.25s;
}
.ds--form-input > a {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0.5rem 1.1rem 0.5rem 0.5rem;
  padding: 0.55rem 4rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #333 !important;
}
.ds--form-input > .hvr-nuka::before,
.ds--form-input > .hvr-nuka::after {
  background: #fff;
}
.ds--form-input > .hvr-nuka:hover::before {
  background: #333;
}
.ds--form-input > .hvr-nuka:hover::after {
  background-color: #fff;
}
.ds--form-input > .hvr-nuka:hover::before,
.ds--form-input > .hvr-nuka:hover::after {
  -webkit-transform: scale3d(1.09, 1, 1);
  transform: scale3d(1.09, 1, 1);
}
#output {
  color: #a2212d !important;
  font-weight: 700;
}
.ext-container {
  background-color: #fff;
  padding: 1rem;
  margin-top: 1rem;
  font-weight: 400;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  cursor: pointer;
}
.ext-container > i {
  font-size: 2rem;
  position: relative;
  margin-top: -1.8rem;
  float: right;
}
.rotate {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.icon-rotate {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.ext-inner-container {
  display: none;
}
.ext-inner-container .tse-scrollable {
  height: 250px; /* Change scrollable area height */
  max-height: 250px;
}
.ext-inner-container .tse-scroll-content {
  width: 100% !important;
}
.ext-inner-container .form-control {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
}
.ext-inner-container .list-inline-item {
  padding: 0.2rem 0.8rem;
  margin-bottom: 0.5rem;
  background-color: #eeeeee;
  color: #737373;
  border-radius: 15px;
  font-size: 0.8rem;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.ext-inner-container .list-inline-item:hover {
  opacity: 0.8;
}
.ext-list .nav .nav-link {
  border-radius: 0;
  font-size: 0.8rem;
  border: 1px solid #333;
  font-family: "Montserrat", sans-serif;
  display: block;
  text-align: center;
  padding: 0.3rem 0;
  margin: 0 0.5rem;
  color: #333;
}
.ext-list .nav-pills .nav-link.active {
  background-color: rgba(0, 0, 0, 0.1);
}
.ext-list .badge-custom {
  background-color: #333;
  color: #fff;
  font-size: 0.6rem;
  margin-left: 0.2rem;
}
#common > div,
#featured > div,
#gtld > div {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
#common > div > span,
#featured > div > span,
#gtld > div > span {
  font-size: 0.8rem;
  border: 1px solid #333;
  padding: 0.3rem 0;
  font-family: "Montserrat", sans-serif;
  width: 100px;
  display: block;
  text-align: center;
}
#domain-tag > mark {
  display: inline-block;
  padding: 0.1rem 0.8rem;
  margin: 1rem 0.5rem 0 0;
  background-color: #fff;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
}
#domain-tag .dismiss {
  background-color: transparent;
  border: none;
  padding: 0 0 0 0.5rem;
  outline: none;
  cursor: pointer;
}
#domain-info-banner {
  padding: 3rem 2rem;
}
#domain-info-banner .owl-carousel .owl-wrapper-outer {
  z-index: 2;
}
.ext-item {
  margin: 1rem;
  height: 130px;
  position: relative;
  z-index: 90;
  background-color: rgba(90, 107, 132, 0.5);
  text-align: center;
}
.ext-item .ext-tag {
  color: #fff;
}
.ext-item .price-caption {
  text-decoration: line-through;
  color: #414f63;
}
.ext-item-overlay .figure {
  position: relative;
  z-index: 2;
  top: 2.7rem;
  border: 1px solid #fff;
  color: #fff;
  opacity: 0;
  padding: 0.5rem 1rem;
  -webkit-transition: all 0.25s ease;
  transition-property: all 0.25s ease;
}
.ext-item-overlay .figure:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.ext-item-overlay {
  position: absolute;
  top: 0;
  height: 130px;
  width: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition-property: all 0.3s ease;
}
.ext-item:hover .figure,
.ext-item:hover .ext-item-overlay {
  opacity: 1;
}
.domain-banner-slider .owl-buttons {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -1.4rem;
  right: -1.4rem;
  margin-top: -1.4rem;
}
.domain-banner-slider .owl-buttons:after,
.domain-banner-slider .owl-buttons:before {
  content: " ";
  display: table;
  clear: both;
}
.domain-banner-slider .owl-next,
.domain-banner-slider .owl-prev {
  display: block;
  color: #333;
  padding: 0.3rem 0;
  font-size: 1.5rem;
  text-align: center;
}
.domain-banner-slider .owl-prev {
  float: left;
}
.domain-banner-slider .owl-next {
  float: right;
}
/*
 * Core: Brand Protection
 * ----------------------
 */
.bp-app .bg--img {
  height: 75vh;
  background-attachment: fixed;
}
.bp-app .banner-container {
  position: absolute;
  width: 100%;
  z-index: 100;
  top: -22rem;
  left: 0;
}
.bp-accordion .card {
  border: none;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  margin-bottom: 0.05rem;
}
.bp-accordion .card-header:after {
  font-family: "Font Awesome\ 5 Free";
  content: "\f106";
  font-weight: 900;
  float: right;
}
.bp-accordion .collapsed:after {
  /* symbol for "collapsed" panels */
  content: "\f107";
  font-weight: 900;
}
.bp-accordion .card-header {
  border-radius: 0;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  background-color: transparent;
  cursor: pointer;
}
.bp-accordion .card-header > h6 {
  float: left;
  margin-bottom: 0;
}
.bp-accordion .card-body {
  font-size: 0.8rem;
  padding-top: 0;
  padding-bottom: 1.75rem;
}
.bp-accordion .card-body input {
  font-size: 0.8rem;
}
.bp-accordion .card-body .form-inline input {
  width: 280px;
}
.bp-accordion .card-body .form-inline button {
  padding: 0.25rem 1rem !important;
  font-size: 0.8rem;
}
.bp-accordion .select {
  color: #333;
  height: 35px;
}
.bp-accordion .select .select-styled:after {
  top: 0.8rem;
}
.bp-accordion .select-styled:active:after,
.bp-accordion .select-styled.active:after {
  top: 0.3rem;
}
.bp-accordion #collapseTwo .btn-custom-white-outline {
  margin: 0 auto;
  padding: 0.38rem 1rem !important;
  width: 150px;
  display: block;
}
.bp-accordion .btn-custom-white-outline:hover {
  border: 1px solid #fff;
}
#bp-info-banner {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
/*
 * Core: Login
 * -----------
 */
.login-card {
  text-align: center;
  margin: 1.5rem auto;
  width: 400px;
}
.login-card .form-control {
  border: 1px solid #e9e9e9 !important;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.login-card .form-group .form-text {
  margin-bottom: 0.5rem;
  color: #ed1c24 !important;
}
.login-card .btn-custom {
  padding: 0.8rem 4rem;
  margin: 1.75rem auto 0 auto !important;
}
.login-card > a > p {
  margin-bottom: 0.5rem;
  color: #ed1c24 !important;
  font-size: 0.8rem;
  font-weight: 400;
}
/*
 * Core: Preloader
 * ---------------
 */
.loading-pulse {
  position: relative;
  width: 6px;
  height: 24px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.2);
  -webkit-animation: pulse 750ms infinite;
  animation: pulse 750ms infinite;
  -webkit-animation-delay: 250ms;
  animation-delay: 250ms;
}
.loading-pulse:before,
.loading-pulse:after {
  content: "";
  position: absolute;
  display: block;
  height: 16px;
  width: 6px;
  background: rgba(0, 0, 0, 0.2);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-animation: pulse 750ms infinite;
  animation: pulse 750ms infinite;
}
.loading-pulse:before {
  left: -0.8rem;
}
.loading-pulse:after {
  left: 0.8rem;
  -webkit-animation-delay: 500ms;
  animation-delay: 500ms;
}
/*
 * Core: Support
 * -------------
 */
#support {
  background-color: #414f63;
  color: #fff;
}
#support h2 {
  padding: 1.8rem;
  margin: 0.6rem;
  text-align: center;
  line-height: 1.5;
}
/*
 * Core: Footer
 * ------------
 */
#footer {
  padding: 5rem 0 0.6rem;
  overflow: hidden;
  background-color: #333;
}
.footer-widget {
  margin-bottom: 2.5rem;
}
.footer-widget h4 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  margin: -0.25rem 0 0;
  position: relative;
  padding-bottom: 0.6rem;
  line-height: 1.5;
}
.footer-widget ul {
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
}
.footer-widget ul li {
  font-size: 0.9rem;
  padding-bottom: 0.25rem;
}
.footer-widget ul li a {
  color: #fff;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
  display: block;
}
.footer-widget a:hover {
  color: #fff;
}
.footer-widget ul li i {
  color: #fff;
}
.footer-widget ul li span {
  color: #fff;
}
.footer--about {
  color: #ccc;
}
.footer--about-content .btn {
  padding: 0.6rem 1.25rem 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
}
.footer--about-content .btn-custom-reverse:focus,
.footer--about-content .btn-custom-reverse:hover {
  color: #333;
  background-color: #fff;
}
.footer--subscribe-widget {
  margin: 1.25rem 0 1.6rem;
}
.footer--subscribe-widget .form-control {
  height: auto;
  margin-bottom: 0.9rem;
  padding: 0.6rem 1rem;
  border-color: #fff;
  border-radius: 0;
  box-shadow: none;
  background-clip: unset;
}
.footer--subscribe-widget .btn {
  width: 300px;
  padding: 0.6rem 1.25rem;
  margin: 0.5rem 1rem 1.25rem 1rem;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}
.footer--subscribe-widget .hvr-nuka::before,
.footer--subscribe-widget .hvr-nuka::after {
  background: #ed1c24;
}
.footer--subscribe-widget .hvr-nuka:hover::before {
  background: #fff;
}
.footer--subscribe-widget .hvr-nuka:hover::after {
  background-color: #333;
}
.footer--subscribe-widget .hvr-nuka:hover::before,
.footer--subscribe-widget .hvr-nuka:hover::after {
  -webkit-transform: scale3d(1.09, 1, 1);
  transform: scale3d(1.09, 1, 1);
}
.footer--social-widget p {
  color: #fff;
  margin-bottom: 0.4rem;
}
.footer--social-widget ul {
  margin: -0.4rem -0.3rem 0;
  padding: 0;
  list-style: none;
  font-size: 0;
  line-height: 1.5;
}
.footer--social-widget ul li {
  display: inline-block;
  padding: 6px 5px 0;
}
.footer--social-widget ul li a {
  display: block;
  width: 35px;
  padding: 0.5rem 0;
  color: #fff;
  -webkit-transition: background-color 0.25s ease-in-out, border-color 0.25s;
  transition: background-color 0.25s ease-in-out, border-color 0.25s;
  text-align: center;
}
.footer--social-widget ul li a:hover {
  background-color: #ed1c24;
  border-color: #ed1c24;
}
#subscribe {
  background-color: #414f63;
  text-align: center;
}
#subscribe .section-title h2 {
  margin-bottom: 23px;
  color: #fff;
}
#subscribe p {
  color: #fff;
  margin-top: 0.6rem;
  font-size: 1.125rem;
}
#copyright {
  padding: 1.25rem 0;
  color: #fff;
  background-color: #000;
  text-align: center;
}
#copyright p,
#subscribe p {
  margin-bottom: 0.3rem;
}
#copyright p.left {
  text-align: left;
  font-size: 0.75rem;
}
#copyright p.right {
  float: right;
  font-weight: 800;
  text-transform: uppercase;
}
#copyright p a {
  display: inline-block;
  color: #ed1c24;
  font-weight: 800;
}
/*
 * Core: Keyframes
 * ---------------
 */
@-webkit-keyframes boom {
  25% {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
  }
}
@keyframes boom {
  25% {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
  }
}
@-webkit-keyframes boom-v2 {
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
@keyframes boom-v2 {
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
@-webkit-keyframes fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes float {
  0% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-20px);
    transform: translatey(-20px);
  }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
}
@-webkit-keyframes float {
  0% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-20px);
    transform: translatey(-20px);
  }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
}
@-webkit-keyframes pulse {
  50% {
    background: #333;
  }
}
@keyframes pulse {
  50% {
    background: #333;
  }
}
