/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/


.ls-answers {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.fruity .text-muted {
    color: #005253 !important;
    font-size: 1.2em;
}

.ls-label-question
{
    font-size: 1.2em;
}

.question-container {
    background-color: #ffffff;
    border: none !important;
    box-shadow: none !important;
}

.question-container {
    margin-bottom: 0px;
}

.numeric .em_sq_validation 
{
	width: 100px !important;
}


.question-text
{
    padding-left: 25px !important;
}

.ls-question-message .ls-em-tip
{
    font-size: 0.75em;
    padding-left: 20px;

}

.ls-heading
{
    background: #005253;
    color: #ffffff;
}

.checkbox-item label::before
{
    width: 25px;
    height: 25px;
}

.checkbox-item input[type="checkbox"]:checked + label::after
{
    width: 25px !important;
    height: 25px !important;
    font-size: 16px !important;
}

.checkbox-item label, .radio-item label {
    padding-left: 20px !important;
}

.radio-item label::before
{
    width: 30px;
    height: 30px;
    border-color: #005253;

}


.radio-item .ls-label-xs-visibility
{
    width: 35px !important;
    height: 35px !important;;
}

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {

  .dir-ltr table.ls-answers .radio-item .ls-label-xs-visibility, .dir-ltr table.ls-answers .checkbox-item .ls-label-xs-visibility {
    margin-left: 0;
    width: 100% !important;
}
}




.radio-item input[type="radio"]:checked + label::after
{
    width: 25px !important;
    height: 25px !important;
}

.radio-item label::after
{
    width: 25px !important;
    height: 25px !important;
}

body .answer-item label::after
{
    background-color: #005253;
}

.checkbox-item input[type="checkbox"]:checked+label::after, .checkbox-item input[type="radio"]:checked+label::after
{
    background-color: #005253;
}

input[type="checkbox"]:checked:after, .checkbox input[type="checkbox"]:checked:after, .checkbox-inline input[type="checkbox"]:checked:after {
    background-color: #005253 !important;
    border-color: #005253 !important;
  }



#sidebar .subpanel.level-0 .selected {
    background: linear-gradient(to right, #005253 0px, #005253 13px, #ffffff 13px, #ffffff 100%);
}



/* FOR THE HOME PAGE */

:root {
    --white__color: #ffffff;
    --light-blue__color: #04d1d1;
    --dark-gray__color: #252525;
    --mostly-black__color: #1b1b1b;
  }

  .logo {
		width: 12em;
    margin-top: 30px;
	}

  .welcome-logo {
		width: 12em;
	}



.hero {
	margin: 5em 0 3em 0;
	display: flex;
	gap: 6em;
}

.hero-img {
	flex-basis: 50%;
}

.mockup {
	width: 100%;
}

.hero-text {
	display: flex;
	flex-direction: column;
	gap: 1.5em;
	align-self: center;
	max-width: 35em;
}

.hero-text .subtitle
{
    font-size: 25px;
}

.hero-text .head
{
  font-size: 55px;
}

.dashboard-mock img
{
  width: 50%;
}

.hp-section
{
  padding-top: 35px;
}

.background {
	min-height: 100vh;
	background-color: #04d1d1;
	background-image: url('../files/bg-desktop.png');
	background-repeat: no-repeat;
	background-size: 85% 100%;
	background-position: center;
	overflow: auto;
	padding: 0 4em;
}

.section-dark
{
  background-color: #535353;
  margin-top:100px;
  color: #ffffff;
}

.section-green
{
  background-color: #04d1d1;
  color: #ffffff;
  padding-top: 30px;
}

.body-section-dark, .body-section-green
{
  height: 410px;
}

.body-section-dark img
{
  width: 50%;
}

.hero-text-container
{
  padding-bottom: 30px;
}

.icon-green
{
  color: #04d1d1;
}


.card-home {
  height: 195px;

  background: #ffffff;
  box-shadow: 1px 1px 5px lightgrey;
  padding: 25px 30px 20px 30px;
  border-radius: 20px;
  color: #000000;
}

.footer-section
{
  margin-top: 50px;
}

.feature-title{
  color: #153F55;
}


.fruity .btn-anchorgreen
{
  background-color: #04d1d1;
}

.text-white
{
  color: #ffffff !important;
}


.contact-us {
    padding: 45px 20px;
  }
  
  .contact-us__container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .contact-us__title {
    font-weight: 400;
    font-size: 30px;
    text-align: center;
  }
  
  .contact-us__form {
    display: flex;
    flex-direction: column;
    width: 600px;
  }
  @media (max-width: 576px) {
    .contact-us__form {
      width: 100%;
    }
  }
  
  .contact-us__input {
    padding: 18px;
    border: 1px solid var(--light-blue__color);
    font-family: inherit;
    font-size: 18px;
  }
  
  .contact-us__input::placeholder {
    color: var(--mostly-black__color);
  }
  
  .contact-us__input:not(:last-child) {
    margin-bottom: 20px;
  }
  
  .contact-us-message {
    resize: none;
    color: var(--mostly-black__color);
  }
  
  .contact-us__btn {
    margin: 15px auto;
    padding: 18px;
    border: 1px solid var(--light-blue__color);
    width: 200px;
    text-transform: uppercase;
    color: var(--light-blue__color);
    background-color: var(--white__color);
    transition: 0.3ms all ease;
    cursor: pointer;
  }
  .contact-us__btn:hover, .contact-us__btn:focus {
    border: 1px solid var(--white__color);
    color: var(--white__color);
    background-color: var(--light-blue__color);
  }
  .contact-us__btn:active {
    border: 1px solid var(--white__color);
    color: var(--white__color);
    background-color: var(--light-blue__color);
    opacity: 0.6;
  }
  
  .footer {
    color: #ffffff;
    background-color: #4e4e4e !important;
    overflow: hidden;
  }
  
  .footer__container {
    display: grid;
    grid-template-columns: 500px 200px 200px;
    align-items: baseline;
    justify-content: space-around;
    padding: 70px 30px;
  }
  @media (max-width: 768px) {
    .footer__container {
      grid-template-columns: auto auto;
    }
  }
  @media (max-width: 576px) {
    .footer__container {
      grid-template-columns: auto;
      padding: 40px 20px;
    }
  }
  
  .footer__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  @media (max-width: 768px) {
    .footer__inner:first-child {
      display: none;
    }
  }
  @media (max-width: 576px) {
    .footer__inner {
      margin-bottom: 40px;
    }

    .section-dark
    {
      height: 380px;
    }

    .body-section-dark img {
      width: 100%;
  }

  .body-section-dark, .body-section-green
  {
    height: 100%;
  }

  .card-home {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .hero-text .head {
    font-size: 35px;
}

  }
  
  .footer__subtitle {
    text-transform: uppercase;
    color: #04d1d1;
  }
  
  .footer__address {
    font-style: normal;
  }
  
  .footer__link {
    color: #04d1d1 !important;
  }
  
  .footer__link:not(:last-child) {
    margin-bottom: 10px;
  }
  


  #someId .thumbnail{
    display: inline-flex;
    height: 105px;
}

.survey-attributes
{
  list-style: none;
}

/* PADDING FROM BOOTSTRAP 5 */

.pt-0{padding-top:0!important}
.pt-1{padding-top:.25rem!important}
.pt-2{padding-top:.5rem!important}
.pt-3{padding-top:1rem!important}
.pt-4{padding-top:1.5rem!important}
.pt-5{padding-top:3rem!important}


.ps-0{padding-left:0!important}
.ps-1{padding-left:.25rem!important}
.ps-2{padding-left:.5rem!important}
.ps-3{padding-left:1rem!important}
.ps-4{padding-left:1.5rem!important}
.ps-5{padding-left:3rem!important}

.pb-0{padding-bottom:0!important}
.pb-1{padding-bottom:.25rem!important}
.pb-2{padding-bottom:.5rem!important}
.pb-3{padding-bottom:1rem!important}
.pb-4{padding-bottom:1.5rem!important}
.pb-5{padding-bottom:3rem!important}



.anchorwise-green
{
  color: #005253 !important
}


.anchorwise-blue
{
  color: #04d1d1 !important
}







