

/************************************************************************/
/* FROM CSS FILE: homepage_general.css */
/************************************************************************/

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #444;
  background-color: #f1f1f1;
}

.container {
  width: 80%;
  max-width: 1440px;
  margin: auto;
  background-color: #fff;
  padding: 1rem 2rem;
}

.banner_outer_container {
  text-align: center;
  background-color: #4293d4;
  color: #fff;
  padding: 1rem;
  width: 100%;
}

.app_description_container {
  text-align: center;
}

.steps_grid_container {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin: auto;
}

.step_container {
  padding: 0.5rem;
  border: 1px solid #ccc;
  margin: 1rem;
  width: calc(50% - 2rem);
}

.second_steps_container {
  display: flex;
}

.first_step {
  width: 100%;
}

.step_no {
    background-color: #4293d4;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50%;
    width: fit-content;
    font-weight: 600;
    display: inline-block;
}

.step_ttl {
  margin-top: 1rem;
  font-weight: 600;
  display: inline-block;
}

.cta_in_step {
  margin-top: 0.5rem;
}

.call_to_action_container {
  text-align: center;
  padding-top: 1rem;
}

.call_to_action_link {
  background-color: #4293d4;
  color: #fff;
  text-decoration: none;
  padding: 1rem;
  border: 1px solid #4293d4;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  margin: auto;
  width: fit-content;
}

.call_to_action_link:hover {
  background-color: #fff;
  color: #4293d4;
  cursor: pointer;
}

.examples_inner_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.example_container {
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    transition: background-size 0.2s ease;
}

.example_thumb {
  height: 200px;
}

.example_thumbs_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
  margin-bottom: 1rem;
}

.example_1 {
  background-image: url("https://fbuilder.ro/files_/20220303144423_127540294_348843978.png");
}

.example_2 {
  background-image: url("https://fbuilder.ro/files_/20220303144336_1770682915_1096542314.png");
}

.example_3 {
  background-image: url("https://fbuilder.ro/files_/20220303144434_135209169_1565642164.png");
}

.example_4 {
  background-image: url("https://fbuilder.ro/files_/20220303144425_102415448_1772316597.png");
}

.example_5 {
  background-image: url("https://fbuilder.ro/files_/20220303144424_989719552_433107056.png");
}

.example_6 {
  background-image: url("https://fbuilder.ro/files_/20220303144422_564190055_411517172.png");
}

.outer_cta_link:hover .cta_photo {
  display: block;
}

.outer_cta_link:hover .example_container {
  background-size: 150%; 
}

.cta_photo {
    background-color: #444;
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem;
    box-shadow: rgb(0 0 0 / 15%) 3px 3px 5px;
    display: none;
}

.outer_cta_link {
  text-decoration: none;
}

.grey_text {
  color: #333;
}

.center {
  text-align: center;
}

.inline_contact {
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin: auto;
}


footer {
  padding: 2rem 0;
}

footer div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.facebook_sm:hover > svg {
  fill: #4293d4;
}

.facebook_sm svg:hover {
  fill: #4293d4;
}


/*RESPONSIVENESS MAGIC*/

@media only screen and (max-width: 1440px) {
  .steps_grid_container {
    width: 100%;
  }
  
  .examples_inner_grid, .example_thumbs_grid {
    gap: 3rem;
  }
  
  .example_container {
    height: 400px;
  }
  
  .example_thumb {
    heighT: 200px;
  }
}

@media only screen and (max-width: 1100px) {
  .container {
    width: 95%;
  }
}

@media only screen and (max-width: 1024px) {
  .inline_contact {
    width: 100%;
  }
  
  .examples_inner_grid, .example_thumbs_grid {
    gap: 2rem;
  }
  
  .example_container {
    height: 300px;
  }
  
  .example_thumb {
    heighT: 150px;
  }
}


