
/**
   Helpers & Global
 **/
label {
    text-transform: capitalize;
}
a, a:hover, a:focus, a:active {
    text-decoration: none;
    color: inherit;
}
body {
    margin: 0;
    font-family:roboto;
    position:relative;
}
h1, h2, h3, h4, h5, h6, textarea::placeholder{
    font-family:roboto;
}
h1{font-size:34px;}
h2{font-size:24px;}
img{
    max-width:100%;
}

.my-error {
    border: red solid;
}
#form-error {
    display: flex;
    flex-direction: row;
    padding: 20px;
    justify-content: center;
    align-items: center;
    background: red;
    color: white;
    margin-top: 30px;
}
#form-error span {
    font-size: 20px;
    font-weight: 900;
    text-align: center;
}

.comments-form {
    display: grid;
    margin-top: 20px;
}
textarea#comments {
    height: 200px;
}

.background-flat-grey {
    /* background-color:#1b1a1a; */
    background-color:#373435;
}

.background-flat-grey-light {
    background-color:#cccacf;
}

.background-green-gradient {
    /* background: linear-gradient(#C3D964, #6E9239); */
    background:linear-gradient(#7BC242, #5A9B26);
}

.background-blue-gradient {
    background: radial-gradient(#1a92cb, #182750);
}


.green-text {
    /* color: #4CAF50; */
    color: #7BC242;
}

.blue-text {
    color: #182750;
}

.box-shadow-1 {
    /* box-shadow: 0px 0px 8px 0 black; */
    box-shadow: 0px 25px 18px -8px rgba(0,0,0,.15);
}

@media only screen and (max-width:470px){
    .gl-hide-on-mobile{
	display:none!important;
    }
}

@media only screen and (min-width:471px){
    .gl-hide-on-desktop{
	display:none!important;
    }
}

/*container css*/
.container{
    margin:auto;
}
@media only screen and (min-width:1300px){
    .container{
	max-width:1200px;
    }
}
@media only screen and (min-width:471px) and (max-width:1299px){
    .container{
	padding:0 60px;
    }
}
@media only screen and (max-width:470px){
    .container{
	padding:0 30px;
    }
}

/*scroll bar*/
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #d3d3d3; 
}
::-webkit-scrollbar-thumb {
    background: #eee; 
    border-radius:10px;
}
::-webkit-scrollbar-thumb:hover {
    
    background: #41b42b; 
} 

/* slick slider fixes */
/* the slides */
.slick-slide {
    margin: 0 27px;
    height:auto;
}
/* the parent */
.slick-list {
    margin: 0 -27px;
}

/*buttons*/
.btn-1 {
    position: relative;
    padding: 14px 43px;
    line-height: 24px;
    text-transform: uppercase;
    color: #41b42b;
    border: 2px solid #41b42b;
    font-size: 14px;
    font-weight: 800;
    border-radius: 50px;
    background: none;
    display: block;
    width: fit-content;
    height: fit-content;
    cursor: pointer;
}

.btn-2{
    position: relative;
    padding: 14px 43px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    border: 2px solid #41b42b;
    font-size: 14px;
    font-weight: 800;
    border-radius: 50px;
    background:  #41b42b;
    display: block;
    width: fit-content;
    height: fit-content;
    cursor:pointer;
}

.btn-3 {
    color: #41b42b;
    font-weight: 900;
    font-size: 16px;
}

@media only screen and (max-width:470px){
    .btn-1, .btn-2, .btn-3 {
	width: -webkit-fill-available;
	text-align: center;
    }
}


/**
   Header
 **/
#gl-header-top {
    padding: 20px 0;
}
#gl-header-top * {
    color: white;
}
#glht-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
#glht-socials {
    display: flex;
    gap: 10px;
}

#glht-ci {
    display: flex;
    gap: 20px;
}
.glht-ci-item > a {
    display: flex;
    gap: 10px;
}

