main {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(78, 78, 78, 0.514);

    padding-top: 20px;
    padding: 30px;
    gap: 30px;
}

textarea {
    width: 100%;
    max-width: 100%;
    min-height: 150px;
    
    overflow-x: hidden;
    resize: vertical;


    border: 2px solid;
    transition: border-color 0.3s ease;
	outline: none;
	box-shadow: none;

    background-color: whitesmoke;

    padding: 10px 14px;
    font-size: 1.5em;

    border-radius: 2px;


}

textarea::placeholder {
    font-style: italic;
}

textarea:hover {
    border-color: #069;
}

textarea:focus {
    border-color: #069;
}


h1 {
    font-weight: bold;
    font-size: 1.3em;
    white-space: nowrap;
}

h2 {
    font-weight: bold;
    font-size: 1.6em;
    padding-bottom: 10px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lista-de-deseos {
    display: flex;

	flex-direction: column;

    gap: 10px;
    
}


ul {
	list-style: none;
}

.selector-multiple {
    max-width: 100%;
    position: relative;
    padding-top: 20px;

    border-radius: 6px;

    background-color: rgba(78, 78, 78, 0.514);
}



.selector-multiple-label {
    display: block;
    font-weight: bold;
    padding-bottom: 10px;
    width: 100%;
    font-size: 1.6em;

    text-align: center;
}

.multi-select-option {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;

    font-size: 20px;
    cursor: pointer;
    
    white-space: nowrap;
    gap: 12px;
}

.multi-select-option li {
    width: 100%;
}



.multi-select-option li label {
    display: flex;
    justify-content: space-between;

    padding: 12px 15px;
    cursor: pointer;
    font-size: 1em;
    gap: 20px;
    
    width: 100%;
    align-items: center;
    text-align: center;
}

.multi-select-option li label:hover {
     background-color: #069;
}


.multi-select-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #007bff;
}

.multi-select-option .checkbox {
    flex-shrink: 0;
}

.multi-select-option .txt {
    flex: 1;
    text-align: center;
    transform: translateX(-5%);
}



main .mostrar-sugerencias button {
	width: 100%;

    border: none;
	outline: none;
	box-shadow: none;
	padding: 12px 16px;
	font-size: 1.4em;
	font-weight: bolder;
	background-color: #036;
	color: whitesmoke;
	border-radius: 2px;
	cursor: pointer;

}

main .mostrar-sugerencias button:hover {
	background-color: #069;
	transform: scale(1.01);
}


.multi-select-option li label {
    justify-content: center;
    width: 100%;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        display: block;
    }

    .lista-de-deseos {
        flex-direction: row;
    }

    .multi-select-option li label {
        justify-content: center;
    }
}

@media (min-width: 768px) and (orientation: portrait) {
    .lista-de-deseos {
        display: flex;
	    flex-direction: column;
    }

    .multi-select-option li label {
        justify-content: center;
        width: 100%;
    }
}

