@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
a.cmp-btn.btn.preview_btn {
    margin-left: 5px;
}
ul.okt-brd li.active{
    font-size: 12px;
    line-height: 16px;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: var( --e-global-color-primary );
    border-radius: 8px 8px 8px 8px;
    padding: 8px 20px 8px 20px;
}
ul.okt-brd li.active a{
    color: #FFFFFF !important;
}
ul.okt-brd li {
    font-size: 12px;
    line-height: 16px;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: #e5e5e5;
    border-radius: 8px 8px 8px 8px;
    padding: 8px 20px 8px 20px;
    margin-right: 5px;
}
ul.okt-brd li.active:before {
    /* content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 12px solid #f89217;
    border-bottom: 12px solid transparent;
    border-left: 12px solid transparent;
    position: absolute;
    border-right: 12px solid transparent;
    top: 33px;
    left: 41.1%; */
}

/* Popup */
.popup{
    background-color: #ffffff;
    width: 420px;
    padding: 23px 40px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    /* top: -70px; */
    border-radius: 8px;
    font-family: "Poppins",sans-serif;
    display: none;
    text-align: center;
    box-shadow: 1px 1px 1px 2px #f89217;
}
.popup button{
    /* display: none; */
    text-align: center !IMPORTANT;
    color: #ffffff;
    background: #f89217;
    border-radius: 100% !important;
    width: 35px !important;
    height: 35px !important;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0 !important;
    float: right;
}
.popup button:focus{
    outline: none;
}
button#close:after {
    content: "X";
    position: absolute;
    font-size: 15px;
    color: #fff;
    margin-left: -5px;
    top: 29px;
}
.popup h2{
  /* margin-top: -20px; */
}
.popup p{
    font-size: 14px;
    text-align: center;
    margin: 20px 0;
    line-height: 25px;
}
.popup.charity-popup a.cmp-btn.btn {
    margin: 0 2.5px;
    text-decoration: none;
    text-transform: capitalize;
}

.buttonreject {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
}

.buttonreject button[type="button"] {
    line-height: 0px;
}
/* End Poup */

/* Image Gallery */

.wrapper {
    display: flex;
    /* flex-direction: row; */
    /* flex-wrap: wrap; */
    overflow-x: scroll;
    align-items: center;
    justify-content: center;
  }
  
  h1 {
    font-family: inherit;
    margin: 0 0 0.75em 0;
    color: #728c8d;
    text-align: center;
  }
  
  .box {
    display: block;
    min-width: 200px;
    height: 200px;
    margin: 10px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
  }
  
  .upload-options {
    position: relative;
    height: 90px;
    background-color: cadetblue;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
    transition: background-color ease-in-out 150ms;
  }
  .upload-options:hover {
    background-color: #7fb1b3;
  }
  .upload-options input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
  }
  .upload-options label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
  }
  .upload-options label::after {
    content: "add";
    font-family: "Material Icons";
    position: absolute;
    font-size: 2.5rem;
    color: #e6e6e6;
    top: calc(50% - 2.5rem);
    left: calc(50% - 1.25rem);
    z-index: 0;
  }
  .upload-options label span {
    display: inline-block;
    width: 50%;
    height: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: middle;
    text-align: center;
  }
  .upload-options label span:hover i.material-icons {
    color: lightgray;
  }
  
  .js--image-preview {
    height: 150px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-image: url("");
    background-color: white;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .js--image-preview::after {
    content: "photo_size_select_actual";
    font-family: "Material Icons";
    position: relative;
    font-size: 4.5em;
    color: #e6e6e6;
    top: calc(50% - 3rem);
    left: calc(50% - 2.25rem);
    z-index: 0;
  }
  .js--image-preview.js--no-default::after {
    display: none;
  }
  .js--image-preview:nth-child(2) {
    background-image: url("http://bastianandre.at/giphy.gif");
  }
  
  i.material-icons {
    transition: color 100ms ease-in-out;
    font-size: 2.25em;
    line-height: 55px;
    color: white;
    display: block;
  }
  
  .drop {
    display: block;
    position: absolute;
    background: rgba(95, 158, 160, 0.2);
    border-radius: 100%;
    transform: scale(0);
  }
  
  .animate {
    -webkit-animation: ripple 0.4s linear;
            animation: ripple 0.4s linear;
  }
  
  @-webkit-keyframes ripple {
    100% {
      opacity: 0;
      transform: scale(2.5);
    }
  }
  
  @keyframes ripple {
    100% {
      opacity: 0;
      transform: scale(2.5);
    }
  }
/* End Gallery */

.orange-button-popup {
  color: #fff !important;
  background-color: #f89217 !important;
  border-color: #f89217 !important;
}

span.right-id {
    float: right;
    font-size: 13px;
}

body {
  font-family: sans-serif;
}
a {
  color: #369;
}
.note {
  width: 500px;
  margin: 50px auto;
  font-size: 1.1em;
  color: #333;
  text-align: justify;
}
#drop-area {
  border: 2px dashed #ccc;
  border-radius: 20px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}