@media only screen and (max-width: 768px) {
  .container {
    width: 100%;
    max-width: 100%;
  }
  
  .example_container {
    height: 400px;
  }
  
  .example_thumb {
    height: 200px;
  }
   
  .example_thumbs_grid  {
    grid-template-columns: 1fr 1fr;
    margin-top: 2rem;
  }
  
  .second_steps_container {
    display: block;
  }
  
  .step_container {
    width: unset;
  }
  
  .examples_inner_grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 425px) {
  .container {
    padding: 1rem;
  }
  
  .example_container {
    height: 300px;
  }
  
  .example_thumb {
    height: 150px;
  }
  
  .inline_contact {
    flex-direction: column;
  }
  
}

@media only screen and (max-width: 375px) {
  .container {
    padding: 0.5rem;
  }
  
  .example_container {
    height: 200px;
  }
  
  .example_thumb {
    height: 100px;
  }
}

/************************************************************************/
/* FROM CSS FILE: homepage_form.css */
/************************************************************************/

form {
  border: 1px solid #ccc;
  margin: auto;
  width: 50%;
  padding: 1rem;
  text-align: center;
}

form div {
  margin: 1rem 0; 
}

form#create_acc_form div label {
  display: block;
}

form#new_site_form {
  height: 100vh;
  padding: 3rem 1rem;
  overflow-y: auto;
}

form input {
  padding: 0.5rem 1rem;
  width: 100%;
}

form select {
  padding: 0.5rem 1rem;
}

form#create_acc_form #submit, #submit_login {
  border: 1px solid #4293d4;
  color: #fff;
  padding: 1rem;
  background-color: #4293d4;
  cursor: pointer;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
}
form#create_acc_form #submit:hover, #submit_login:hover {
  background-color: #fff;
  color: #4293d4;
}

.inline {
  display: inline-block;
  width: 49%;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex_center {
  justify-content: center;
}

#tip_site, #moneda {
  margin: 0.5rem 1rem;
  min-width: 300px;
}

.theme_inner {
  border: 1px solid #ccc;
  padding: 0.5rem;
  margin: 1rem;
  width: 40%;
  text-align: center;
}

.colors {
  justify-content: center;
}

.color {
  width: 32px;
  height: 32px;
}

.err_field {
    background-color: crimson;
    color: #fff;
}

.err_field::placeholder {
  color: #fff;
}

.err_field_border {
  border: 1px solid crimson;
}

.color {
  cursor: pointer;
  margin: 0.2rem 0.5rem;
}

.color.selected {
  border: 3px solid #000;
}

.Pagesites_dashboard {
  position: relative;
}

.new_site_form_container {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    overflow-y: auto;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
}

#add_site {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#add_site:hover > svg {
  fill: crimson;
}

#new_site_form {
  background-color: #fff;
  position: relative;
}

#close_form {
    position: absolute;
    top: 0;
    right: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    margin: 0;
    font-weight: 600;
    font-size: 1.5rem;
}

.logo_wrapper {
  background-color: rgba(0,0,0,0.4);
  padding: 0.5rem;
  border-radius: 4px;
  color: #fff;
}

.file_label {
  background-color: #444;
  border: 1px solid #444;
  color: #fff;
  padding: 0.5rem;
  border-radius: 4px;
  cursor: pointer;
}

.file_label:hover {
  background-color: #fff;
  color: #444;
}

@media only screen and (max-width: 1024px) {
  #new_site_form, form {
    width: 80%;
  }
}

@media only screen and (max-width: 768px) {
  #new_site_form, form {
    width: 100%;
  }

  
  .tip_site_moneda_container, .theme_container {
    flex-direction: column;
  }
  
  .theme_container {
    align-items: center;
  }
  
  #tip_site, #moneda {
    margin: 1rem 0;
  }
}


/************************************************************************/
/* FROM CSS FILE: dashboard.css */
/************************************************************************/

.sites_inner_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.site_container {
  display: flex;
  /* justify-content: center; */
  align-items: baseline;
  padding: 0.5rem;
  border: 1px solid #ccc;
  height: 300px;
  width: 300px;
  margin: 0.2rem;
}

.site_container a {
  text-align: center;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  text-decoration: none;
  display: block;
  width: 100%;
  padding: 0.5rem;
}

.site_container a:hover {
  background-color: #fff;
  color: #000;
}
