.select_box_label {

	.select_option_label {
		border: none;
		margin-right: 5px;

		span {
			display: inline-flex;
			width: 50px;
			height: 45px;
			border: 1px solid rgba(#000, 0.1);
			font-size: 13px;
			text-transform: uppercase;
			font-weight: 500;
			letter-spacing: 0.1em;
			align-items: center;
			justify-content: center;
			color: #000;
		}

		&:hover {

			span {
				border-color: rgba(#000, 0.5);
			}
		}
		&.selected {

			span {
				border-color: #000;
				background: #000;
				color: #fff;
			}
		}
	}
}