#drop-area.highlight {
  border-color: purple;
}
p {
  margin-top: 0;
}
.my-form {
  margin-bottom: 10px;
}
#gallery {
  margin-top: 10px;
}
#gallery img {
  width: 170px;
  margin-bottom: 10px;
  margin-right: 10px;
  vertical-align: middle;
}
.button {
  display: inline-block;
  padding: 10px;
  background: #ccc;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.button:hover {
  background: #ddd;
}
#gallery_images {
  display: none;
}
.nir_file_button{
  background: #f89217;
    color: #fff !important;
    border: #f89217;
}
.nir_file_button:hover{
  background: #c7720b;
  color: #fff;
}
progress#progress-bar {

  opacity: 0;
}

.col-md-6 button.btn.btn-okt-primary{
position: relative;
/* top: -48px;
right: -160px; */
}

.form-group.radio-item label {
  padding: 0px 9px;
}

input[type="radio"]:checked, .impact_area input[type="checkbox"] {
    background-color: #ff6d12 !important;
    accent-color: #e9620e;
}

div#gallery {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-content: stretch;
  justify-content: flex-end;
}

/* a#image_remove {
  float: left;
  top: 91px;
  position: absolute;
  left: 241px;
  background: transparent;
  box-shadow: none;
  border-radius: 50px;
  padding: 0px 9px;
  color: red;
  font-size: 31px;
  margin-left: -40px;
  border: 1px solid red;
} */



.remove_img_div a {

  position: absolute;
  padding: 0px 20px;
  right: 0;
}
.remove_img_div {

  display: block;
  position: relative;
}




.vodiapicker{
  display: none; 
}

#a{
  padding-left: 0px;
}

#a img, .btn-select img{
  width: 12px;
  
}

#a li{
  list-style: none;
  padding-top: 5px;
  padding-bottom: 5px;
}

#a li:hover{
 background-color: #F4F3F3;
}

#a li img{
  margin: 5px;
}

#a li span, .btn-select li span{
  margin-left: 30px;
}

/* item list */

.b{
  display: none;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 6px 12px rgba(0,0,0,.175);
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 5px;
  
}

.open{
  display: show !important;
}

.btn-select{
  margin-top: 10px;
  width: 100%;
  max-width: 350px;
  height: 34px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #ccc;
 
}
.btn-select li{
  list-style: none;
  float: left;
  padding-bottom: 0px;
}

.btn-select:hover li{
  margin-left: 0px;
}

.btn-select:hover{
  background-color: #F4F3F3;
  border: 1px solid transparent;
  box-shadow: inset 0 0px 0px 1px #ccc;
  
  
}

.btn-select:focus{
   outline:none;
}

.lang-select{
  margin-left: 50px;
}


.CheckboxInput {

  border:
1px

solid #000;
  margin-top:
30px

;
  overflow-y: scroll;
  overflow-x: hidden;
  padding:
0px

;
  height:
200px

;
  display: flex;
}


