@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
:root{
    --primaryColor: #830B1D;
    --secondaryColor:#fff;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    margin: 0;
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    overflow-x: hidden;
}
p,li,a,span,h1,h2,h3,h4,h5,h6, button,input,input::placeholder{
    font-family: "Nunito Sans", sans-serif;
}

::selection{
    background-color: #6BAD0D;
    color: white;
}
.container{
    width: 320px;
    margin: 0 auto;
}
@media(min-width:494px){
    .container{
        width: 494px;
    }
}
@media(min-width:664px){
    .container{
        width: 664px;
    }
}
@media(min-width:724px){
    .container{
        width: 724px;
    }
}
@media(min-width:972px){
    .container{
        width: 972px;
    }
}
@media(min-width:1220px){
    .container{
        width: 1220px;
    }
}

/* Common styles for all icons */
.icon{
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    background-color: #000;
}
.icon_sm {
    width: 14px;
    height: 14px;
    scale: 1;
}
.icon_md {
    width: 18px;
    height: 18px;
    scale: 1.25;
}
.icon_lg{
    width: 21px;
    height: 21px;
    scale: 1.5;
}
