::-webkit-scrollbar {
    width: 0px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    height: 100%;
    width: 100%;
    /*font-family: "Kanit", serif !important;*/
    font-family: "Manrope", serif !important;
}

body {
    width: 100%;
    color: #333D47;
}

* {
    font-family: inherit !important;
}

nav {
    width: 100%;
    height: 70px;
    background-color: #ffffff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.logo {
    margin-right: auto;
    height: 60px;
    cursor: pointer;
}




.content {
    display: flex;
    height: 100%;
    margin-top: 70px;
}

.left {
    width: 60%;
    padding: 20px;
    overflow: hidden;
    background-color: #e6e8eb;
}

.right {
    width: 40%;
    padding: 20px;
    overflow: hidden;
    background-color: #e6e8eb;
}











.card {
    width: 90%;
    max-width: 700px;
    min-width: 510px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding-top: 40px;
    margin-top: 76px;
    padding-left: 40px;
    padding-right: 40px;
}
.cta-font {
    font-size: 80px;
    font-weight: bold;
    line-height: 1.2;
}
.cta-alt {
    color: #5290FF;
}



.search-container {
    margin-top: 60px;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    width: 100%;
    border: 2px solid #BDC3C7;
    border-radius: 10px;
    overflow: hidden;
    padding-right: 5px;
}

.search-icon {
    font-size: 20px;
    padding: 10px;
    color: #BDC3C7;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 10px;
    border: none;
    font-size: 18px;
    outline: none;
    font-weight: 600;
}

.search-button {
    background-color: #2A75F3;
    color: white;
    padding: 10px 20px;
    padding-right: 10px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    border-radius: 10px;
}
.search-button > svg{
    margin-left: 10px;
}
.search-button:hover {
    background-color: #2669dd;
    transform: scale(1.03);
}
.search-button:active {
    transform: scale(1);
}