#gl-header-bottom {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index:999;
}
#glhb-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
#glhb-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
}
.glhb-nav-item span {
    font-size: 20px;
}
.glhb-nav-item {
    position: relative;
}
.dropdown-menu-main-nav {
    display:none;
    position: absolute;
    padding-top: 30px;
    background: #eeeeee;
    padding: 0;
    min-width: 170px;
    gap: 20px;
    flex-direction: column;
    left: -20px;
}
.drop-down-icon {
    display: inline-block;
    /* transform: rotate(90deg); */
    padding-left: 0px;
    margin-left: 8px;
}
.glhb-nav-item span {
    font-size: 20px;
    cursor: pointer;
}
/* div[class*="glhb-nav-item"][class*="active"] > .dropdown-menu-main-nav {
   display:flex;
   } */

.glhb-nav-item:hover > .dropdown-menu-main-nav {
    display:flex;
    padding: 50px 20px 20px 20px;
}

#header-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dropdown-menu-main-nav-mobile {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.glhb-nav-item-mobile {
    padding: 5px 10px;
}
.dropdown-menu-main-nav-mobile {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}
div#mobile-nav-trigger::before {
    content: "View Menu";
    display: inline-block;
    padding-right: 10px;
}
div#mobile-nav-trigger i {
    font-size: 30px;
}
@media only screen and (max-width:470px){
    #glht-ci, #glht-grid {
	flex-direction: column;
	gap: 10px;
    }

    /*hide text next to contact icons and change to row layout for icons*/
    .glht-ci-item span {
	display: none;
    }
    div#glht-ci {
	flex-direction: row;
    }
    div#glht-ci {
	flex-direction: row;
	gap: 20px;
	font-size: 24px;
    }
    div#glht-ci::before {
	content: "Get In Touch";
    }
}

/***
   Footer
 ***/
#gl-footer {
    padding: 20px 0;
}
#gl-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}
#glf-contact {
    display: grid;
}
.glfc-item {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

#gl-footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}
#glfb-nav {
    display: flex;
    gap: 20px;
}

/**
   Footer v2
 **/
#gl-footer-grid-2 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
#glf2-1 {
    display: flex;
    gap: 30px;
}
#glf2-nav {
    display: flex;
    gap: 20px;
    align-items: center;
    color: white;
}
#glf2-copyright span {
    color: white;
}
@media only screen and (max-width:470px){
    #gl-footer-grid-2 {
	flex-direction: column;
	gap: 20px;
	/* align-items: flex-end; */
	text-align: center;
    }
    #glf2-nav, #glf2-1 {
	flex-direction: column;
    }
}


/**
   Home
 **/
/*slider*/
#home-top-slider {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
#home-top-slider a{
    aspect-ratio: 1920/500;
}
#hts-prev, #hts-next {
    position: absolute;
    top: calc(50% - 50px);
    background: black;
    width: 50px;
    height: 50px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
}
#hts-prev {
    left:50px;
}
#hts-next {
    right:50px;
}
@media only screen and (max-width:470px){
    #hts-prev, #hts-next {
	top: 30px;
    }
}

/*about*/
#ha-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
#ha-1 {
    position: relative;
}
.secton-vertical-text {
    position: absolute;
    top: 3%;
    left: -40px;
    transform: rotate(90deg);
    transform-origin: left;
    text-transform: uppercase;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
span.vt-line {
    border: 2px solid;
    width: 30px;
    margin-left: 10px;
}
div#fwt-text-below {
    margin-top: 60px;
}
#about-page-view div#home-testimonials {
    padding: unset!important;
}

/*services*/
#home-services {
    padding: 60px 0;
}
#home-services h2 {
    max-width: 500px;
}
.hsi-grid {
    display: grid;
}
.hsi-grid h3::after {
    content: "";
    display: block;
    border-bottom: 2px solid #000;
    max-width: 30px;
    margin: 20px auto;
}
.hsi-grid img {
    margin: auto;
}
/* #hs-grid {
   display: grid;
   grid-template-columns: 1fr 1fr 1fr;
   text-align: center;
   grid-row-gap: 60px;
   } */
.hsi-grid:hover img {
    box-shadow: 0px 2px 16px 0px #0000009e;
}

div#hs-grid {
    display: flex;
    gap: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.home-service-item {
    width: 350px;
    text-align: center;
}

/*cta 1*/
#home-cta-1 {
    padding: 60px 0;
}
#hcta1-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    grid-gap: 30px;
}
#hcta1-item-1 {
    /* display: grid; */
    gap: 20px;
}

