@charset "utf-8";

@font-face {
    font-family: "Quicksand";
    src: url("../fonts/Quicksand/static/Quicksand-Bold.ttf");
}

@font-face {
    font-family: "Quicksand-bold";
    src: url("../fonts/Quicksand/static/Quicksand-Bold.ttf");
}

@font-face {
    font-family: "Quicksand-regular";
    src: url("../fonts/Quicksand/static/Quicksand-Regular.ttf");
}

@font-face {
    font-family: "Quicksand-semiBold";
    src: url("../fonts/Quicksand/static/Quicksand-SemiBold.ttf");
}

:root {
    --gray1: #707070;
    --blue1: #005fae;
    --blue2: #3194D2;
    --blue3: #0071BC;
    --blue4: #29ABE2;
    --blue5: #0095CD;
    --orange: #fbb040;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand-regular', sans-serif;
    text-decoration: none;
    color: var(--gray1);
    outline: none; 
}



.borderRadius {
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
}

.borderRadiusInput {
    border-radius: 21px;
    -moz-border-radius: 21px;   
    -webkit-border-radius: 21px;
}

.generalShadow {
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

body{
    background-color: #F8F8F8;
}

hr{
    height: 1px;
    color: #dedede;
    background-color: #dedede;
    width: 100%;
    border: 0;
}
