label {
    font-size: 1.1rem;
    line-height: 1.1rem;
    text-transform: uppercase;
    font-weight: 500;
}

.configurator_grid {
    display: grid;
    grid-template-columns: 2fr auto;
    grid-template-rows: auto ;
    gap: 0 1.5rem;
}

.img_container {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 3;
    display: grid;
    background-color: #161b1f;   
}

.img {
    grid-column-start: 1;
    grid-row-start: 1;
    width: 100%;
    border-bottom: 1px solid #fff;    
}

.img-active {
    animation-name: fade_in;
	animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
	animation-duration: 0.5s;
	animation-direction: normal;
	animation-fill-mode: forwards;
}

.img-noactive {
   opacity: 0;
}

@keyframes fade_in {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

select, option {
    border-radius: 0.2rem;
    -webkit-border-radius: 0.2rem;
    -moz-border-radius: 0.2rem;
    -ms-border-radius: 0.2rem;
    -o-border-radius: 0.2rem;
    font-size: 1rem;
}

hr {
    width: 100%;
}

.options_block {
    display: grid;
    align-items: start;
    align-content: flex-start;
    gap: 1rem;
}

.description-block {
    margin-top: 1.5rem;
}

.description-block p {
   font-weight: 600;
}

.selection {
    display: grid;
    gap: 0.5rem;
}

.btn_reset {
    justify-self: right;
}

.btn_reset:disabled {
    pointer-events: none;
    opacity: 0.2;
}

.pdf-block {
    display: grid;
    text-align: center;
    align-content: end;
    gap: 1rem;  
}

.btn_block {
    justify-self: center
}

.btn_noactive {
    display: none;
    pointer-events: none;
}

@media only screen and (max-width: 910px) {
    .configurator_grid {
        grid-template-columns:  1fr;
        gap: 1.5rem 0;
    }
    
    .description-block {
        margin-top: 0;
    }

    .pdf-block {
        order: 4;
    }

    .options_block {
       gap:1.5rem
    }

    .img_container {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 2;
        grid-row-end: 3;  
    }
}