@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
.social * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
	z-index:1;
	
}
.social .button {
    display: flex;
    align-items: center;
	background-color: rgba(255,255,255,0.4);
    justify-content: space-between;
    cursor: pointer;
    transition: .3s;
    z-index: 1;
	margin-top:0.5rem;
	margin-bottom:0.5rem; 
	margin-left: 0%!important;
}
.social .button:hover {
	background-color: #009390;
}
.social .button:hover .mail,
.social .button:hover .title{
	color: #FFF;
}

.social .button__tel,
.social .button__offer,
.social .button__price,
.social .button__warning,
.social .button__print,
.social .button__info {
    width: 100%;
    height: fit-content;
	margin-bottom:1rem;
}
.social .button__tel{
	margin-bottom:5rem;
}

.social .icon {
    background-color: #fff;
    color: #009390;
    height: 35px;
    width: 35px;
    margin-left: 2px;
    margin-right: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.social .text {
    margin-right: 1rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    color: #333;
   	width:100%;
}

.social .title {
    font-size: 1rem;
    white-space: nowrap;
}

.social .mail {
    text-decoration: none;
    font-size: .1.3rem;
    color: #009390;
	transition: .4s;
	text-align: center;
}



/*==================== BREAKPOINTS ====================*/
@media screen and (min-width: 450px) {
    .social .button {
        display: flex;
        align-items: center;
        cursor: pointer;
        transition: .3s;
        z-index: 1;
    }

	.social .button__tel,
	.social .button__price,
	.social .button__offer,
    .social .button__price,
    .social .button__warning,
    .social .button__print,
    .social .button__info {
        height: 60px;
    }

    .social .icon {
        background-color: #fff;
        color: #009390;
        height: 55px;
        width: 55px;
        margin-left: 2px;
        margin-right: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        border-right: 1px solid #009390;
        transition: .4s;
    }

    /* Gomb hover effekt-re az ikon háttere megváltozik,
    megjelenik egy jobb oldali border illetve az ikon színe fehér lesz */
    .social .button:hover .icon {
        background-color: #009390;
        color: #FFF;
        border-right: 1px solid #FFF;
    }

    .social .text {
        display: flex;
        flex-direction: column;
        text-align: left;
        padding-left: .7rem;
        transition: .4s;
    }

    .social .title {
        font-size: 1.2rem;
        white-space: nowrap;
        padding-bottom: 0rem;
        transition: .4s;
    }

    /* Gomb hover effekt-re a title felúszik */
    .social .button:hover .title {
        padding-bottom: .5rem;
    }
    
    .social .mail {
        text-decoration: none;
        font-size: 1.5rem;
    }
}



/*a  kapcsolatform ::before-ja kitakarja a hover elől a kapcsolat gombokat*/
.z-20 {
	z-index:10;
}