.button-cover{
    width: 100%;
    max-width: 374px;
    height: 46px;
    display: flex;
    justify-content: center;
    margin-top: 90px;
    margin-bottom: 20px;
}

.button-nav{
    width: 100%;
    max-width: 372px;
    height: 46px;
    background: rgba(214, 214, 214, 0.26);
    border: 1px solid var(--primary);
    border-radius: 8px;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 15px 39px;

    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    /* identical to box height */

    color: var(--primary);
}


.button-nav-left{
    width: 100%;
    max-width: 186px;
    height: 46px;
    background: rgba(214, 214, 214, 0.26);
    border: 1px solid #00178F;
    box-sizing: border-box;
    border-radius: 8px 0px 0px 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 15px 39px;

    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    /* identical to box height */

    color: #00178F;
}

.button-nav-right{
    width: 100%;
    max-width: 186px;
    background: rgba(214, 214, 214, 0.26);
    border: 1px solid #00178F;
    box-sizing: border-box;
    border-radius: 0px 8px 8px 0px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 15px 39px;

    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    /* identical to box height */

    color: #00178F;
}

/* end-section */

#all-categories-section .title {
    margin-top: 100px;
    margin-bottom: 20px;
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;

    color: #363636;
}

#categories-section{
	width: 100%;
	height: auto;
	margin-top: 21px;
	text-align: center;
}

#categories-section .wrapper{
	width: 100%;
	height: auto;
}

#categories-section img{
	width: 45px;
	height: 45px;
	margin-bottom: 10px;
}

#categories-section .wrapper .name{
	font-family: Inter;
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: 15px;
	/* identical to box height */

	color: #363636;
}

#bottom-sort{
    background-color: white;
    position: fixed;
    bottom: 0;
    width: 414px;
    height: 308px;
    z-index: 5;
    padding: 21px 20px;
    border-radius: 22px 22px 0px 0px;
}

#bottom-sort .title{
    padding-top: 10px;
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;

    color: #363636;
}

#bottom-sort .wrapper{
    margin-bottom: 28px;
}

#bottom-sort .wrapper #cross{
    cursor: pointer;
}

#bottom-sort .option-bar .option{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

#bottom-sort .option-bar .option .option-check {
    justify-self: flex-end;
    border-radius: 50%;

    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 1px solid #000000;
    border-radius: 50%;
    outline: none;
    transition-duration: 0.3s;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    text-align: center;

    color: #000000;
}

#bottom-sort .option-bar .option .option-check:active {
    border: 2px solid var(--primary);
}

#bottom-sort .option-bar .option .option-check:checked {
    border: 1px solid #fff;
    background-color: var(--primary);
}
