// IMPORTS
@use 'synergy-colors';
@use 'synergy-fonts';
@use 'synergy-animations';

.icon{
    font-size: 1.7rem;
    color: map-get(synergy-colors.$blue, 300);
}

//BUTTON//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

.button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-sizing: border-box;
    border-width: 0;
    transition: map-get(synergy-animations.$transition, basic);
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
    background-color: black;
    color: white;
    height: 31px;
}

.button:hover{
    background-color: map-get(synergy-colors.$blue, 500);
    color: white;
}

.button:focus{
    box-shadow: map-get(synergy-colors.$shadow, button);
    background-color: map-get(synergy-colors.$blue, 500);
}

.button:disabled{
    background-color: map-get(synergy-colors.$grey, 300);
    color: map-get(synergy-colors.$grey, 500);
}

.labelButton{
    font-family: map-get(synergy-fonts.$text, font-family);
    font-style: map-get(synergy-fonts.$text, font-style);
    font-weight: map-get(synergy-fonts.$text, font-weight);
    font-size: map-get(synergy-fonts.$text, font-size);
    line-height: map-get(synergy-fonts.$text, line-height);
}

//CARD//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

.card{
    height: auto;
    // width: 376px;
    width: 100%;
    border: 1px solid #D9D9D9;
    border-radius: 12px;
    padding: 12px;
    background-color: white;
}

.image-container__card{
    width: 100%;
    height: auto;
    min-height: 176px;
    background: #E7E6FF;
    border-radius: 12px;
}

.title__card{
    font-family: map-get(synergy-fonts.$smallTitle, font-family);
    font-style: map-get(synergy-fonts.$smallTitle, font-style);
    font-weight: map-get(synergy-fonts.$smallTitle, font-weight);
    font-size: map-get(synergy-fonts.$smallTitle, font-size);
    line-height: map-get(synergy-fonts.$smallTitle, line-height);
    color: map-get(synergy-colors.$blue, 300);
    margin-left: 7px;
}

.content-label__card{
    font-family: map-get(synergy-fonts.$text, font-family);
    font-style: map-get(synergy-fonts.$text, font-style);
    font-weight: map-get(synergy-fonts.$text, font-weight);
    font-size: map-get(synergy-fonts.$text, font-size);
    line-height: map-get(synergy-fonts.$text, line-height);
    margin-left: 7px;
    margin-top: -3px;
}

.button-container__card{
    display: flex;
    width: 100%;
    justify-content: end;
    margin-bottom: 10px;
    margin-top: 10px;
}

//CARD LEFT ICON//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

.left .title__card{
    margin-left: 10px;
}

.left .icon{
    margin-left: 15px;
    margin-top: 23px;
}

.title-container__card{
    display: flex;
}

.left .content-label__card{
    padding-left: 25px;
    padding-right: 25px;
    margin-left: 23px;
}

.up .icon{
    margin-left: 10px;
}