/*testimonials*/
#home-testimonials {
    /* background-position: top; */
    /* background-attachment: fixed; */
    /* height: 500px; */
    padding: 60px 0;
    background-size: cover!important;
}
.htiig-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
#ht-slides-wrapper {
    margin-top: 3%;
}
#ht-slides {
    max-width: 700px;
    margin: auto;
}
#home-testimonials > .container {
    display: flex;
    flex-direction: column;
}
.ht-i-inner-grid-1 {
    margin-top: 30px;
    display: grid;
    gap: 10px;
    grid-template-columns: auto 1fr;
}
.htiig-title, .htiig-subtitle {
    display: block;
}
.htiig-title{
    font-weight:900;
    font-size:18px;
}
#home-testimonials h2, #home-testimonials p, #home-testimonials span, #home-testimonials div{
    color:#fff;
}

/*latest news*/
.hln-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
#hlni-content {
    position: relative;
    padding: 20px 60px 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.hlni-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.hlni-title * {
    font-size: 20px;
    font-weight: 900;
}
.hlni-more {
    /* position: absolute;
       bottom: 10px;
       right: 10px; */
}
#home-latest-news {
    padding: 0 0 60px 0;
}
.hlni-image img {
    height: auto!important;
}
@media only screen and (max-width:470px){
    #ha-grid, #hs-grid, #hcta1-grid, .hln-item {
	display: grid!important;
	grid-template-columns: 100%!important;
    }
    .hlni-image img {
	height: auto!important;
    }
    div#hlni-content {
	padding: 0 0 60px 0!important;
    }
    #hts-prev {
	left: 10px;
    }
    #hts-next {
	right: 10px;
    }
}

/**
   Blog
 **/
#top-image-wrapper {
    margin-bottom: 60px;
}
#page-top-image {
    position: relative;
}
#top-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(50% - 50px);
}
#top-breadcrumb {
    display:none!important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.4);
    display: flex;
    gap: 10px;
}
#top-text *, #top-breadcrumb *  {
    color: #fff;
}
#blv-outer-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    grid-gap:60px;
}
.blog-list-item {
    margin-bottom: 60px;
}
.bli-image-wrapper img {
    min-width: -webkit-fill-available;
}
.bli-content-wrapper {
    position: relative;
    padding: 20px 20px 80px;
    border-left: 2px solid #eee;
    border-right: 2px solid #eee;
    border-bottom: 2px solid #eee;
}
.bli-meta-wrapper {
    display: flex;
    gap: 10px;
}
.bli-title-wrapper * {
    font-size: 22px;
}
.bli-btn-wrapper {
    padding: 20px;
    /* position: absolute; */
    /* right: 10px; */
    border: 2px solid #41b42b;
    width: 96px;
    text-align: center;
    color: #41b42b;
    margin-top:30px;
}
#blv-paginate {
    padding: 20px 20px 60px;
}
#blv-paginate .pagination {
    display: flex;
    gap: 10px;
    justify-content: space-around;
}
.pagination .page_current {
    color: #41b42b;
    font-weight: 900;
    border-color: #41b42b;
}
.pagination * {
    border: 1px solid #000;
    padding: 7px;
}

.blvs-form-group input[type="search"] {
    padding: 14px;
    width: calc(100% - 52px);
}
.blvs-form-group button {
    width: 48px;
    height: 48px;
    background: #41b42b;
    border: unset;
}
#blvsb-categories-wrapper {
    margin-top: 60px;
    background: #fafafa;
    padding: 20px;
}
#blvsb-categories-wrapper h2 {
    font-size: 20px;
    padding-bottom: 30px;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
}
.blv-category-item {
    margin-top: 15px;
}
.blv-category-item a {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
}

@media only screen and (max-width:470px){
    .bli-image-wrapper img {
	height: auto!important;
    }
}

/**
   Blog - page view
 **/
#blog-page-view .bli-title-wrapper {
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
#blog-page-view .bli-content-wrapper {
    border: unset!important;
    padding: 20px!important;
}

/**
   Services (List View)
 **/