/* nav {
  margin: 25px;
  background: #f9f9f9;
  padding: 16px;
} */
nav .menuItems {
  list-style: none;
  display: flex;
}
nav .menuItems li {
  margin: 30px;
  margin-top: 0px;
}
nav .menuItems li a {
  text-decoration: none;
  color: #8f8f8f;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.5s ease-in-out;
  position: relative;
  text-transform: uppercase;
}
nav .menuItems li a::before {
  
  color: #ff6d12;
  
}
nav .menuItems li a:hover::before {
  width: 100%;
  transition: all 0.5s ease-in-out;
  color: #ff6d12;
}

.impact_area_box {
  overflow: scroll;
  height: 400px;
}

label.form-check-label {
  /* line-height: 1px; */
  margin-top: 6px;
 display: flex !important;
}

input.religious-check-input {
  height: 12px;
}

label.religious-check-label {
  padding-left: 10px;
}

.search_button {
  background: #f89217;
  line-height: 0;
  border-radius: 5px;
  font-size: 14px;
  width: 100%;
  margin-top: 15px;
  border: 0;
  color: #fff;
  padding: 20px 10px;
}

#submit-btn input[type="submit"]{
  position: absolute;
  top: -38px;
  left: 104%;
}

input[type="submit"] {
  line-height: 4px !important;
}
.popup_view {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #f89217;
}

/* The actual popup */
.popup_view .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup_view .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup_view .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}

.center {
  margin: auto;
  /* width: 60%; */
  padding: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.hideform {
  display: none;
}

img.preview.avatar.img-circle.img-thumbnail {
  border-radius: 50%;
  width: 120px;
  height: 120px;
}

.avatar-img {
  margin-top: -31px;
 
}

.social_right {
    float: right;
    margin-top: -48px;
    z-index: 1;
    position: relative;
}

/* .text-center.profil-pic {
  float: left;
} */

.campaign-details p {
  font-size: 16px;
  line-height: 30px;
  margin: 15px 0px;
  margin-top: 123px !important;
}

/* CSS styles for My Account button and form */
.my-account {
  display: flex;
  flex-direction: column;
  align-items: center;
  
}
.my-account-button {
  border: none;
  background-color: #f89217;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
  width: 100px;
}
.my-account-button:hover {
  background-color: #f89217;
}
.my-account-form {
  display: none;
  margin: 0 auto;
  max-width: 400px;
  padding: 20px;
  background-color: #f2f2f2;
  border-radius: 4px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: height 0.3s ease;
}
.my-account-form input[type="text"],
.my-account-form input[type="password"] {
  width: 100%;
  padding: 10px;
  margin: 5px 0 15px 0;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2);
}
.my-account-form input[type="submit"] {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}
.my-account-form input[type="submit"]:hover {
  background-color: #3e8e41;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


.popup_return {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 9999;
  display: none;
}
.popup_return textarea {
  width: 100%;
  height: 100px;
}
.popup_contact_details {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 9999;
  display: none;
}
/* .worktype_redio {
  display: inline-block;
  margin-right: 10px;
} */

fieldset {
  overflow: hidden
}

.some-class {
  float: left;
  clear: none;
  display: flex;
}

.worktype_redio {
  float: left;
  clear: none;
  display: block;
  padding: 0px 1em 0px 8px;
}

input[type=radio],
input.radio {
  float: left;
  clear: none;
  margin: 2px 0 0 2px;
  width: 50% !important;
}
label.worktype_redio {
  text-align: center;
  display: flex;
  width: 200px;
  align-items: center;
}

button#vo {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 16px;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: #f89217;
  border-radius: 8px 8px 8px 8px;
  padding: 10px 24px;
}

