/*----------------------------------------------- FORM -----------------------------------------------*/
[id*="form"] {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px; 
  justify-content: center;
  align-items: flex-start;
  z-index: 7;
  display: none;
}



/*FORM > DIV*/
[id*="form"] > div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: scroll;
  height: 100%;
  z-index: 10;
  position: relative;
  display: none;
  background-color: rgb(250,250,250);
}



/*FORM - WRAPPER*/
[id*="form"] .form-wrapper {
  width: 100%;
  max-width: 440px;
  flex-wrap: wrap;
  background-color: white;
  border-radius: 60px;
  padding-top: 68px;
  padding-right: 40px;
  padding-left: 40px;
  margin-left: 20px;
  margin-right: 20px;
  box-sizing: content-box;
  margin-top: 100px;
  margin-bottom: 100px;
  display: none;
}
[id*="form"] .form-wrapper .form-header {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
[id*="form"] .form-wrapper .form-body {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
[id*="form"] .form-wrapper .form-footer {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 24px;
}

/*CLOSE MODULE*/
[id*="form"] > div .close-module {
  display: flex;
  z-index: 7;
  position: fixed;
  top: 12px;
  right: 12px;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

[id*="form"] > div .close-module > img {
  width: 25px;
  height: 25px;
}

[id*="form"] > div .close-module:hover {
  cursor: pointer;
  background-color: #E4EDFF;
  -webkit-transition:all .25s ease-in-out;
     -moz-transition:all .25s ease-in-out;
      -ms-transition:all .25s ease-in-out;
       -o-transition:all .25s ease-in-out;
          transition:all .25s ease-in-out;
}



/*FORM - BUTTON*/
[id*="form"] .form-wrapper .form-footer [class*="button-cta-form-submit"] {
  background-color: #4C84FF;
}

[id*="form"] .form-wrapper .form-footer [class*="button-cta-form-submit"] > div:last-of-type {
  background-color: #4173E8;
  overflow: hidden;
}

[id*="form"] .form-wrapper .form-footer .[class*="button-cta-form-submit"] img  {
  -webkit-transition:all .25s ease-in-out;
     -moz-transition:all .25s ease-in-out;
      -ms-transition:all .25s ease-in-out;
       -o-transition:all .25s ease-in-out;
          transition:all .25s ease-in-out; 
}

[id*="form"] .form-wrapper .form-footer [class*="button-cta-form-submit"]:hover img  {
  animation: go-arrow .5s ease 1;
}

@keyframes go-arrow {
  0% { 
    transform: translateX(0px); 
  }
  24% { 
    transform: translateX(24px);
    opacity: 0; 
  }
  25% { 
    transform: translateX(-24px);
    opacity: 0; 
  }
  50% {
    transform: translateX(0px);
  }
}



/*FORM - HEADER*/
[id*="form"] .form-wrapper .form-header h1 {
  width: 100%;
  text-align: center;
  font-weight: 800;
}

[id*="form"] .form-wrapper .form-header h4 {
  width: 100%;
  max-width: 240px;
  text-align: center;
  font-weight: 600;
  line-height: 18px;
}

[id*="form"] .form-wrapper .form-header h4 a {
  font-weight: 800;
}



/*FORM - SUCCESS*/
[id*="form"] .form-wrapper .form-success {
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  display: none;
}

[id*="form"] .form-wrapper .form-success h1 {
  width: 100%;
  text-align: center;
  font-weight: 800;
}

[id*="form"] .form-wrapper .form-success h4 {
  width: 100%;
  max-width: 240px;
  text-align: center;
  font-weight: 600;
}

[id*="form"] .form-wrapper .form-success img {
  width: 250px;
  height: 125px;
}



/*ANIMATIONS*/
[id*="form"] .fadeIn {
  animation-delay: .75s;
}
/*----------------------------------------------- FORM (END) -----------------------------------------------*/


















/*----------------------------------------------- INPUT -----------------------------------------------*/
[class*="input-3tandai"] {
  height: 44px;
  border-radius: 16px;
  text-align: left;
  border: 2px solid rgb(242,246,255);
  background-color: rgb(242,246,255);
  margin: 0px;
  padding-left: 20px;
  font-family: 'Source Sans Pro', sans-serif;
  speak: none;
  font-style: normal;
  font-weight: 600;
  font-variant: normal;
  text-transform: none;
  line-height: normal;
  -webkit-font-smoothing: antialiased;
  margin: 0px;
  font-size: 15px;
  letter-spacing: 0px;
  margin-bottom: 12px;
  color: rgb(76,132,255);
  position: relative;
}

input:-webkit-autofill {
  border: 2px solid rgb(242,246,255) !important;
  -webkit-box-shadow: 0 0 0px 1000px rgb(242,246,255) inset !important;
  -webkit-text-fill-color: rgb(76,132,255) !important;
  transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
[class*="input-3tandai"]:-webkit-autofill:focus,
[class*="input-3tandai"]:-webkit-autofill:hover {
  background-color: white !important;
  -webkit-box-shadow: 
      0 0 0px 1000px white inset,
      0 0 0 4px #D2E0FF !important;
  transition: background-color 5000s ease-in-out 0s;
}

[class*="input-3tandai"][type='number'] {
    -moz-appearance:textfield;
}

[class*="input-3tandai"]::placeholder {
  color: rgb(175,200,255);
}

[class*="input-3tandai"]::-webkit-outer-spin-button,
[class*="input-3tandai"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

[class*="input-3tandai"]:focus,
[class*="input-3tandai"]:hover {
  outline: none;
  border-color: rgb(76,132,255) !important;
  background-color: white !important; 
  box-shadow: 0 0 0 4px #D2E0FF !important;
  -webkit-transition:all .25s ease-in-out;
   -moz-transition:all .25s ease-in-out;
    -ms-transition:all .25s ease-in-out;
     -o-transition:all .25s ease-in-out;
        transition:all .25s ease-in-out;
}

.input-3tandai-full {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .input-3tandai-half {
    width: 100%;
  }
}
@media screen and (min-width: 481px) {
  .input-3tandai-half {
    width: calc(50% - 30px);
  }
}
/*----------------------------------------------- INPUT (END) -----------------------------------------------*/



















/*----------------------------------------------- TEXTAREA -----------------------------------------------*/
[class*="textarea-3tandai"] {
  border: 2px solid rgb(242,246,255);
  background-color: rgb(242,246,255);
  margin: 0px;
  font-family: 'Source Sans Pro', sans-serif;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: normal;
  -webkit-font-smoothing: antialiased;
  color: rgb(76,132,255);
  font-size: 15px;
  letter-spacing: -.5px;
  resize: none;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 12px;
  box-shadow: border-box;
  height: 112px;
  font-weight: 600;
  color: rgb(76,132,255);
  position: relative;
}

[class*="textarea-3tandai"]:focus,
[class*="textarea-3tandai"]:hover {
  outline: none;
  border-color: rgb(76,132,255) !important;
  background-color: white !important; 
  box-shadow: 0 0 0 4px #D2E0FF !important;
  -webkit-transition:all .25s ease-in-out;
   -moz-transition:all .25s ease-in-out;
    -ms-transition:all .25s ease-in-out;
     -o-transition:all .25s ease-in-out;
        transition:all .25s ease-in-out;
}

[class*="textarea-3tandai"]::placeholder {
  color: rgb(175,200,255);
}

.textarea-3tandai-full {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .textarea-3tandai-half {
    width: 100%;
  }
}
@media screen and (min-width: 481px) {
  .textarea-3tandai-half {
    width: calc(50% - 48px);
  }
}
/*----------------------------------------------- TEXTAREA (END) -----------------------------------------------*/



















/*----------------------------------------------- DROPDOWN -----------------------------------------------*/
[class*="dropdown-3tandai"] {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 48px;
  margin-bottom: 12px;
  position: relative;
}



/*DROPDOWN - TOP*/
[class*="dropdown-3tandai"] .dropdown-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 24px;
  height: 46px;
  border-radius: 16px;
  border: 2px solid rgb(242,246,255);
  background-color: rgb(242,246,255);
}
[class*="dropdown-3tandai"]:hover .dropdown-top {
  cursor: pointer;
  border-top: 2px solid rgb(76,132,255) !important;
  border-left: 2px solid rgb(76,132,255) !important;
  border-right: 2px solid rgb(76,132,255) !important;
  border-bottom: 2px solid rgb(76,132,255) !important;
  box-shadow: 0 0 0 4px #D2E0FF !important;
  background-color: white !important; 
}
[class*="dropdown-3tandai"] .dropdown-item:hover {
  cursor: pointer;
}

[class*="dropdown-3tandai"] .dropdown-top .h5-3tandai {
  font-weight: 600;
}

[class*="dropdown-3tandai"]:hover .dropdown-top .h5-3tandai {
  color: rgb(175,200,255) !important;
}

[class*="dropdown-3tandai"] .dropdown-top .h5-3tandai:first-of-type {
  color: rgb(175,200,255);
}
[class*="dropdown-3tandai"]:hover .dropdown-top .h5-3tandai:first-of-type {
  color: rgb(76,132,255);
}
[class*="dropdown-3tandai"] .dropdown-top .h5-3tandai:last-of-type {
  display: none;
  color: rgb(76,132,255) !important;
}

[class*="dropdown-3tandai"] .dropdown-top-add {
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

/*DROPDOWN - TOP (CARROT/ARROW)*/
[class*="dropdown-3tandai"] .dropdown-top div {
  position: relative;
  height: 23px;
  width: 23px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 12px;
}
[class*="dropdown-3tandai"] .dropdown-top span {
  position: absolute; 
  width: 4px;
  height: 10px;
  margin: auto;
  border-radius: 2px;
  background-color: rgb(175,200,255);
  -webkit-transition:all .1s ease-in-out;
     -moz-transition:all .1s ease-in-out;
      -ms-transition:all .1s ease-in-out;
       -o-transition:all .1s ease-in-out;
          transition:all .1s ease-in-out;
}

[class*="dropdown-3tandai"]:hover .dropdown-top span {
  background-color: rgb(76,132,255);
}

[class*="dropdown-3tandai"] .dropdown-top span:first-of-type {
  bottom: 6px;
  left: 7px; 
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
[class*="dropdown-3tandai"]:hover span:first-of-type {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
[class*="dropdown-3tandai"] .dropdown-top span:last-of-type {
  bottom: 6px;
  left: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);    
}
[class*="dropdown-3tandai"]:hover span:last-of-type {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}



/*DROPDOWN-DIVIDER*/
[class*="dropdown-3tandai"] .dropdown-divider {
  z-index: 3;
  width: 100%;
  background-color: white;
  display: none;
}

.dropdown-divider-add {
  height: 4px;
  border-left: 2px solid rgb(76,132,255);
  border-right: 2px solid rgb(76,132,255);
  margin-top: -2px;
  display: block !important;
}



/*DROPDOWN-ITEMS*/
[class*="dropdown-3tandai"] .dropdown-items {
  width: 100%;
  height: 0px;
  overflow-y: scroll;
  z-index: 2;
}

[class*="dropdown-3tandai"]:hover .dropdown-items {
  border-bottom-left-radius: 12px !important;
  border-bottom-right-radius: 12px !important;
}

/*DROPDOWN-ITEMS (ADD IN JS)*/
[class*="dropdown-3tandai"] .dropdown-items-add {
  height: 128px !important;
  border-left: 2px solid rgb(76,132,255);
  border-right: 2px solid rgb(76,132,255);
  border-bottom: 2px solid rgb(76,132,255);
  box-shadow: 0 0px 0 4px #D2E0FF;
}



/*DROPDOWN-ITEM*/
[class*="dropdown-3tandai"] .dropdown-item {
  width: 100%;
  align-items: center;
  align-content: center;
  background-color: #F1F6FF;
  margin-top: -1px;
}

[class*="dropdown-3tandai"] .dropdown-item:hover {
  background-color: #E9F0FF;
}

[class*="dropdown-3tandai"] .dropdown-item:hover .h5-3tandai {
  color: rgb(76,132,255);
}

[class*="dropdown-3tandai"] .dropdown-item .h5-3tandai {
  text-align: left; 
  padding-left: 24px;
  padding-top: 9px;
  padding-bottom: 10px;
  font-weight: 600;
  color: rgb(76,132,255);
}

.dropdown-3tandai-full {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .dropdown-3tandai-half {
    width: 100%;
  }
}
@media screen and (min-width: 481px) {
  .dropdown-3tandai-half {
    width: calc(50% - 6px);
  }
}
/*----------------------------------------------- DROPDOWN (END) -----------------------------------------------*/


