.options {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    width: calc(100% - 0px);
    height: 387px;
	min-width: 100%;
	max-width: 100%;
}

@media screen and (max-width: 718px) {
    .options {
        min-width: 520px;
    }

    .options .option:nth-child(5) {
        display: none;
    }
}

@media screen and (max-width: 638px) {
    .options {
        min-width: 440px;
    }

    .options .option:nth-child(4) {
        display: none;
    }
}

@media screen and (max-width: 558px) {
    .options {
        min-width: 360px;
    }

    .options .option:nth-child(3) {
        display: none;
    }
}

@media screen and (max-width: 478px) {
    .options {
        min-width: 280px;
    }

    .options .option:nth-child(2) {
        display: none;
    }
}

.options .option {
    position: relative;
    overflow: hidden;
    min-width: 245px;
	border: 4px #f3f7de solid;
    margin: 0px 12px;
    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), opacity 0.5s ease-out;
}
.options .option:last-child{
	margin-right: 0px;
}
.options .option:first-child{
	margin-left: 0px;
}
.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: 387px;
    margin: 0px;
	margin-right: 12px;
	margin-left: 12px;
    background-size: auto 100%;
    /*&:active {
     transform:scale(0.9);
  }*/
}
.options .option.active:first-child{
	margin-left: 0px;
}
.options .option.active .label {
    top: 10px;
    left: 20px;
}

.options .option.active .label .info>div {
    left: 0px;
    opacity: 1;
}
.options .option.active .label .info .p_more{
	opacity: 1;
}
.options .option:not(.active) {
    flex-grow: 1;
}


.options .option:not(.active) .label {
    top: 10px;
	
}

.options .option:not(.active) .label .info>div {
    left: 20px;
    opacity: 1;
}
.options .option:not(.active) .label .info .p_more{
	opacity: 0;
}

.options .option .label {
    display: flex;
    position: absolute;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
	font-weight: normal;
}

.options .option .label .icon {
    width: 45px;
    height: 5px;
	margin-top: 10px;
	background-color: #37b6b7;
}

.options .option .label .info {
    color: white;
	margin-top: 20px;
}

.options .option .label .info .text{
	color: #37b6b7;
	font-size: 14px;
	text-align: left;
	margin-top: 20px;
}
.options .option .label .info .text em{
	font-size: 24px;
	color: #37b6b7;
	font-weight: bold;
}
.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 {
	text-align: left;
    font-weight: bold;
    font-size: 1.2rem;
	font-size: 20px;
	color: #222222;
}

.options .option .label .info .sub {
    transition-delay: .1s;
	color: #333;
	font-size: 14px;
	text-align: left;
	line-height: 20px;
	margin-top: 10px;
	
}