button.cmp-btn.btn {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 16px;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: #f89217;
  border-radius: 8px 8px 8px 8px;
  padding: 10px 24px;
}
.elementor-element-26e5ae2{
  display: none;
}

 /* styles for the form container */
 .form-container {
  width: 400px;
  height: 400px; /* set the height of the form */
  overflow-y: scroll; /* add a scrollbar to the form */
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

/* styles for the form heading */
.form-heading {
  font-size: 24px;
  margin-bottom: 24px;
}

/* styles for the form fields */
label {
  display: block;
  margin-bottom: 8px;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 16px;
}

select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 16px;
}

/* styles for the form buttons */
.form-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

input[type="submit"],
input[type="reset"] {
  background-color: #4CAF50;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

input[type="submit"]:hover,
input[type="reset"]:hover {
  background-color: #3e8e41;
}

.product-gallery {
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
  margin-top: 10px;
}

.product-gallery .gallery-item {
	display: inline-block;
	margin-right: 10px;
}

.product-gallery .gallery-item:last-child {
	margin-right: 0;
}

.product-gallery .gallery-item img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

@media screen and (max-width: 767px) {
	.product-gallery {
		overflow-x: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	
	.product-gallery::-webkit-scrollbar {
		display: none;
	}
}

.gallery-item {
  width: 185px;
}

.container {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	/*text-align: center;*/
	background-color: #f2f2f2;
}

.term_h1 {
	font-size: 36px;
	color: #333;
}

.scroll-box {
	max-height: 200px;
	overflow-y: scroll;
	margin: 20px 0;
	padding: 10px;
	border: 1px solid #ccc;
	background-color: #fff;
}

.term_p {
	font-size: 16px;
	color: #666;
}

input[type="checkbox"] {
	margin-right: 10px;
}

label {
	font-size: 16px;
	color: #333;
}
.supporter_gender{
  display: flex;
}
.thumb-imgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-container {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease;
}

.slider-item {
  flex: 0 0 calc(100% / 4);
  padding: 10px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  font-size: 30px;
  padding: 10px;
}

.slider-arrow-prev {
  left: 0;
}

.slider-arrow-next {
  right: 0;
}

input#term {
  appearance: auto !important;
}

.form-check-input[type=radio] {
  height: 48px;
}



.elementor-7867 .elementor-element.elementor-element-1016663 .elementor-icon-list-item:nth-child(1) a span {

 color: #f89217;

}



.elementor-7872 .elementor-element.elementor-element-7e443be .elementor-icon-list-item:nth-child(2) a span {

 color: #f89217;

}



.elementor-7877 .elementor-element.elementor-element-e684655 .elementor-icon-list-item:nth-child(3) a span {

 color: #f89217;

}

button#volunteer_start_aid {
  font-size: 15px !important;
}
button#mark_as_complete {
  display: none;
}

span#select2-state-container {
    color: #000 !important;
}

.parent-pageid-7007 img.preview.avatar.img-circle.img-thumbnail {
    border-radius: 50%;
    width: auto;
}

.page-id-5750 li.elementor-icon-list-item:nth-child(1) a>span, .page-id-7007 li.elementor-icon-list-item:nth-child(2) a>span, .page-id-7839 li.elementor-icon-list-item:nth-child(3) a>span, .page-id-13861 li.elementor-icon-list-item:nth-child(4) a>span, .page-id-7897 li.elementor-icon-list-item:nth-child(5) a>span, .page-id-8452 li.elementor-icon-list-item:nth-child(6) a>span, .page-id-12091 li.elementor-icon-list-item:nth-child(7) a>span, .page-id-10899 li.elementor-icon-list-item:nth-child(8) a>span, .page-id-7060 li.elementor-icon-list-item:nth-child(9) a>span, .page-id-7081 li.elementor-icon-list-item:nth-child(10) a>span,.page-id-7287 li.elementor-icon-list-item:nth-child(11) a>span{
    color: #f89217 !important;
}
.page-id-12600 li.elementor-icon-list-item:nth-child(10) a>span, .page-id-7081.parent-pageid-5750 li.elementor-icon-list-item:nth-child(11) a>span, .page-id-7287 li.elementor-icon-list-item:nth-child(12) a>span{
    color: #f89217 !important;
}
.page-id-7081.parent-pageid-5750 li.elementor-icon-list-item:nth-child(10) a>span, .page-id-7287.parent-pageid-5750 li.elementor-icon-list-item:nth-child(11) a>span{
    color: #242938 !important;
}
.elementor-7839 .elementor-element.elementor-element-a46092f .elementor-button, .elementor-7007 .elementor-element.elementor-element-e39e413 .elementor-button, .elementor-8975 .elementor-element.elementor-element-e39e413 .elementor-button, .elementor-13861 .elementor-element.elementor-element-a46092f .elementor-button, .elementor-7897 .elementor-element.elementor-element-a46092f .elementor-button, .elementor-12091 .elementor-element.elementor-element-02bba58 .elementor-button {
    font-size: 16px !important;
    line-height: 24px !important;
    
}