#video-with-text-wrapper {
    padding: 60px 0;
}
#vwt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}
#vwt-video {
    border-radius: 15px;
    overflow: hidden;
}
div#vwt-text-below {
    margin-top: 30px;
}
.cta-1-btn-grid {
    display: flex;
    gap: 30px;
}
.faq-question {
    padding: 20px;
    border: 1px solid #000;
    cursor: pointer;
}
.faq-answer {
    padding: 20px;
}
#service-faq-wrapper {
    padding-bottom: 60px;
}

form#ssform {
    padding: 20px;
    background: #fafafa;
}
#sf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap:30px;
}

#service-form-wrapper {
    padding: 60px 0;
}
form#ssform input, form#ssform select {
    padding: 20px;
}
#ssf-grid-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* grid-template-columns: 100%; */
    gap: 30px;
}
#ssf-grid-1 > .fg1 {
    display: grid;
    gap: 10px;
}
#pf-btn-group {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

#hcta1-item-2 {
    /* padding-top: 77px; */
}

@media only screen and (max-width:470px){
    #vwt-grid {
	grid-template-columns: 100%!important;
    }
    div#top-breadcrumb {
	display: none!important;
    }
    .container .container {
	padding: unset!important;
    }
    #services-page-view #service-form-wrapper {
	padding-top: unset!important;
	margin-top: -30px;
    }
    #services-page-view #service-faq-wrapper {
	margin-top: 60px;
	padding-bottom: 30px!important;
    }
    div#ssf-grid-1 {
	grid-template-columns: 100%!important;
    }
}


/**
   Cars (list view)
 **/
/*general styles*/
.cic-title h2 {
    font-size: 20px;
}
span.cicm1 {
    color: #7b7b7b;
}
.cic-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
span.cic-price1 {
    font-size: 24px;
    color: #41b42b;
}

#items-sort-bar {
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
}
select#isb-select-elem {
    padding: 10px;
}
#isb-grid-list-group {
    display: flex;
    gap: 10px;
}
.isbglg-item {
    padding: 10px;
    border: 1px solid;
    cursor: pointer;
}

/*list layout styles*/
.list-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}
.list-layout .cars-item-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    grid-gap: 30px;
}
.list-layout .ci-content {
    position: relative;
}
.list-layout .cic-title {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 8px;
}
.list-layout .cicm-group2 {
    position: absolute;
    right: 10px;
    top: 50%;
}

/*grid layout styles*/

/*side bar items*/
#cars-list-view #blvsb-categories-wrapper {
    margin-top: 30px;
}
#cars-refine-search {
    display: flex;
    gap: 20px;
    flex-direction: column;
}
#cars-refine-search select {
    width: 100%;
    padding: 20px 10px;
}
#crf-price-range-group {
    display: flex;
    gap: 10px;
}
#crfp-min, #crfp-max {
    width: 40px;
    height: 40px;
    border: 1px solid;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px;
}
input#price {
    width: 100%;
}
#crfp-min::before, #crfp-max::before {
    content: "R";
}

@media only screen and (max-width:470px){
    #blv-outer-grid, .list-layout .cars-item-wrapper {
	grid-template-columns: 100%!important;
    }
    #blv-outer-grid #side-bar-wrapper {
	grid-row: 1/2;
    }
    #cars-refine-search select {
	border: unset!important;
    }
    span#isbni-text {
	font-size: 12px;
    }
}


/**
   Cars page view
 **/
#cars-page-view #blv-outer-grid {
    grid-template-columns: 800px 1fr;
}
#cg-main-slider {
    position: relative;
}

#cgms-prev, #cgms-next {
    position: absolute;
    top: 50%;
    border: 1px solid;
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    cursor:pointer;
}
#cgms-prev{
    left:-20px;
}
#cgms-next{
    right:-20px;
}

#cg-second-slider {
    padding: 30px 0;
}

#ct-tabs {
    display: flex;
    gap: 30px;
    margin-bottom:30px;
    margin-top:30px;
    
}

#ct-tab-content {
    margin-bottom: 60px;
}
.car-tab-content h2, #enquire-form-cars h2 {
    font-size: 22px;
}

#enquire-form-cars {
    margin-top: 30px;
    /* padding-top: 30px; */
}
#efc-form input, #efc-form textarea {
    padding: 20px 10px;
    width: 100%;
}
form#efc-form {
    display: grid;
    gap: 30px;
}
#efcf-grid-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

