body {
    margin: 0;
}

#category-list{
    width : 100%;
    height: auto;
    padding: 10px 0 10px 0;
    text-align: center;
}

.category-item {
    cursor: pointer;
    display : inline-block;
    width: 25%;
}

.category-item .title{
    text-align: center;
    font-size: 30px;
    margin: 0;
}

.category-item .description{
    text-align: center;
    font-size: 20px;
    margin: 0;
    color: gray;
}

#sofa-config-panel{
    width : 100%;
    overflow : hidden;
    position: relative;
}

#sofa-config-panel .btn-back{
    cursor: pointer;
    color: gray;
}

#sofa-config-panel .btn-undo{
    cursor: pointer;
    color: gray;
    text-transform: uppercase;
    margin-right: 2rem;
}

#sofa-config-panel .btn-undo:hover{
    color : #f43367;
    transition: .3s;
}

#sofa-config-panel .btn-redo{
    cursor: pointer;
    color: gray;
    text-transform: uppercase;
}

#sofa-config-panel .btn-redo:hover{
    color: #33f467;
    transition: .3s;
}

#sofa-config-panel #canvasSofa{
    width : 100%;
    height : 500px;
}

#sofa-config-panel .side-drawer{
    position: absolute;
    top: 0px;
    right: 0;
    background: white;
    width: 300px;
    height: 600px;
    padding: 0 1.5rem;
    padding-right: 0
}

#sofa-config-panel .side-drawer.expanded{
    right: 0;
    transition: .3s
}

#sofa-config-panel .side-drawer.collapsed{
    right : -320px;
    transition: .3s;
}

#sofa-config-panel .side-drawer .toggle-collapse{
    position: absolute;
    width: 60px;
    height: 60px;
    top: 200px;
    left: -55px;
    border-radius: 30px;
    cursor: pointer;
}

#sofa-config-panel .side-drawer .toggle-collapse.expanded::before{
    content: " ";
    position: absolute;
    width: 3px;
    height: 24px;
    background: gray;
    transform: rotateZ(-45deg);
    top: 10px;
    left: 28px;
}

#sofa-config-panel .side-drawer .toggle-collapse.expanded::after{
    content: " ";
    position: absolute;
    width: 3px;
    height: 24px;
    background: gray;
    transform: rotateZ(45deg);
    top: 25px;
    left: 28px; 
}

#sofa-config-panel .side-drawer .toggle-collapse.collapsed::before{
    content: " ";
    position: absolute;
    width: 3px;
    height: 24px;
    background: gray;
    transform: rotateZ(45deg);
    top: 10px;
    left: 24px;
}

#sofa-config-panel .side-drawer .toggle-collapse.collapsed::after{
    content: " ";
    position: absolute;
    width: 3px;
    height: 24px;
    background: gray;
    transform: rotateZ(-45deg);
    top: 25px;
    left: 24px; 
}

#select-type, #additional-items {
    text-align: center;
}

#select-type .single-component, #additional-items .additional-component{
    display: inline-block; /*comentar*/
    cursor: pointer;
    padding: 0.5rem;
    text-align: center;
    align-items: center;
    text-align: center;
    font-size: 11px;
    /*width: 10%;*/
}

#select-type .single-component img, #additional-items .additional-component img {
    margin-top: 10px;
}

#select-type .single-component p, #additional-items .additional-component p {
    line-height: 20px;
}

#select-type .single-component:hover, #additional-items .additional-component:hover{
    /*background: #dddddd;
    transition: .7s;*/
}


#additional-items .additional-component.hidden{
    display: none;
}

.custom-nav{
    text-align: center;
}

.custom-nav .custom-nav-item{
    display: inline-block;
    width: 49%;
    background: gray;
    text-align: center;
    color: white;
    padding: 1rem 0;
    text-transform: uppercase;
    cursor: pointer;
}

.custom-nav .custom-nav-item:hover{
    background-color: #333333;
    transition: .7s;
}