.elementor-button-icon.elementor-align-icon-left {
    font-size: 10px;
}
.elementor-element-b2ca6f1 #all_approve {
    height: auto !important;
}

input#send_interest1 {
  margin-top: 18px;
  background-color: #f89217 !important;
}
input#impact_area_filter {
  background-color: #f89217;
/*   margin-top: 12px; */
  width: 20px !important;
  color: #fff;
  height: 20px;
  border: none;
}
.page-id-7007 .elementor-element-b2ca6f1 {
    padding: 30px 0;
}
#popup-close, #popup-submit, #tracking_details_submit {
    border-radius: 13px 13px 13px 13px;
    padding: 10px 40px 10px 40px;
    background: #f89217;
    color: #fff;
    border: none;
}
.popup_return textarea {
    width: 100%;
    height: 123px;
}

/*.page-id-7081 .okt-table {*/
/*        width: 800px;*/
/*        margin: 0 auto;*/
/*    }*/
    
  .popup_contact_details .form-container::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}
.popup_contact_details .form-container::-webkit-scrollbar-thumb {
    border-radius: 9px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #f89217;
}
.popup_contact_details .form-container::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}
.popup_contact_details form {
    width: 95%;
}
#details_submit, #details_cancel {
    padding: 10px 30px;
    width: 40%;
    background-color: #f89217 !important;
    border-radius: 10px;
}
#shop-track {
    width: 330px;
    margin-top: 10%;
}


#DataTables_Table_0_wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000;
    font-weight: 500;
    font-size: 12px;
}
#send_interest1, .elementor-element-b2ca6f1 #all_approve {
    width: 20px !important;
    color: #fff;
    height: 20px;
    border: none;
    background-color: #f89217;
    margin-top: -3px !important;
}
#export_button{display:none;}

.elementor-element-b2ca6f1 #all_approve:checked{
    background-color: #f89217;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #000 !important;
  font-weight: 600;
}

.img-calender {
  width: 15% !important;
}


#DataTables_Table_0_length:nth-child(1) label {
    display: flex;
}
.add-tracking-details {
    padding: 5px;
    font-size: 12px;
    line-height: 14px;
}
.add-tracking-details {
    padding: 7px !important;
    font-size: 12px;
    line-height: 14px;
    color: #FFFFFF;
    background-color: #f89217;
    border: none;
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 230px;
}
.select2-results__option[aria-selected], .select2-results__option[data-selected] {
    cursor: pointer;
    font-size: 12px;
    padding: 0px 10px;
}
.table.okt-table td {
    border: none;
    font-size: 13px !important;
    color: #242938;
}

.cmp-content h5 {
    margin: 0;
    font-size: 18px;
    line-height: 22px;
    height: 50px;
}
.cmp-content p {
    display: none;
}

.page-child img.preview.avatar.img-circle.img-thumbnail , .page-parent img.preview.avatar.img-circle.img-thumbnail {
    width: 80px;
}

a.elementor-button-link.elementor-button:hover, .cmp-btn.btn:hover, .btn.okt-nr-btn:hover {
    background-color: #2C2734 !important;
}