#car-single-sidebar-meta {
    border: 1px solid #eee;
    padding: 20px;
}
#car-single-sidebar-meta h2 {
    font-size: 22px;
}
.cssm-group1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
}
.cssm-group2 {
    border: 1px solid #eee;
    margin: 0 -20px -20px;
    padding: 20px;
}
.cssm-group2 {
    border: 1px solid #eee;
    margin: 0 -20px -20px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.cssmg1-2, .cssmg3-2 {
    color: #41b42b;
}
a#car-sidebar-book-now {
    margin-top: 30px;
    width: 100%;
    text-align: center;
}
a#car-sidebar-book-now {
    margin-top: 30px;
    width: -webkit-fill-available;
    text-align: center;
}
.car-tab:not(.active) {
    border-color: grey;
    color: grey;
}
#cg-second-slider img {
    height: auto!important;
}

@media only screen and (max-width:470px){
    div#ct-tabs {
	flex-direction: column;
	align-items: center;
    }
    #cg-main-slider img {
	height: auto!important;
    }
    #top-text {
	top: calc(50% - 45px)!important;
    }
    #top-text * {
	width: 90vw;
	margin: auto;
	text-align: center;
	font-size: 24px;
    }
    #glht-ci, #glht-grid {
	align-items: center;
    }
}

/**
   About us
 **/
#about-page-view #service-form {
    margin: 60px 0;
}
#service-form h2 {
    font-size: 24px;
}
#sf-1 {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}

#scb-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#scbtb-group1 {
    display: flex;
    gap: 10px;
}
#scbtb-group1 .btn-1:not(.active) {
    border-color: grey;
    color: grey;
}
#select-car-by-wrapper {
    margin: 60px 0;
}

#testimonials-and-news-row #home-testimonials h2,
#testimonials-and-news-row #home-testimonials p,
#testimonials-and-news-row #home-testimonials span,
#testimonials-and-news-row #home-testimonials div {
    color: unset;
}

#testimonials-and-news-row {
    display: grid;
    grid-template-columns: 550px 550px;
    grid-gap: 30px;
}
#testimonials-and-news-row #hlni-content {
    padding: unset;
}
#testimonials-and-news-row .hlni-inner-content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
#testimonials-and-news-row .hlni-more {
    position: unset;
    margin-top: 10px;
}
#testimonials-and-news-row #home-testimonials {
    height: auto;
}
#logo-carousel {
    padding: 60px;
    background: #fafafa;
}

@media only screen and (max-width:470px){
    #page-top-image img {
	height: auto!important;
	min-height: 175px;
    }
    #sf-grid, #testimonials-and-news-row {
	grid-template-columns: 100%!important;
    }
    div#scb-top-bar {
	flex-direction: column;
    }
    form#ssform input, form#ssform select {
	padding: 20px;
	border: unset!important;
    }
    div#pf-btn-group {
	flex-direction: column;
    }
}

/**
   Contact us page
 **/
#contact-page-content-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    grid-gap: 30px;
    margin: 60px 0;
}
#cpcg1 h2 {
    font-size: 24px;
}
#contact-page-view #enquire-form-cars {
    margin-top: 0;
}
#cpcg1-more {
    margin-top: 20px;
}
#cpcg1-contact {
    margin-top: 20px;
    display: flex;
    gap: 30px;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-bottom: 30px;
}
.cpcg1c-group1 a {
    display: flex;
    gap: 10px;
}

@media only screen and (max-width:470px){
    div#contact-page-content-grid, #efcf-grid-1 {
	grid-template-columns: 100%!important;
    }
    #efc-form input, #efc-form textarea{
	width:auto!important;
    }
}

/*general important overrides...*/
.secton-vertical-text {
    display: none;
}


/**
   WAflowbot CSS (popup styles)
 **/
div#waflowbot-popup-wrapper {
    width: 100%;
    height: 100%;
    background: #55bb51eb;
    position: fixed;
    top: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
div#waflowbot-popup-inner {
    position: relative;
}
div#waflowbot-close {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    right: -75px;
    top: -75px;
    cursor: pointer;
}