.custom-nav .custom-nav-item.active{
    background-color: white;
    color: gray;
    transition: .7s;
}

.custom-nav-content .custom-nav-content-item{
    display: none;
	
}

.custom-nav-content .custom-nav-content-item.active{
    display: grid;
	grid-template-columns: repeat(6, 1fr);
	align-items: center;
}

.side-drawer-content{
    display: none;
    height: 600px;
    overflow-y: scroll;
}

.side-drawer-content.active{
    display: block;
}
.btn{
    text-align: center;
    background-color: gray;
    color: white;
    text-transform: uppercase;
    font-size: 18px;
    padding: .5rem 0;
    margin: 1rem;
    cursor: pointer;
}

.btn:hover{
    background: #333333;
    transition: .4s;
}

.custom-dropdown{

}

.custom-dropdown-content{
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    align-items: center;
    gap: 10px
}

.custom-dropdown-header {
	margin-top: 20px;
}

.custom-dropdown-header h3{
    color: #000;
	font-size: 15px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}

.custom-dropdown-content .content-item{
    display: flex;
	width: 33px;
	height: 33px;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}

.custom-dropdown-content .content-item:hover{
    cursor: pointer;
	border: 2px solid #c34000;
}

.custom-dropdown-content .content-item.active{
    border: 3px solid #f43367;
}

.select-color-item{
    display: inline-block;
    position: relative;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 25px;
    background: gray;
    margin: 2px;
    border: 2px solid #555555;
    vertical-align: top;
}

.select-color-item.one::before{
    content: "1";
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    background: rgba(255,255,255,.5);
    border: 2px solid #00a2e8;
    top: -2px;
    left: -2px;
    font-size: 40px;
    color: #00a2e8;
    text-align: center;
}

.select-color-item.two::before{
    content: "2";
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    background: rgba(255,255,255,.5);
    border: 2px solid #00a2e8;
    top: -2px;
    left: -2px;
    font-size: 40px;
    color: #00a2e8;
    text-align: center;
}

.select-color-item.hidden{
    display: none;
}

.select-color-item.active{
    border: 2px solid black;
    margin: 2px;
}

.select-color-item .tooltip{
    position: absolute;
    display: none;
    background-color: #333333;
    color: white;
    padding: 8px;
    z-index: 1000;
    top: 44px;
    left: -17.5px;
    width: 70px;
    text-align: center;
    pointer-events: none;
}

.select-color-item .tooltip::before{
    position: absolute;
    content: " ";
    width: 15px;
    height: 15px;
    left: 36px;
    top: -7px;
    background-color: #333;
    transform: rotateZ(45deg);
}

.select-color-item:hover .tooltip{
    display: block;
}

#color-selector{
    /*padding: 1rem;*/
}

#covering-btn {
    padding: 15px 30px;
	margin-top: 20px;
}

#covering-btn:focus {
    background: #000;
}
	
#covering-btn span {
    color: #FFF;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 6.4px;
	text-transform: uppercase;
}

.page-title-wrapper {
    padding-bottom: 40px;
    padding-top: 20px;
	text-align: center;
}
.page-title-wrapper h1 {
    margin-bottom: 0px;
}

.page-title-wrapper h1 span {
	font-size: 36px;
	text-transform: uppercase;
	letter-spacing: 5px;
}
.container {
	width: 100%;
}
.page-layout-1column .column.main {
	padding-left: 0px;
	padding-right: 0px;
}

.select-covering {
	overflow-y: scroll;
    float: none !important;
    overflow-x: hidden;
	height: 430px;
}
.revestimentos {
	border: 2px solid #DCDCDC;
	padding: 20px;
}
.revestimentos h1 {
	color: #000;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.revestimentos input[type="text"] {
	margin-top: 20px;
	border: 1.5px solid #DCDCDC;
}

.sofa-content {
	margin-top:20px;
}

.content-price {
	margin-top:20px;
}

.revestimentos .price {
	display: block;
	color: #000;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}