.ad-form-pop {
    position: absolute;
    z-index: 99;
    background-color: #ff9d00;
    margin-left: -120px;
    color: #fff;
}

.ad-form-pop .close {
    padding: 5px;
    font-size: 15px;
    line-height: 10px;
    border: 0;
    background: transparent;
    color: #fff;
}

.ad-form-pop p {
    margin-top: 0;
    line-height: 30px;
    margin-bottom: 0;
}
form#month_name {
    display: flex;
     flex-direction: row;
}
@media(max-width:767px){
    form#month_name {
    display: flex;
    flex-direction: column;
}
}
.parent-pageid-5750 #submit-btn input[type="submit"] {
    position: relative;
    top: 0px;
    left: 0;
}
.page-id-5127 li.elementor-icon-list-item:nth-child(1) a>span, .page-id-8975 li.elementor-icon-list-item:nth-child(2) a>span, .page-id-9006 li.elementor-icon-list-item:nth-child(3) a>span, .page-id-13957 li.elementor-icon-list-item:nth-child(4) a>span, .page-id-9017 li.elementor-icon-list-item:nth-child(5) a>span, .page-id-9086 li.elementor-icon-list-item:nth-child(6) a>span, .page-id-13386 li.elementor-icon-list-item:nth-child(7) a>span, .page-id-9029 li.elementor-icon-list-item:nth-child(12) a>span{
  color: #f89217 !important;
}


.page-id-7855 .radio-item .form-check-input[type=radio], .page-id-7867 .radio-item .form-check-input[type=radio], .radio-item input[type=radio] {
    height: 30px;
    width: 30px !important;
    border-radius: 50px;
    margin-right: 10px;
    background-image: none;
}

.page-id-13347 #agree {
    width: 2%;
    height: 20px;
}

.page-id-13347 .tearm_h1 {
    font-size: 20px;
    margin: 0;
    padding: 10px 0;
}

.page-id-13347 .scroll-box {
    margin-top: 0;
}

.page-id-13347 .tearm_p {
    font-size: 15px;
    line-height: 24px;
    margin-top: 10px;
    margin-bottom: 10px;
}
label[for=agree] {
    line-height: normal;
}



form.form.okt-form input[type="submit"]:hover {
    background-color: #000000 !important;
}



.page-id-9029 .form-group.gender_block {
    display: flex;
}

#p-title-single h1.product_title {
    text-align: left;
}

.page-id-7081 .okt-table {
    width: 100%;
    margin: 0 auto;
}


.single_add_to_cart_button.button.alt {
    background-color: #f89217 !important;
    font-family: Rubik !important;
    font-size: 14px;
    font-weight: 500;
}
.woocommerce div.product p.price del {
    font-size: 16px;
}

.woocommerce div.product p.stock {
    margin: 0;
}
#pp-charity .profil-pic {
     text-align: left !important;
    width: 80px;

}
#top-main-pp .elementor-widget-wrap.elementor-element-populated {
    align-content: flex-start;
}
.single-product .price {
    color: #000 !important;
}
.single-product ul.products li.product .price ins, .woocommerce div.product p.price ins {
    color: #f89217;
}

h5.appeals_title {
    height: 14px;
}

.page-template-Campagins-listing-template .img-radius, .page-template-individual-campagins-listing-template .img-radius{
    width: 15%;
    position: absolute;
    top: 10px;
    left: 30px;
     border: none; 
    border-radius: 50%;
}
#rel-tve {
    position: relative;
}
.okt-cmp-single.rdis img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.single-okt_charity_aids .campaign-details p, .single-okt_charity_events .campaign-details p{
    margin: 0 !important;
}

.donation-wizard .form-check-input {
    margin-top: 10px;
}

.charity_catg {
    background-color: #f89217;
/*     margin-top: 8px; */
    width: 20px !important;
    color: #fff;
    height: 20px;
    border: none;
}
.impact_area img {
    width: 70px;
    height: 70px;
}

