/*header*/
#mobile_navbar.active_navbar,
.all_sidebar {
  display: block;
}
#mobile_navbar {
  max-width: 400px;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #323232;
  z-index: 999;
  padding: 20px;
  transition: 0.3s ease-in-out;
  position: fixed;
  height: 100vh;
  overflow-y: scroll;
  display: none;
}
#mobile_navbar::-webkit-scrollbar {
  width: 5px;
}
#mobile_navbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
}
#mobile_navbar::-webkit-scrollbar-thumb {
  width: 3px;
  height: auto;
  background-color: #ddd;
  border-radius: 4px;
}
.cancel_button {
  background: transparent;
  border: none;
}
.cancel_button #cancel {
  border: none;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
}
.mobile-menu {
  padding-top: 50px;
}
.cancel_button svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}
header .overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 997;
  display: none;
}



/*modal*/
.customModalContainer {
    position: fixed;
    height: 100vh;
    display: block;
    opacity: 0;
    visibility: hidden;
    overflow: hidden; 
    z-index: 1000;
    padding: 50px 10px;
    background-color: rgba(0,0,0,.8);
    inset: 0; 
    transition: .3s ease-in-out
}

.customModalContainer.show {
    overflow-y: auto;
    opacity: 1;
    visibility: visible
}

.customModal {
    max-width: 500px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 100%;
    background-color: #fff;
        transform: translate(-50%);
    top: 0%;
    left: 50%;
    position: relative;
}

.customModalHeader {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    justify-content: space-between
}

.customModalHeader .cert_modal_title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-2)
}

.customModalHeader button {
    border: none;
    outline: 0;
    background: 0 0;
    cursor: pointer
}

.customModalHeader button svg {
    width: 16px;
    height: 16px;
    fill: var(--default)
}

.customModalHeader button:hover svg {
    fill: black
}

.custommodal-body {
    padding: 20px
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 10px
}

.no-scroll {
    overflow: hidden
}




 
.custommodal-body input.effect, 
.custommodal-body select.effect {
  height: 50px;
}
.custommodal-body input.effect, 
.custommodal-body select.effect,
.custommodal-body textarea,

.projects-full-story__form .effect {
  width: 100%;
  border: 2px solid #e6ecf2;
  padding: 12px 20px;
  margin: 0 0 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  font-size: 14px;
  -webkit-appearance: none;
  outline:#000;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
 .custommodal-body textarea{
     resize:vertical;
     max-height:150px;
 }
 }
.custommodal-body .btn-close:focus{
  box-shadow: none !important;
}
.custommodal-body .submit-btn:hover {
  background-color: #1e1d1fe1;
}
.custommodal-body .submit-btn,
.projects-full-story__form .submit-btn {
  background-color: #1e1d1f;
  color: #fff;
  border-radius: 4px;
  height: 50px;
  line-height: 50px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: 0 26px;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
}
