.options {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    min-width: 600px;
    max-width:1500px;
    width: calc(100% - 100px);
    height: 500px;
	margin:60px auto;
}



.options .option {
    position: relative;
    overflow: hidden;
    min-width: 60px;
    margin: 10px;
    background: var(--optionBackground, var(--defaultBackground, #E6E9ED));
    background-size: auto 120%;
    background-position: center;
    cursor: pointer;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
@media screen and (max-width: 800px) {
	.options {
    min-width:96%;
    max-width:96%; margin:0px auto;
}
	
    .options .option {
       min-width:5px;
    }

}
.options .option:nth-child(1) {
    --defaultBackground: #ED5565;
}

.options .option:nth-child(2) {
    --defaultBackground: #FC6E51;
}

.options .option:nth-child(3) {
    --defaultBackground: #FFCE54;
}

.options .option:nth-child(4) {
    --defaultBackground: #2ECC71;
}

.options .option:nth-child(5) {
    --defaultBackground: #5D9CEC;
}

.options .option:nth-child(6) {
    --defaultBackground: #AC92EC;
}

.options .option.active {
    flex-grow: 10000;
    -webkit-transform: scale(1);
    transform: scale(1);
    max-width: 1200px;
    margin: 0px;
    border-radius: 5px;
    background-size: 100% auto !important;
    /*&:active {
     transform:scale(0.9);
  }*/
}
@media screen and (max-width: 800px) {
    .options .option.active {
       background-size:auto 100% !important;
    }

}
.options .option.active .shadow {
    box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
}

.options .option.active .label {
    bottom: 20px;
    left: 20px;
}

.options .option.active .label .info>div {
    left: 0px;
    opacity: 1;
}

.options .option:not(.active) {
    flex-grow: 1;
    border-radius: 5px;
}

.options .option:not(.active) .shadow {
    bottom: -40px;
    box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}

.options .option:not(.active) .label {
    bottom: 10px;
    left: 10px;
}

.options .option:not(.active) .label .info>div {
    left: 20px;
    opacity: 0;
}

.options .option .shadow {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 120px;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.options .option .label {
    display: flex;
    position: absolute;
    right: 0px;
    height: 40px;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.options .option .label .icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color:#22208f;
    color:#fff;
}
.options .option .label .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10px;
    color: white;
    white-space: pre;
}
@media screen and (max-width: 800px) {
 .options .option .label .icon{ display:none;}
 .options .option .label .info{ margin-left:0px;}
}
.options .option.active .label .view{ position:absolute; right:40px; color:#fff; height:40px; line-height:40px; border:1px solid #fff; padding:0px 30px; font-size:16px; font-weight:normal;}
.options .option.active .label .view:hover{ color:#fff;}

@media screen and (max-width: 800px) {
  .options .option.active .label .view{ position:absolute; right:0px; left:0px; bottom:60px; color:#fff; height:40px; line-height:40px; width:150px; border:1px solid #fff; padding:0px 0px; text-align:center; font-size:16px; font-weight:normal;}

}


.options .option .label .info>div {
    position: relative;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
}

.options .option .label .info .main_c {
    font-weight: bold;
    font-size: 1.2rem;
}

.options .option .label .info .sub {
    transition-delay: .1s;
}