#onboarding_profile_details_form #charity_catg {
    padding: 30px;
}
a.elementor-button-link.elementor-button.elementor-size-xs {
    background-color: #f89217;
    padding: 20px 20px 20px 20px;
    margin-top: 10px;
    font-size: 15px;
}

#singl-img-blog .okt-cmp-single img {
    height: auto !important;
    max-height: max-content !important;
}

.campaign-details .icon i {
    font-size: 27px;
    color: #f89217;
}

span.sub-arrow1 {
    position: absolute;
    margin-left: 94px;
}

.my-account-box {
    position: absolute;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add box shadow */
    margin: 0 10px; /* Adjust left and right margins */
    width: 107px;
    margin-left: 0px;
}
.my-account-box a {
    margin-left: 8px;
}

section.elementor-section.elementor-top-section.elementor-element.elementor-element-a053399.elementor-section-boxed.elementor-section-height-default.elementor-section-height-default {
    background: none;
}
#my-account-form {

 position: absolute;
 width: 320px;
 z-index: 111 ;

}
#my-account-button {

 padding: 10px;
 font-size: 13px !important;

}
.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
#close-button {
    top: 0;
    position: absolute;
    right: 0;
    padding: 4px;
}
span.my-account.my-account-button {
    width: auto;
}

label.agree_lable {
    font-size: 16px !important;	
    margin-bottom: 20px;

}

.agree_check {
    display: flex;
    justify-content: start;
}

.impact_area {
  display: flex;
  align-items: center;
}

.impact_area input[type="checkbox"] {
  margin-right: 10px;
}

.impact_area img {
  /*width: 30px; */
  margin-right: 10px;
}

form.form.okt-form.charity-profile label{
	line-height: inherit !important;
}

.impact-checkbox-list h2 {
    padding-bottom: 10px;
    padding-left: 10px;
}
#style--2 p {
    margin: 10px;
}


.page-template-help-now-template .bottom-part-content .avatar-img {
    text-align: center !important;
}
.page-template-help-now-template .preview.avatar.img-circle.img-thumbnail {
    height: 70px !important;
    width: 70px;
}
.page-template-help-now-template .okt-cmp-single {
    margin-bottom: 30px;
}

.woocommerce-checkout .woocommerce-shipping-fields h3#ship-to-different-address label input {
    background-color: #ff6d12 !important;
    accent-color: #e9620e;
    height: 40px !important;
    width: 18px;
}
.woocommerce-checkout #payment input[type=radio], .woocommerce-checkout #payment input.radio {
    width: auto !important;
    height: auto;
	    float: none;
}
#scroll-box{
	    overflow-y: scroll;
    overflow-x: hidden;
}

#scroll-box::-webkit-scrollbar {
    width: 10px;
/*     background-color: #F5F5F5; */
}
#scroll-box::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #f89217; 
}
#scroll-box::-webkit-scrollbar-track {
  background-color: #ebebeb;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.scroll-box {
    max-height: 300px;
    margin: 20px 0;
    padding: 10px 20px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 7px;
}

#term, #agree{
	background-color: #ff6d12 !important;
    accent-color: #e9620e;
}
#term_and_condition .form-check{
	    display: flex;	
}
#term_and_condition .form-check-label{
	margin-top: -6px;
}
#scroll-box p {
    margin-top: 15px;
}
#tmrc {
    margin-bottom: 0px;
}
.scroll-box.new-sp {
    max-height: 150px !important;
}
.okt-danger {
  color: #d32f2f; /* Red color or any other color you prefer for error messages */
  font-size: 14px;
  font-weight: bold;
//  margin-top: -35px;
}
.error-message {
  color: #d32f2f; /* Red color or any other color you prefer for error messages */
  font-size: 14px;
  font-weight: bold;
//  margin-top: -35px;
}

p.product_text {
    font-size: 13px;
    line-height: 21px;
    margin-bottom: 10px;
    margin-top: 10px;
}