
/*** Spinner Start ***/
body{
    font-family: "Roboto", sans-serif;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

 .back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.border-secondary {
    transition: 0.5s;
}

.btn.border-secondary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.fixed-top {
    transition: 0.5s;
    background: var(--bs-white);
    border: 0;
}

.topbar {
    padding: 20px;
    border-radius: 230px 100px;
}

.topbar .top-info {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link a {
    letter-spacing: 1px;
}

.topbar .top-link a small:hover {
    color: var(--bs-secondary) !important;
    transition: 0.5s;
}

.topbar .top-link a small:hover i {
    color: var(--bs-primary) !important;
}
/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s;
}

.navbar {
    background-color: #f00001 !important;
    height: 60px;
    border-bottom: 1px solid #f00001;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-template);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}


.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}
/*** Navbar End ***/

/*** featurs Start ***/
.featurs .featurs-item .featurs-icon {
    position: relative;
    width: 120px;
    height: 120px;
}

.featurs .featurs-item .featurs-icon::after {
    content: "";
    width: 35px;
    height: 35px;
    background: var(--bs-secondary);
    position: absolute;
    bottom: -10px;
    transform: translate(-50%);
    transform: rotate(45deg);
    background: var(--bs-secondary);

}
/*** featurs End ***/


/*** service Start ***/
.service .service-item .service-content {
    position: relative;
    width: 250px;
    height: 130px;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*** service End ***/

/*** vesitable Start ***/
.vesitable .vesitable-item {
    height: 100%;
    transition: 0.5s;
}

.vesitable .vesitable-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.vesitable .vesitable-item .vesitable-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.vesitable .vesitable-item .vesitable-img img {
    transition: 0.5s;
}

.vesitable .vesitable-item .vesitable-img img:hover {
    transform: scale(1.2);
}

.vesitable .owl-stage {
    margin: 50px 0;
    position: relative;
}

.vesitable .owl-nav .owl-prev {
    position: absolute;
    top: -8px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;

}

.vesitable .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.vesitable .owl-nav .owl-next {
    position: absolute;
    top: -8px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.vesitable .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** vesitable End ***/


/*** Banner Section Start ***/
.banner .banner-btn:hover {
    background: var(--bs-primary);
}
/*** Banner Section End ***/


/*** Facts Start ***/
.counter {
    height: 100%;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.counter i {
    font-size: 60px;
    margin-bottom: 25px;
}

.counter h4 {
    color: var(--bs-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.counter h1 {
    margin-bottom: 0;
}
/*** Facts End ***/


/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** testimonial End ***/


/*** Single Page Start ***/
.pagination {
    display: inline-block;
}

.pagination a {
    color: var(--bs-dark);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid var(--bs-secondary);
    margin: 0 4px;
}

.pagination a.active {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border: 1px solid var(--bs-secondary);
}

.pagination a:hover:not(.active) {background-color: var(--bs-primary)}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid #f00001 !important;
}
/*** Single Page End ***/


/*** Footer Start ***/
.footer .footer-item .btn-link {
    line-height: 35px;
    color: #000;
    transition: 0.5s;
}

.footer .footer-item .btn-link:hover {
    color: #b4c8ef !important;
}

.footer .footer-item p.mb-4 {
    line-height: 35px;
}
/*** Footer End ***/
.detailShowImg{
    height: 500px !important;
    width: 100% !important;
    max-width: 100% !important;
    object-fit: scale-down !important;
}

::-webkit-scrollbar {
	height: 8px;
	border: 1px solid #d5d5d5;
	border-radius:5px;
  }

.detailPhotos {
    height: 120px;
    cursor: pointer;
    border-radius: 4px;
    padding-right: 8px;
    width: 100%;
}


.image-zoom-container {
	position: relative;
}

.image-zoom-container #photoZoom {
    width: 400px;
    height: 450px;
    border: 1px solid #d4d4d4;
}
.image-zoom-container .image-zoom-result {
border: 1px solid #d4d4d4;
width: 300px;
height: 450px;
position: absolute;
top: 0px;
left: 369px;
z-index: 2;
border-radius: 4px;
}
.image-zoom-container .img-zoom-lens {
position: absolute;
background-color: #ffffff3b;
width: 100px;
height: 100px;
border-radius:4px;
}

.advertisingTitle{
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #263238;
    padding: 0;
    margin: 0 0 16px;
    text-transform: capitalize !important;
}


.advertisingDetailTitle{
    font-size: 18px;
    color: #333;
    float: left;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    font-weight: 600;
}

.advertisingTitle::first-letter {
    text-transform: uppercase !important;
}

.advertisingTitleDiv{
    padding: 4px !important;
    text-align: left !important;
}

.advertisingPrice{
    font-size: 30px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #212121;
}

.advertisingDashedLine{
    border:1px dashed #dee3e9;
    width:100%;
}

.advertisingSkillDetail{
    border: 1px solid #eaeff3;
    -moz-border-radius: 17.5px;
    border-radius: 17.5px;
    background-color: #f2f7fc;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    align-content: center;
    font-weight: 600;
}

.advertisingRow{
    display: flex;
    flex-direction: row;
}

.advertisingCreatedInfo{
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #64707c;
}

.userDetailBox{
    border: 1px solid #fff;
    height: auto;
    border-radius: 3px;
    background-color: #ccc;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.userDetailDownBox{
    flex-direction: column;
    border: 1px solid #dee3e9;
    height: auto;
    border-radius: 3px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.companyName{
    font-weight: 700;
    font-size: 18px;
}

.companyLine{
    width: 100%;
    border:1px solid #dee3e9;
}

.companyLink{
    display: block;
    color: #038;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    text-align: center;
    cursor:pointer;
}

.advertisingSkillsBox{
    border: 1px solid #e6e6e6;
    width:100%;
    height: auto;
    padding: 2rem;
    border-radius:5px;
}

.advertisingSkillsTitle{
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    font-family: "Open Sans",sans-serif;
    color: #038;
}

.advertisingSkillRight{
    font-size:12px;
    color:black;
    float: right;
}

.advertisingSkillLeft{
    font-weight: 600;
    font-size:12px;
    color: #000;
}

.advertisingDetailAddress{
    color: #039;
    font-weight: 600;
    font-size:13px;
    display: flex;
    text-align: center !important;
    justify-content: center;
}

.navbar-header-logo img{
    width:200px;
    height:50px;
}

.hide{
    display:none;
}



.loginTitle{
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.logiRegisterDistinctions {
    padding: 1rem;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
}

.loginDiv{
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signBtn{
	width:100%;
	background-color:#f2f2f2;
	color:#333333;
	border: 1px solid #e6e6e6;
}
.signBtn.active{
	width:100%;
	background-color:#ffffff;
    color: #038;
	border: 1px solid #e6e6e6;
}

.form-group{
	margin-bottom:1rem;
}

.hide{
	display: none !important;
}

.submitBtn{
	width:100%;
	background-color:#f2f2f2;
	color:#333333;
	border: 1px solid #1a3257;
}

.loginPage{
    padding-bottom: 1rem !important;
}


.iti{
	width:100%;
}

.advertisingSkillsUl{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.footerLogo{
    width: 100%;
    height:70px;
}

.top-search{
    width:500px;
}

.headerLineBox{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.headerLineSearchBox{
    display: flex;
    justify-content: center;
    align-items: center;
}

.searchIconSubmit{
    position: absolute;
    right: 29%;
    top: 22%;
    color: white;
    transform: translate(-50% , -50%);
    height: 40px;
    border-radius: 40px;
    padding: 10px;
}

.campaignsTitle{
    margin-left: 6rem;
    font-weight: 600;
    font-size: 24px;
    color:white;
}

.campaignsDescription{
    margin-left: 6rem;
    color:white;
}

.profileBand{
    width: 100%;
    margin: 0;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.profileDetail{
    padding: 3rem;
}

.profileImg{
    width: 100%;
    height:150px;
    border-radius:5px;
}

.profileName{
    height: 35px;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 57px;
}

.profileSearchBand{
    background-color: #038;
    width: 100%;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    color:white;
}

.profileAdvertisingSearch{
    display: flex !important;
    justify-content: center !important;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.meAdvertisingCount{
    font-size: 20px;
    font-weight: 600;
}



.advertising .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.advertising .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.advertising .advertising-categorie .advertising-name {
    line-height: 40px;
}

.advertising .advertising-categorie .advertising-name a {
    transition: 0.5s;
}

.advertising .advertising-categorie .advertising-name a:hover {
    color: var(--bs-primary);
}

.advertising-item{
    cursor: pointer;
}

.advertising .advertising-item {
    height: 100%;
    transition: 0.5s;
}
.advertising .advertising-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.advertising .advertising-item .advertising-img {
    overflow: hidden;
    transition: 0.5s;
    min-height: 190px;
    max-height: 190px;
}

.advertising .advertising-item .advertising-img img {
    transition: 0.5s;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.advertising-img img{
    min-height: 190px;
    max-height: 190px;
}

.pagination{
    display: flex;
}

/*Pagination*/
.paginationLi{
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    color: #038;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    margin-left:5px;
}

.paginationLi.pagePaginationActive{
z-index: 3;
color: #fff;
cursor: default;
background-color: #038;
border-color: #038;
border-radius: 5px;
font-weight: 600;
}

.pagination-container{
  float:right;
}


.userDetailBox img{
    border-radius: 5px;
}


.defaultCancelBtn{
    border: 2px solid #1a3257 !important;
    background-color: #fff !important;
    color: #1a3257 !important;
    padding: 10px 10px;
    border-radius: 15px;
    font-size: 14px;
}
.defaultCancelBtn:hover{
    border: 2px solid #fff !important;
    background-color: #1a3257 !important;
    color: #fff !important;
}
.defaultCancelBtn.active{
    border: 2px solid #fff !important;
    background-color: #1a3257 !important;
    color: #fff !important;
}


.defaultBtn{
    border: 2px solid #fff !important;
    background-color: #1a3257 !important;
    color: #fff !important;
    padding: 10px 10px;
    border-radius: 0px !important;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}

.defaultBtn.profileDetail{
    border: 2px solid #1a3257 !important;
    background-color: #1a3257 !important;
    color: #fff !important;
    padding: 6px 10px;
    border-radius: 0px !important;
    font-size: 14px;
}
.defaultBtn:hover{
    border: 2px solid #1a3257 !important;
    background-color: #fff !important;
    color: #1a3257 !important;
}
.defaultBtn.active{
    border: 2px solid #1a3257 !important;
    background-color: #fff !important;
    color: #1a3257 !important;
}

a.defaultBtn{
    background: #f00001 !important;
    color: white;
    padding: 5px 19px;
    border-radius: 0px !important;
    font-size: 16px;
    font-weight: 600;
}
a.defaultBtn:hover{
    border: 2px solid #fff !important;
    background-color: #ce1a10  !important;
    color: #fff !important;
}

.messagesBoxList{
    padding: 10px;
    border: 2px solid #1a3257 !important;
    color: #038;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    height: 600px;
    overflow-y: scroll;
    max-height: 600px;
}

.messagesSendBoxList{
    padding: 10px;
    border: 2px solid #1a3257 !important;
    color: #038;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    height: 600px;
    max-height: 600px;
    position:relative;
}

.userBox{
    cursor:pointer;
}
.userBox img{
    width: 100%;
    height: 75px;
    border-radius: 50%;
}

.userBox .userDetail{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.sendMessageBox{
    position: absolute;
    bottom: 0;
    width: 100%;
}

.sendMessageBox .defaultBtn{
    border: 2px solid #1a3257 !important;
    background-color: #1a3257 !important;
    color: #fff !important;
    padding: 5px 0px;
    border-radius: 15px;
    font-size: 14px;
}


.navbar{
    background-color: #64707c;
}

.navbar .headerLogo{
      height: 50px;
      background-color: transparent;
      font-family: "Prompt", sans-serif;
      font-weight: 500;
      font-style: normal;
      font-size: 28px;
      align-content: center;
      align-items: center;
      color: #ffff;
      margin-bottom: -1px;
      letter-spacing: 1px;
}

.navbar .searchDiv {
    position: relative;
}

.navbar .form-search{
    width: 500px;
    height: 34px;
    float: left;
    padding-left: 7px;
    padding-right: 40px;
    background: #fff;
    font-size: 14px;
    border: 0;
    border-radius: 3px;
    outline: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.navbar .form-search:focus{
    background-color: #fff;
    color:#193156;
}

.navbar .searchButton{
    position: absolute;
    right: 6px;
    height: 36px;
    padding: 0;
    margin: 0;
    width: 38px;
    border: 0;
    cursor: pointer;
    background: 0;
    outline: 0;
    border-radius: 0 3px 3px 0;
    color:#9fa2a8;
}

.navbar .nav-item a{
    color:#fff !important;
    font-size: 15px !important;
    position: relative;
    display: block;
    font-weight: 600 !important;
}

.navbar .nav-item a:hover{
    text-decoration:underline;
}


.homepageTopAds img{
    width: 100%;
    height: 250px;
}


.select2{
    width:100% !important;
}
.select2-container{
    z-index:998;
}

.reportAdvertisingBtn{
    font-size: 11px;
    color:  #039 !important;
    cursor: pointer;
}

.reportAdvertisingBtn:hover{
    font-size: 11px;
    color:  rgba(0, 51, 153, 0.418) !important;
}

span.featureSpan {
    font-size: 12px;
    font-weight: bold;
    color: #a7a9ac;

}
span.featureActive {
    color: #000;
}
span.featureActive i {
    color: #f00001;
    font-weight: bold;
    font-size: 20px;
}
.paddingInFeatures{
    padding:1rem;
}
.advertisingSkillsBox .featuresInBox{
    padding: 1rem;
    border: 2px solid #f00001;
    border-radius: 5px;
    background-color: #fff;
}
.advertisingSkillsBox iframe{
    width: 100%;
    height: 400px;
}
.advertisingSkillsBox .row hr{
    margin: 0px;
}


.detailImgList img{
    width: 100%;
    height: 100px;
}

.detailImgList .swiper-container {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
.detailImgList .swiper-slide {
text-align: center;
font-size: 18px;
background: #fff;

/* Center slide text vertically */
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}

.detailImgList .swiper-slide img{
    height: 100px;
    cursor: pointer;
}

.detailImgDiv {
    cursor:pointer;
}



/* RESİM EKLEME TASARIM ALANI  YENİ*/
.preview-container .preview img{
    width: 100%;
    height: 150px;
}
.preview-container .preview{
    border-radius: 5px;
}
/* RESİM EKLEME TASARIM ALANI  YENİ*/

/* RESİM EKLEME TASARIM ALANI */
.advertisingPicturesList #dropArea {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
    min-width: 100%;
    position: relative;
  }

.advertisingPicturesList #dropArea:hover {
border-color: #0061fe;
}

.advertisingPicturesList #dropArea:after {
margin: 0;
font-size: 16px;
color: #666;
}

.advertisingPicturesList #dropArea:focus::after {
content: "You can drop your files!";
}

.advertisingPicturesList #dropArea.dragover {
border-color: #007bff;
background-color: #f2f2f2;
}

.advertisingPicturesList #dropArea input[type="file"] {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    font-size: 0;
    border: 0;
    opacity: 0;
    z-index: 1;
}
.thumbs .thumb img{
    width: 100%;
    height: 150px;
}

.thumbs .progress-bar {
  width: 73%;
  background-color: #f2f2f2;
  border-radius: 4px;
  height: 10px;
  position: absolute;
  z-index: 1;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 5px;
}

.thumbs .progress {
  background-color: #007bff;
  height: 100%;
  width: 0%;
  transition: width 0.3s ease;
}

.thumb {
    background: #f1f1f2;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}
.thumb-div{
    position: relative;
}
.thumb-div img{
    width: 100%;
    height: 150px;
}
.thumb.loading img {
    filter: blur(4px);
}
.del-thumb:after {
    content: "\F62A";
    position: absolute;
    font-family: "bootstrap-icons";
    font-size: 22px;
}
.contcheck {
display: inline-block;
position: relative;
cursor: pointer;
font-size: 22px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
width: 25px;
aspect-ratio: 2 / 2;
border-radius: 100%;
overflow: hidden;
}
.contcheck input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}

.contcheck .checkmark {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: black;
display: flex;
align-items: center;
justify-content: center;
}

.contcheck:hover input ~ .checkmark {
background-color: salmon;
}

.contcheck input:checked ~ .checkmark {
background-color: #0080ff;
}

.contcheck .checkmark:after {
content: "\F417";
position: absolute;
font-family: "bootstrap-icons";
text-align: center;
font-size: 12px;
}

.contcheck input:checked ~ .checkmark:after {
display: block;
content: "\F415";
font-family: "bootstrap-icons";
color: #fff;
text-align: center;
}
.blur {
filter: blur(4px);
}

.thb-act-div {
    margin-bottom:5px;
}

.thb-act button {
    width: 25px;
    aspect-ratio: 2 / 2;
    border-radius: 25px;
    border: none;
    background: #dc3545;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* RESİM EKLEME TASARIM ALANI */

.advertisingSkillsBox .featuresTitle{
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.advertisingDetailTabs .nav-link{
    color: #10466c;
    background-color: #f0f0f0;
    border-color: #c0c0c0;
    font-size: 14px;
    font-weight: bold;
}

.advertisingDetailTabs .nav-link.active{
    background-color: #f00001;
    color: #fff;
}

.advertisingDetailTabs .nav-item{
    margin-right: 10px;
}

#descriptionTabContent .advertisingDecsription{
    color: #000 !important;
}

.customTitle{
    font-size: 14px !important;
    font-weight: bold !important;
    color: #000;
}

.advertising-item{
    border: 1px solid #e6e6e6 !important;
}

.customLine{
    width: 100%;
    height: 5px;
    border: 3px solid #e6e6e6;
    border-radius: 5px;
}

.advertisingDetailBottomText {
    font-size: 12px !important;
    color: #000 !important;
}

.advertisingDetailBreadcrumb a,.advertisingDetailBreadcrumb i {
    color: #039 !important;
    font-size: 12px !important;
}

.homepageLeftCategories .mainCategory{
    padding-left: 0px !important;
}
.homepageLeftCategories ul{
    list-style: none !important;
}

.homepageLeftCategories ul .leftCategory {
    font-weight: bold;
    line-height: 28px;
    color: #039;
    text-decoration: none;
    outline: 0;
    font-size: 13px;
}

.homepageLeftCategories ul li a , .homepageLeftCategories ul li{
    font-weight: bold !important;
    line-height: 28px !important;
    color: #039 !important;
    text-decoration: none !important;
    outline: 0 !important;
    font-size: 13px !important;
}

.homepageLeftCategories ul .leftSubCategory li, .homepageLeftCategories ul .leftSubCategory a{
    font-weight: normal !important;
}

.homepageLeftCategories ul .leftSubCategory .subcategory-item{
    font-weight: normal !important;
    cursor:pointer !important;
}

.homepageLeftCategories ul li a:hover{
    color:#b4c8ef !important;
}

.categoryBox{
    padding: 1rem;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
}

#searchPage .categoryBox{
    min-height: 348px !important;
}

.categoryBox .categoryText{
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.categoryBox .categoryText .categoryTitle{
    display: inline-block;
    margin-top: 10px;
    width: 150px;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size:13px;
    color: #039;
}

.categoryBox .categoryText .categoryCount{
    display: inline-block;
    width: 150px;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 16px;
    font-weight: bold;
    color: #039;
}

.categoryBox .categoryImg img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.homepageAdvertising .advertising-item .advertising-img{
    min-height: 120px !important;
    max-height: 120px !important;
}
.gutterLowRow{
    --bs-gutter-x: 0.5rem !important;
    --bs-gutter-y: 0.5rem !important;
}
.homepageAdvertising .advertising-item .advertisingTitle{
    font-size:13px !important;
}

.titleLeftBox{
    padding: 5px 5px 5px 10px;
    border: 2px solid #e6e6e6;
    border-left: none;
    border-right: none;
    width: 100%;
}



.titleRightBox{
    padding: 1rem;
    border: 2px solid #e6e6e6;
    border-right: none;
    border-left: none;
}

.shareBtn{
    background: #e9eff5;
    padding: 12px 15px;
    border-radius: 50%;
    font-size: 26px;
    cursor:pointer;
}
.shareBtn:hover{
    color:#0033996b;
}

.skillsFeaturesBox{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    align-content: flex-end;
    flex-direction: row;
}

.detailTopRightBox{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.advertisingsSkillsBox hr{
    margin:0.2rem !important;
}

.boldTitle{
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin: 0 0 25px;
}

.hide{
    display: none !important;
}

.safetyTypeDiv{
    border: 1px solid #ccc;
    height: auto;
    border-radius: 3px;
    background-color: #fff;
    padding: 1rem;
}

.safetyTypeDiv p{
    padding: 0 0 8px 0;
    font-size: 11px;
    line-height: 13px;
}

.sellerBox span{
    font-size:12px;
    font-weight: bold;
    color: #039;
}

.safetyTypeDiv .advertisingProfile{
    font-size: 11px;
    font-weight: normal;
    color: #039;
}

.safetyTypeDiv .advertisingProfile:hover{
    color: #b4c8ef !important;
}

.advertisingPage .detailImgList{
    border: 2px solid #e6e6e6;
    padding: 2px;
}

.footerFollowUs{
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.footerFollowBtn{
    color: #fff;
    border-color: #fff;
}

.footerFollowBtn:hover{
    color: #fff;
    background-color: #fff;
}

.footerBoxBg{
    color: #fff !important;
    background-color: #223445 !important
}

.advertisingsList img{
    width: 124px;
    height: 93px;
    object-fit: contain;
}
.advertisingsList .clickable-row{
    cursor: pointer;
    display: table-row;
}
.advertisingsList .clickable-row .advertisingTitle{
    text-align: left !important;
}
.advertisingsList .clickable-row td{
    color: #000;
    font-size: 14px !important;
    vertical-align: middle;
    text-align: center;
}
.advertisingsList .clickable-row:hover td{
    color: #039 !important;
}

.adListLeftMenu, .adListLeftMenu ul{
    list-style: none;
    padding-left: 1rem;
}
.adListLeftMenu li , .adListLeftMenu ul li {
    padding: 2px 0;
}
.adListLeftMenu li a, .adListLeftMenu ul li a{
    color: #038;
    font-size: 13px;
    font-weight: inherit;
    display: inherit;
}
.adsCategoryLeftMenuBox{
    padding: 10px 10px;
    border: 1px solid #e6e6e6;
    border-radius: 3px;
}
.adsCategoryLeftMenuBox.listDetail{
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    overflow-y: scroll;
}

.searchInBox{
    color: #000;
    background-color: #e6e6e68c;
    padding:1rem;
    margin-bottom: 3px;
}

.advertisingsTable th{
    text-align: center;
}

.profileLeftMenuBox{
    border: 4px solid #e6e6e6;
    padding: 1rem;
}

.profileLeftMenuBox a.active{
    color: #038;
    font-weight: bold;
}

.profileDetailRightBox{
    padding: 1rem;
}

.form-control{
    color:#000!important;
    border-radius: 0;
    width: 100%;
    line-height: normal;
    -webkit-appearance: none;
}


.select2.select2-container {
    width: 100% !important;
  }

  .select2.select2-container .select2-selection {
    border: 1px solid #ccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    height: 34px;
    margin-bottom: 15px;
    outline: none !important;
    transition: all .15s ease-in-out;
  }

  .select2.select2-container .select2-selection .select2-selection__rendered {
    color: #333;
    line-height: 32px;
    padding-right: 33px;
  }

  .select2.select2-container .select2-selection .select2-selection__arrow {
    background: #f8f8f8;
    border-left: 1px solid #ccc;
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    height: 32px;
    width: 33px;
  }

  .select2.select2-container.select2-container--open .select2-selection.select2-selection--single {
    background: #f8f8f8;
  }

  .select2.select2-container.select2-container--open .select2-selection.select2-selection--single .select2-selection__arrow {
    -webkit-border-radius: 0 3px 0 0;
    -moz-border-radius: 0 3px 0 0;
    border-radius: 0 3px 0 0;
  }

  .select2.select2-container.select2-container--open .select2-selection.select2-selection--multiple {
    border: 1px solid #34495e;
  }

  .select2.select2-container .select2-selection--multiple {
    height: auto;
    min-height: 34px;
  }

  .select2.select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
    margin-top: 0;
    height: 32px;
  }

  .select2.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: block;
    padding: 0 4px;
    line-height: 29px;
  }

  .select2.select2-container .select2-selection--multiple .select2-selection__choice {
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin: 4px 4px 0 0;
    padding: 0 6px 0 22px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    position: relative;
  }

  .select2.select2-container .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    margin: 0;
    text-align: center;
    color: #e74c3c;
    font-weight: bold;
    font-size: 16px;
  }

  .select2-container .select2-dropdown {
    background: transparent;
    border: none;
    margin-top: -15px;
  }

  .select2-container .select2-dropdown .select2-search {
    padding: 0;
  }

  .select2-container .select2-dropdown .select2-search input {
    outline: none !important;
    border: 1px solid #34495e !important;
    border-bottom: none !important;
    padding: 4px 6px !important;
  }

  .select2-container .select2-dropdown .select2-results {
    padding: 0;
  }

  .select2-container .select2-dropdown .select2-results ul {
    background: #fff;
    border: 1px solid #34495e;
  }

  .select2-container .select2-dropdown .select2-results ul .select2-results__option--highlighted[aria-selected] {
    background-color: #3498db;
  }

  .form-select, .form-select option{
    border-radius: 0px !important;
  }

    .form-select option {
        border-radius: 0; /* Seçeneklerin köşe yuvarlatmalarını kaldırır */
    }

    .btn-red{
        background-color: rgba(182, 9, 9, 0.692) !important;
        border-color: rgba(182, 9, 9, 0.692) !important;
    }
    .btn-red:hover{
        border-color: rgba(182, 9, 9, 0.692) !important;
    }

    .packet_box_top{
        margin-bottom: 2rem;
    }
    .packet_box{
        border: 2px solid #e6e6e6;
        text-align: center;
        margin-right: 0px;
        margin-left: 0px;
        border-radius: 6px;
        height: auto;
        min-height: 320px;
        max-height: 320px;
    }

    .packet_box .packet_title{
        padding: 1rem;
        background-color: #e6e6e6;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .packet_box .packet_title .packet_price{
        color:#038;
        font-weight: 600;
    }
    .packet_box .packet_title h2{
        color: #038 !important;
        font-size: 1.5em !important;
    }
    .packet_box .packet_contents{
        padding: 1rem;
    }
    .packet_box .packet_contents span {
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 600;
    }
    .packet_box .packet_contents span i{
        color: #038;
        font-size: 12px;
        margin-right: 3px;
    }
    .packet_box .packet_buy button{
        width: 80%;
    }


    .advertisingCreate #progressbar {
        margin-bottom: 30px;
        overflow: hidden;
        color: lightgrey
    }

    .advertisingCreate #progressbar .active {
        color: #038;
    }

    .advertisingCreate #progressbar li {
        list-style-type: none;
        font-size: 15px;
        width: 25%;
        float: left;
        position: relative;
        font-weight: 400
    }

    .advertisingCreate #progressbar #categoryTab:before {
        font-family: FontAwesome;
        content: "\f0c9";
        text-align:center;
    }

    .advertisingCreate #progressbar #advertisingTab:before {
        font-family: FontAwesome;
        content: "\f05a";
        text-align:center;
    }

    .advertisingCreate #progressbar #dopingTab:before {
        font-family: FontAwesome;
        content: "\f135";
        text-align:center;
    }

    .advertisingCreate #progressbar #confirmTab:before {
        font-family: FontAwesome;
        content: "\f058";
        text-align:center;
    }

    .advertisingCreate #progressbar li:before {
        width: 50px;
        height: 50px;
        line-height: 45px;
        display: block;
        font-size: 20px;
        color: #ffffff;
        background: lightgray;
        border-radius: 50%;
        margin: 0 auto 10px auto;
        padding: 2px
    }
    .advertisingCreate #progressbar li strong {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
    }

    .advertisingCreate #progressbar li:after {
        content: '';
        width: 100%;
        height: 2px;
        background: lightgray;
        position: absolute;
        left: 0;
        top: 25px;
        z-index: -1
    }

    .advertisingCreate #progressbar li.active:before,
    .advertisingCreate #progressbar li.active:after {
        background: #038;
    }

    .advertisingCreate .dopingTitle{
        font-size: 14px;
        font-weight: 600;
    }

    .advertisingCreate .dopingContents{
        font-size: 12px;

    }
    .advertisingCreate .confirmTabDetail .text{
        font-size: 16px;
        font-weight: 600;
    }
    .advertisingCreate .confirmTabDetail .text i{
        font-size: 16px;
        font-weight: 600;
        color: green;
    }



    .confirmMessageDiv span i{
        font-size: 50px !important;
    }

    .confirmMessageDiv span{
        color: green;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;
        margin-bottom: 10px;
        font-size: 16px;
    }

    .dopingsBuy #progressbar #cartTab:before {
        font-family: FontAwesome;
        content: "\f07a";
        text-align:center;
    }
    .dopingsBuy #progressbar #paymentTab:before {
        font-family: FontAwesome;
        content: "\f09d";
        text-align:center;
    }
    .dopingsBuy #progressbar #checkTab:before {
        font-family: FontAwesome;
        content: "\f058";
        text-align:center;
    }

    .dopingsBuy #progressbar {
        margin-bottom: 30px;
        overflow: hidden;
        color: lightgrey
    }

    .dopingsBuy #progressbar .active {
        color: #038;
    }

    .dopingsBuy #progressbar li {
        list-style-type: none;
        font-size: 15px;
        width: 33.3%;
        float: left;
        position: relative;
        font-weight: 400
    }

    .dopingsBuy #progressbar li:before {
        width: 50px;
        height: 50px;
        line-height: 45px;
        display: block;
        font-size: 20px;
        color: #ffffff;
        background: lightgray;
        border-radius: 50%;
        margin: 0 auto 10px auto;
        padding: 2px
    }
    .dopingsBuy #progressbar li strong {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
    }

    .dopingsBuy #progressbar li:after {
        content: '';
        width: 100%;
        height: 2px;
        background: lightgray;
        position: absolute;
        left: 0;
        top: 25px;
        z-index: -1
    }

    .dopingsBuy #progressbar li.active:before,
    .dopingsBuy #progressbar li.active:after {
        background: #038;
    }

    .dopingsBuy .dopingTitle{
        font-size: 14px;
        font-weight: 600;
    }

    .dopingsBuy .dopingContents{
        font-size: 12px;

    }
    .dopingsBuy .confirmTabDetail .text{
        font-size: 16px;
        font-weight: 600;
    }
    .dopingsBuy .confirmTabDetail .text i{
        font-size: 16px;
        font-weight: 600;
        color: green;
    }


    .cartProductsCard {
        border: 2px solid #e6e6e6;
        height: auto;
        padding: 1rem;
    }

    .dopingsProductDelete{
        color:rgba(182, 9, 9, 0.692) !important;
    }

    .footer-title{
        font-size: 16px;
        font-weight: bold;
        color: #fff;
    }

    .footer-content{
        color: #fff;
        font-size: 14px;
    }

    .siteSupportBox{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .siteSupportBox .supportIcon{
        border: 2px solid #ff0000;
        border-radius: 50%;
        padding: 10px;
        background: #ff0000;
        color: white;
        margin-right: 10px;
        font-size: 20px;
    }

    .siteSupportBox .supportText{
        font-size: 13px;
        font-weight: 600;
    }

    .color-red{
        color:#ff0000 !important;
    }

    .siteFooterWarning {
        font-size: 11px;
        color: #888;
        padding: 12px;
        background: #fff;
        border: 1px dashed #ccc;
        border-radius: 2px;
    }

    .detailPage .pagesLeftMenu{
        padding: 2rem !important;
        background-color: #3f4660;
        color: white !important;
    }
    .detailPage .pagesLeftMenu h6{
        color: white !important;
    }
    .detailPage .pagesLeftMenu a{
        color: white !important;
        font-size: 13px;
    }
    .detailPage .pagesLeftMenu .pageList{
        color: white !important;
        font-size: 13px;
        width: 100%;
        padding: 15px;
    }
    .detailPage .pagesLeftMenu .pageList:hover,.detailPage .pagesLeftMenu .pageList.active{
        color: white !important;
        background-color: #363c52;
        font-size: 13px;
        width: 100%;
        padding: 15px;
    }

    .detailPage .pagesDetailBox{
        background-color: #e6e6e6;
        padding: 1.4rem;
    }
    .detailPage .pagesDetailBox .pageDetailTitle{
        font-size: 24px;
    }
    .detailPage .pagesDetailBox p img{
        max-width: 100% !important;
    }

    .bg-red{
        background-color:#f00001 !important;
        color: white !important;
    }
    .bg-red span, .bg-red a{
        color: white !important;
    }

    .storeCreateInfo{
        padding: 1rem;
        display: flex;
        align-content: center;
        border: 3px solid #f0000e;
        font-size: 13px;
        color: #f0000e;
        align-items: center;
        justify-content: flex-start;
        font-weight: 600;
    }
    .storeCreateInfo i{
        font-size: 2rem;
        color: #f0000e;
        margin-right: 10px;
    }

    .swal2-container{
        z-index: 9999;
    }
    .modal{
        z-index: 1000;
    }

    .modal-backdrop{
        display: none !important;
    }

    .spinner.loading {
        padding: 50px;
        position: relative;
      }

    .spinner.loading:before {
        content: "";
        height: 100px;
        width: 100px;
        position: absolute;
        border-width: 8px;
        border-style: solid;
        border-color: #2180c0 #ccc #ccc;
        border-radius: 100%;
        animation: rotation .7s infinite linear;
    }

    @keyframes rotation {
    from {
        transform: rotate(0deg);
    } to {
        transform: rotate(359deg);
    }
    }

    .advertisingsList td {
        text-align: center;
        vertical-align: middle;
    }

    .advertisingsList td.cursor-pointer{
        cursor: pointer !important;
    }

    .storeDescription{
        font-size:12px;
    }

    .advertisingsList .clickable-row td.advertisingTitle{
        color: #039 !important;
    }
    .advertisingsList .clickable-row td.priceTd{
        color: #f00001 !important;
    }
    .advertisingsList .boldAdvertisings td{
        font-weight: bold !important;
        background-color: #e6fbd3 !important;
    }

    .table-gray{
        background-color: #f2f2f2 !important;
    }
    .fancyPictures{
        padding: 1px;
        background: #ddd;
        color: #038;
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
    }
    .cursor-pointer{
        cursor:pointer !important;
    }

    .categoriesListText ul{
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 0px;
        padding-left: 0px;
    }
    .categoriesListText ul li{
        margin-left: 5px;
        color:#038;

    }
    .radiusIcon{
        font-size: 18px;
        border-radius: 50%;
        background-color: #e6e6e6;
        color: #000;
        padding: 12px;
    }
    .red-text{
        color: #f00001 !important;
    }

    .searchTitle{
        font-size: 18px;
        font-weight: normal;
        padding: 10px;
        color: #000;
    }

    ul.categoryDownList{
        list-style: none !important;
        padding-left: 0px !important;
    }
    ul.categoryDownList li{
        margin-top: 5px;
        font-size:12px !important;
        color: #039 !important;
    }

    .btn-themeblue{
        background-color: #038;
        border-color: #038;
        color: #fff;
    }

    .requiredLabel{
        color: #f00001 !important;
        font-weight: 600;
    }

    .advertisingPage .safetyTypeDiv .defaultBtn{
        font-weight: 400;
        font-size: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 30px;
    }

    .homepageBoldTitle h4{
        font-weight: 500;
        font-size: 22px;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #4d4d4d;
    }

    .navbar-toggler{
        color: #fff !important;
        border: 1px solid #fff !important;
    }

    .categoryTopBox{
        background: rgba(253, 205, 37,1);
        background: linear-gradient(90deg, rgba(207, 144, 85,1) 0%, rgba(252,210,72,1) 100%);
        padding: 1rem;
        width: 100%;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
    }

    .messageAdvertising{
        padding: 1rem;
        border: 1px solid #e6e6e6;
    }

    .messageAdvertising img{
        width: 100%;
        height: 120px;
        max-width: 100% !important;
        object-fit: cover !important;
        object-position: center;
    }
    .messageAdvertising span.advertisingTitle{
        color: #038;

    }
    .messageAdvertising span.advertisingCity{
        color: #999;
        font-size: 14px;
    }
    .messageAdvertising span.advertisingPrice{
        font-weight: bold;
        font-size: 12px;
        color: #f00001;
    }

    .messsagesUser{
        padding: 7px;
        border-bottom: 1px solid #e6e6e6;
    }

    .messsagesUser .userName{
        font-size: 16px;
        line-height: 18px;
        color: #333;
        font-weight: bold;
    }
    .messsagesUser .userPhone{
        border-radius: 8px;
        text-align: center;
        font-size: 11px;
        line-height: 15px;
        color: #fff;
        font-weight: bold;
        background-color: #8796a3;
        padding: 5px 5px 5px 5px;
        margin-left: 5px;
    }
    .messsagesUser .userWarning{
        font-size: 14px;
        line-height: 18px;
        color: #333;
    }

    .messagesListDiv{
        overflow-y: auto; /* Dikey kaydırma çubuğu ekler */
        box-sizing: border-box;
        min-height: 250px;
        max-height: 250px;
        width: 100%;
        padding: 1rem;
        background-color: #e6e6e6;
    }

    .messagesListDiv .rightMessage{
        text-align: right;
    }

    .messagesListDiv .rightMessage p{
        display: inline-block;
        background-color: #dcf6c5;
        color: #000;
        padding: 10px;
        font-size:16px;
        border-radius: 5px;
    }

    .messagesListDiv .rightMessage .messageDate{
        font-size:12px;
        color:#adc19b;
    }

    .messagesListDiv .leftMessage p{
        display: inline-block;
        background-color: #fff;
        color: #000;
        padding: 10px;
        font-size:16px;
        border-radius: 5px;
    }

    .messagesListDiv .leftMessage .messageDate{
        font-size:12px;
        color:#b6b6b6;
    }

    #sendMessage input.form-control{
        padding: 10px;
        margin-top: 2px;
    }

    .table-options{
        display: flex;
        flex-direction: column;
    }

    .table-options a{
        font-size: 12px;
    }

    .advertisingDetailPicture img{
        width: 100%;
        height: 40px;
    }

    .leftCenterDiv{
        display: flex;
        align-content: center;
        justify-content: flex-start;
        align-items: center;
    }

    .btn-sm{
        padding: .25rem .5rem !important;
        font-size: 0.875rem !important;
        width: 120px !important;
    }

    .profileLogoutBtn{
        width: 40px !important;
    }

    .homepageMinTitle a{
        color: #038;
        font-size: 12px;
        float: right;
    }

    .advertising .advertising-item .homepage-advertisings.advertising-img img {
        transition: 0.5s;
        width: 100%;
        height: 100%;
        object-fit: contain;
        min-height: 120px !important;
        max-height: 120px !important;
    }

    .iti__dropdown-content{
        z-index:999 !important;
    }

    .deleteBtn{
        height: 30px;
        margin-top: 6px;
        padding: 0px 10px;
    }

    .table-icons a{
        margin-left: 10px;
    }

    .alert.alert-danger td{
        color: #1a3257d9;
        font-weight: 600;
    }

@media (max-width: 1200px) {
    .navbar .form-search{
        width: 350px;
    }
}


@media (max-width: 991px) {
    a.defaultBtn{
        font-size: 14px;
    }

    .navbar-collapse{
        padding: 1rem;
        background: #f00001;
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
        justify-content: center;
    }
    .navbar-nav{
        width: 100%;
        align-items: flex-start;
    }

    .searchDiv {
        width: 100%;
    }

    .navbar .searchButton{
        left: 332px;
    }
}

@media (max-width: 550px) {
    .dopingsBuy #progressbar li strong{
        font-size: 10px;
    }
    .advertisingCreate #progressbar li strong{
        font-size: 10px;
    }
}
@media (max-width: 450px) {
    .navbar .form-search{
        width: 200px;
    }
    .navbar .searchButton{
        left: 206px;
    }


}



@media (max-width: 400px) {
    .advertisingCreate #progressbar li strong{
        font-size: 8px;
    }
    .dopingsBuy #progressbar li strong{
        font-size: 8px;
    }
}



@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

