.cotizador-banner{
    background-image: url(../../images/landing/cotizador/silieri-cotizador-banner01.jpg);
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center;    
    height: 100%;
    border-radius: 0;
    max-width:100%;
}

.form-background{
    background-color: rgb(234,234,234,1);
}

.cotizar-producto{
    padding-bottom: 5%;
    border-bottom: 1px solid;
}

#btn-cotizar{
    margin-left: 0;
    cursor: pointer;
    left: 50%;
    transform: translateX(-50%);
}
.btn-dark:before
{
  background-color: var(--primaryColor);
}
a.termsLink {
    font-weight: 500;
    text-decoration: underline;
}

/* MEDIA QUERIES */

/* 
  Device = Tablets, Ipads (portrait)
  Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) {
    #btn-cotizar{
        margin-left: 52%;
    }
}

/* 
  Device = Tablets, Ipads (landscape)
  Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    #btn-cotizar{
        margin-left: 52%;
    }
}

/* 
  Device = Low Resolution Tablets, Mobiles (Landscape)
  Screen = B/w 481px to 767px
*/
@media (min-width: 481px) and (max-width: 767px) {
    #btn-cotizar{
        margin-left: 30%;
    }
}

/* 
  Device = Most of the Smartphones Mobiles (Portrait)
  Screen = B/w 320px to 479px
*/
@media (min-width: 320px) and (max-width: 480px) {
    #btn-cotizar{
        margin-left: 15%;
    }
}