/*---------------------------------------------------------------*/
/*---------------------------- Admin ----------------------------*/
/*---------------------------------------------------------------*/

.ks-m-newsletter-export-form-container 
{
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
}

/*---------------------------------------------------------------*/
/*---------------------------- Public ---------------------------*/
/*---------------------------------------------------------------*/
.ks-m-newsletter-form 
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 650px;
    margin: 0 auto;
    gap: 15px;
}

.ks-m-newsletter-input-wrapper 
{
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    width: 100%;
    margin: 0;
}

.ks-m-newsletter-input-wrapper .ks-m-newsletter-icon-container 
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    width: 24px;
    z-index: 2;
    pointer-events: none;
    color: #8B54F7;
}

input[type=email].ks-m-newsletter-email 
{ 
    height: 52px;
    border: 1px solid rgba(45, 26, 104, 0.15);
    padding: 0 20px 0 52px;
    border-radius: 16px;
    color: #8B54F7;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

input[type=submit].ks-m-newsletter-submit 
{
    height: 52px;
    border-radius: 16px;
    padding: 0 35px;
    color: #ffffff;
    font-size: 14.5px;
    font-weight: bold;
    background-color: #C05A86;
    cursor: pointer;
    border: none;
    margin: 0;
    box-sizing: border-box;
}

input[type=submit].ks-m-newsletter-submit:hover 
{
    background-color: #2D1A68;
}


/*---- Style 0 ----*/
.ks-m-newsletter-style-0 
{
    
}

.ks-m-newsletter-style-0 input[type=email].ks-m-newsletter-email
{
    
}

.ks-m-newsletter-style-0 input[type=submit].ks-m-newsletter-submit
{

}

/*---- Style 1 ----*/
.ks-m-newsletter-style-1
{

}

.ks-m-newsletter-style-1 input[type=email].ks-m-newsletter-email
{
    font-family: 'Comfortaa', display;
    text-transform: uppercase;
    font-size: 18px;
    background-color: #FFFFFF;
    color: #0F2B5D;
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-left: 15px;
    margin-top: 1px;
    box-shadow: 0px 2px 18px 0px rgba(0,0,0,0.3);
    border-radius: 0;
    height: 44px;
    margin-right: 0;
    flex-basis: 90%;
    width: 90%;
}

.ks-m-newsletter-style-1 input[type=submit].ks-m-newsletter-submit
{
    background-image: url(../images/shared_button_1.png);
    background-size: cover;
    min-width: 44px;
    width: 44px;
    height: 44px;
    border-radius: 0;
    background-color: #213672;
    padding: 0;
    position: relative;
    text-indent: -999999px;
}

/*---- Style 2 ----*/
.ks-m-newsletter-style-2 input[type=submit].ks-m-newsletter-submit 
{
    background-color: #666666;
}

.ks-m-newsletter-style-2 input[type=submit].ks-m-newsletter-submit:hover 
{
    background-color: #ABABAB;
}

/*---- Style 3 - Optica del Parque ----*/
.ks-m-newsletter-style-3 
{
    flex-direction: column;
}

.ks-m-newsletter-style-3 input[type=email].ks-m-newsletter-email 
{
    width: 100%;
    border-radius: 0;
    margin: 0 0 20px 0 !important;
}

.ks-m-newsletter-style-3 input[type=submit].ks-m-newsletter-submit 
{
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    background-color: #FF5400;
}

.ks-m-newsletter-style-3 input[type=submit].ks-m-newsletter-submit:hover 
{
    background-color: #c25017;
}

/*---- Style 4 - Kripton ----*/
.ks-m-newsletter-style-4 
{

}

.ks-m-newsletter-style-4 input[type=email].ks-m-newsletter-email 
{
    height: 50px;
}

.ks-m-newsletter-style-4 input[type=submit].ks-m-newsletter-submit
{
    width: 100%;
    max-width: 160px;
    height: 50px;
    font-weight: bold;
}

/*---- Mobile ----*/
@media only screen and (max-width: 600px)  
{
    .ks-m-newsletter-form 
    {
        flex-direction: column;
    }

    .ks-m-newsletter-input-wrapper 
    {
        margin-bottom: 15px;
        width: 100%;
    }

    input[type=email].ks-m-newsletter-email 
    { 
        width: 100%;
        flex-basis: 100%;
        margin-right: 0;
        margin-bottom: 0;
    }

    input[type=submit].ks-m-newsletter-submit 
    {
        width: 100%;
        max-width: 100%;
    }

    /*---- Style 1 ----*/
    .ks-m-newsletter-style-1
    {
        flex-direction: row;
    }

    .ks-m-newsletter-style-1 input[type=submit].ks-m-newsletter-submit 
    {
        margin-bottom: 25px;
    }
}