.header-container {
    margin-top: -20px;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-bottom: 40px;
}
.featured-domains-heading {
    transform: translateY(100%);
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .domain_card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .card-header {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #0073e6;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .card-content {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .featured-cta {
    cursor: pointer;
    margin-top: 10px;
  }
  .featured-cta:hover {
    text-decoration: underline;
  }
  .featured-cta:active {
    text-decoration: none;
  }

  .card-content span {
    font-weight: bold;
  }

  .card-footer {
    margin-top: auto;
    font-size: 14px;
    text-align: right;
    color: #666;
  }

  @media (max-width: 768px) {
    .card {
      padding: 15px;
    }
  }
  @media (max-width: 480px) {
    h1 {
      font-size: 20px;
    }
    .card-header {
      font-size: 16px;
    }
    .card-content {
      font-size: 12px;
    }
  }







.search-functions {
    width: 100%;
    border: 1px solid white; /* somehow this affects formatting, who knows why */
}
.searchpage-bar {
    max-width: 1000px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    margin-top: 100px;
}



.result-price {
    font-weight: normal;
    text-align: right;
    margin-right: 10px;
}
.price-info {
    width: 18px;
    margin-top: auto;
    margin-bottom: auto;
}
.price-info-txt {
    color: #5f6368;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 5px;
}
.price-container {
    height: 40px;
    margin-left: auto;
    margin-right: 40px;
}
.price-info-container {
    transform: translateX(-10px);
    display: flex;
}


.results-list {
    margin-top: 40px;
    width: 100%;
}
.individual-result {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 1100px;
    display: flex;
    padding-top: 25px;
    padding-bottom: 25px;
    /*background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
}

.result-name {
    margin-left: 20px;
}
.result-enquire {
    margin-right: 30px;
    background-color: #2A75F3;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    border-radius: 10px;
}
.result-enquire:hover {
    background-color: #2669dd;
    transform: scale(1.03);
}
.result-enquire:active {
    transform: scale(1);
}
.hr-container {
    padding-left: 50px;
    padding-right: 50px;
}
.results-hr {
    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
.tick-svg {
    margin: auto;
    margin-left: 20px;
    margin-right: 0;
}
.exact-match {
    color: #2A75F3;
    margin: auto;
    margin-left: 5px;
}





.filters {
    margin-left: auto;
    margin-right: auto;
    border: 1px solid black;
    width: 800px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    padding: 20px 10px;   
}
.filters label {
    display: flex;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
}
.filters input {
    margin-right: 5px;
    cursor: pointer;
}
.none-found {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}



.range-input {
    width: 40px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
}
.range-input::-webkit-outer-spin-button,
.range-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}






.domainpage-bar {
    max-width: 1000px;
    width: 90%;
    margin: auto;
    transform: translateX(-190px);
}

.content-3 {
    overflow-y: hidden;
    margin-top: 70px;
}
.domainpage {
    width: 100%;
    display: flex;
    overflow-y: hidden;
    margin-top: 50px;
}
.domainpage-left {
    width: 55%;
}
.domainpage-right {
    width: 45%;
    padding-bottom: 10px;
}

.form-card {
    width: calc(100% - 100px);
    margin-right: auto;
    height: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    background-color: #e6e8eb;
    margin-top: 33px;
}


.domain-info {
    margin-left: 80px;
    height: fit-content;
}
.domain-heading {
    font-size: 70px;
}
.price-heading {
    margin-top: 30px;
    font-size: 40px;
}




.domainpage-featured {
    margin-top: 60px;
    width: 100%;
}
.fdhc-domainpage {
    align-items: left;
    justify-content: left;
    padding-left: 50px;
}
.fdh-domainpage {
    font-size: 30px;
}
.cc-domainpage {
    gap: 20px;
    max-width: 100%;
    padding-left: 40px;
    padding-right: 80px;
    height: 350px;
    overflow-y: hidden;
}
.domainpage-hr {
    margin: auto;
    margin-top: 40px;
    width: 70%;
    max-width: calc(100% - 80px);
    background-color: #333D47;
    height: 3px;
    border: none;
}


.actualform {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    padding-top: 20px;
}

.input-container {
    display: flex;
    align-items: center;
    width: 100%;
    border: 2px solid #BDC3C7;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding-right: 5px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
}
.input-icon {
    font-size: 20px;
    padding: 10px;
    color: #BDC3C7;
    display: flex;
    align-items: center;
}
.input-input {
    width: 100%;
    padding: 10px;
    border: none;
    font-size: 18px;
    outline: none;
    font-weight: 600;
    font-weight: bold;
}

.comment {
    height: 80px;
    font-weight: bold;
}


.submit-button {
    background-color: #2A75F3;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
}
.submit-button > svg{
    margin-left: 10px;
}
.submit-button:hover {
    background-color: #2669dd;
    transform: scale(1.03);
}
.submit-button:active {
    transform: scale(1);
}
.submit-button:disabled,
.submit-button:disabled:hover {
    background-color: #8aa9d6;
    cursor: not-allowed;
    transform: none;
}

.offer-txt {
    margin-bottom: 40px;
    text-align: center;
}

.cc-domainpage-2 {
    width: 100%;
    min-width: calc(100% - 40px);
    margin-top: 40px;
}
.pair-msg {
    margin-right: 20px;
}



footer {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
.nominet {
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
}
.nominet-svg {
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
}
.nominet-txt {
    font-size: 22px;
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 20px;
}

/* responsive footer */
@media (max-width: 749px) {
    .nominet-svg {
        scale: 0.8;
    }
    .nominet-txt {
        font-size: 15px;
        display: block;
        margin-left: 0;
    }
    .nominet-txt > a{
        display: flex;
    }
}

























.loadmore-button {
    background-color: #2A75F3;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
}
.loadmore-button:hover {
    background-color: #2669dd;
    transform: scale(1.02);
}
.loadmore-button:active {
    transform: scale(1);
}

.more-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px;
    margin: 0 auto;
    margin-top: -40px;
}






















/* responsive home page */

@media (max-width: 999px) {
    .body-home {
        overflow: scroll !important;
    }
    .content {
        display: block;
        margin-top: 0;
    }
    .left {
        width: 100%;
        height: fit-content;
    }
    .right {
        width: 100%;
        height: fit-content;
        display: flex;
    }
    .card {
        margin-left: auto;
        margin-right: auto;
        min-width: 200px;
    }
}
@media (min-width: 1150px) and (max-width: 1400px) {
    .right {
        width: 50%
    }
    .left {
        width: 50%
    }
}
@media (min-width: 1000px) and (max-width: 1149px) {
    .right {
        width: 60%
    }
    .left {
        width: 40%
    }
}









/* responsive domain page */


.df-mobile {
    display: none;
    text-align: center;
}
.df-desktop {
    display: block;
}
.fdh-mobile {
    display: none;
    text-align: center;
}
.db-mobile {
    max-width: 1000px;
    width: 90%;
    margin: auto;
    margin-top: 20px;
    display: none;
}
@media (max-width: 1499px) and (min-width: 1300px) {
    .domainpage-bar {
        transform: translateX(0px);
    }
}
@media (max-width: 1299px) {
    .domainpage {
        display: block;
    }
    .domain-info {
        margin-top: 0;
    }
    .domainpage-left {
        width: 100%;
    }
    .domain-info {
        margin-left: auto;
        margin-right: auto;
    }


    .domainpage-right {
        margin-top: 40px;
        width: 100%;
        display: flex;
    }
    .form-card {
        margin-left: auto;
        margin-right: auto;
        width: calc(100% - 30px);

    }

    .df-desktop {
        display: none;
    }
    .df-mobile {
        display: block;
    }
    .header-container {
        margin-top: -60px;
    }
    .fdhc-domainpage {
        padding-left: 40px;
        padding-right: 40px;
    }
    .enquire-mini {
        margin-left: auto;
        margin-right: auto !important;
    }
    .domain-heading {
        text-align: center;
    }
    .price-heading {
        text-align: center;
    }
    .pair-msg {
        text-align: center;
        margin-left: 20px;
        margin-right: 20px;
    }
    .fdh-mobile {
        display: block;
        margin-left: 15px;
        margin-right: 15px;
    }
    .domainpage-bar {
        display: none;
    }
    .db-mobile {
        display: flex;
    }
}
@media (max-width: 849px) {
    .domain-heading {
        font-size: 40px;
    }
    .price-heading {
        font-size: 20px;
    }
}









/* responsive search page */

@media (max-width: 800px) {
    .filters {
        width: auto;
    }
    .result-price {
        text-align: left;
        margin-left: 22px;
    }
    .individual-result {
        width: calc(100% - 20px);
    }
    .price-info-container {
        margin-left: 22px;
    }
    .result-enquire {
        margin-right: 0;
        margin-top: auto;
        margin-bottom: auto;
    }
    .hr-container {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
    body {
        overflow-x: hidden;
    }
    .result-name {
        width: 10px;
        white-space: nowrap;
    }

}
.skinnny-left {
    margin-top: -25px;
}
.skinnny-right {
    display: flex;
    margin-left: auto;
    margin-right: 22px;
}



.enquire-mini {
    margin-right: 30px;
    background-color: #2A75F3;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-top: 15px;
    height: 25px;
    width: 80px;
    border-radius: 5px;
    justify-content: center;
    font-size: 12px;
}
.enquire-mini:hover {
    background-color: #2669dd;
    transform: scale(1.03);
}
.enquire-mini:active {
    transform: scale(1);
}
.result-txt {
    margin-top: 20px;
    text-align: center;
    color: #2A75F3;
    font-weight: bold;
}
.ld-filters > label {
    font-weight: bold;
}
.char-filters > label {
    font-weight: bold;
}



















.slider-container {
    position: relative;
    width: 100%;
    height: 30px;
}

.slider-container input[type="range"] {
    position: absolute;
    width: 100%;
    appearance: none;
    background: none;
    pointer-events: none;
}

.slider-container input[type="range"]::-webkit-slider-runnable-track {
    height: 8px;
    background: #ddd;
    border-radius: 5px;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: #2A75F3;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 2;
    transform: translateY(-3px);
}

.slider-container input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #2A75F3;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    transform: translateY(-3px);
}

.slider-track {
    position: absolute;
    height: 8px;
    background: #2A75F3;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
}


























.iti__tel-input {
    height: 60px;
    font-size: 24px;
    font-family: inherit;
    font-weight: 500;
    border: 0;
}
.iti__tel-input:focus-visible {
    outline: none;
}


.iti__selected-dial-code {
    font-size: 24px;
    font-family: inherit;
    font-weight: 500;
}
#phone::placeholder {
    color: #fff;
}
#phone {
    padding-left: 100px !important;
}