/**Grid css***/

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: inherit;
	line-height: 1;
}

button, [type="button"], [type="submit"] {
    -webkit-appearance: none;
}

:focus {
	outline: none !important;
}

::placeholder{
    font-size: inherit;
}

a{
    transition: 0.3s;
    text-decoration: none;
}

a:hover{
    text-decoration: none;
}

img, svg {
    max-width: 100%;
}

label {
    cursor: pointer;
}

.container{
    width: 98%;
    max-width: 98%;
    margin: 0 auto;
}

.row{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.telega_wrap {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-rel{
    position: relative !important;
}


