@media screen and (min-width: 800px) {
    .un {
        display: inline-block;
        padding-bottom: 2px;
        background-image: linear-gradient(#EB615B, #EB615B);
        background-position: 0 100%;
        /*OR bottom left*/
        background-size: 0% 2px;
        background-repeat: no-repeat;
        transition:
            background-size 0.3s,
            background-position 0s 0.3s;
        /*change after the size immediately*/
    }

    .un:hover {
        background-position: 100% 100%;
        /*OR bottom right*/
        background-size: 100% 3px;
    }
}

.arrow {
    animation: slide1 1s ease-in-out infinite;
    margin-left: 9px;
}

@keyframes slide1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, 0);
    }
}

input.upperku {
    text-transform: uppercase;
}

::-webkit-input-placeholder {
    /* WebKit browsers */
    text-transform: none;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    text-transform: none;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    text-transform: none;
}

:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    text-transform: none;
}

::placeholder {
    /* Recent browsers */
    text-transform: none;
}

.select2-container {
	/* The container where the selectbox is housing*/
	box-sizing: border-box; 
    display: inline-block; 
    position: relative; 
    margin: 0; 
    margin-bottom: 0.5rem; 
    vertical-align: middle; 
}
	.select2-container .select2-selection--single {
		/* Selection box itself */
        display: block; 
        padding: 0.625rem; 
        color: #111827; 
        width: 100%; 
        height: 3rem; 
        border-radius: 0.125rem; 
        border-width: 1px; 
        border-color: #EB615B;
        background: #EEEEEE;
		box-sizing: border-box; 
        cursor: pointer; 
        user-select: none; 
	}

		.select2-container .select2-selection--single .select2-selection__arrow {
			/* DIV inside Selection box with text, clear button and arrow down*/
			position: absolute;
            margin-right: 0.625rem;
            margin-top: 0.625rem;
            margin-bottom: 0;
		}

		.select2-container .select2-selection--single .select2-selection__rendered {
			/* DIV inside Selection box with text, clear button and arrow down*/
			display: block; 
            padding-left: 0.25rem; 
            padding-right: 1.5rem; 
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap; 
            height: 3rem; 
		}
		.select2-container .select2-selection--single .select2-selection__clear {
			/* The DIV where the X is housing to clear the chosen option */
			position: relative; 
            margin: -0.25rem; 
		}
	.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
		/*@apply;*/
	}
	
	.select2-container .select2-selection--multiple {
		box-sizing: border-box; 
        display: block; 
        overflow: hidden; 
        height: 1rem; 
        cursor: pointer; 
        user-select: none; 
	}

	.select2-container .select2-selection--multiple .select2-selection__rendered {
		display: inline-block; 
        padding-left: 0.5rem; 
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap; 
        white-space: nowrap; 
	}
	.select2-container .select2-search--inline {
		/* Search box*/
		float: left;
	}
		.select2-container .select2-search--inline .select2-search__field {
			box-sizing: border-box; 
            padding-left: 0.25rem; 
            margin-top: 0.25rem;
            margin-bottom: 0.25rem; 
            font-size: 1rem;
            line-height: 1.5rem; 
            width: 100%; 
            border-width: 1px; 
            border-color: #000;
		}
			.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
				appearance: none;
			}

.select2-dropdown {
	/* Dropdown area after the arrow down is clicked */
    box-sizing: border-box; 
    display: block; 
    float: left; 
    position: absolute; 
    z-index: 50; 
    width: auto; 
    border-width: 1px; 
    border-color: #EB615B;
    background: #EEEEEE;
    border-style: solid; 
}

.select2-results {
	display: block; 
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    color: #000000; 
}

.select2-results__options {
	padding: 0; 
    margin: 0; 
    list-style-type: none; 
}

.select2-results__option {
	/* The rows with results that you see after dropdown.
	Increase p-1 to p-2 to have more space between results */
	padding: 0.25rem; 
    user-select: none; 

}
	.select2-results__option[aria-selected] {
    	cursor: pointer; 
    }
	.select2-container--default .select2-results__option--highlighted[aria-selected] {
        background-color: #EB615B;
        border-radius: 0.25rem;
        color: #fff;
    }

.select2-container--open .select2-dropdown {
	/* Dropdown container opened and results are shown*/
	left: 0; 
    /* margin-top: 0.75rem;  */
}

.select2-container--open .select2-dropdown--above {
	/* The left and right borders of the option rows */
	/* border-radius: 0.25rem;  */
    border-color: #EB615B; 
}

.select2-container--open .select2-dropdown--below {
	/* The left and right borders of the option rows */
	border-radius: 0 0 0.25rem 0.25rem; 
    border-color: #EB615B; 
}

.select2-search--dropdown {
	/* Search dropdown element*/
	display: block; 
    padding: 0.5rem; 
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);  
}
	.select2-search--dropdown .select2-search__field {
		/* Search box itself where you can enter text*/
		box-sizing: border-box; 
        padding: 0.75rem; 
        background-color: #FAFAFA; 
        height: 2.5rem; 
        border-radius: 0.25rem; 
        border-width: 2px; 
        border-color: #000; 
        outline: 0; 
		width: 100%;
	}

	.select2-container--default .select2-search--dropdown .select2-search__field {
		/* Search box itself where you can enter text*/
		box-sizing: border-box; 
        padding: 0.25rem; 
        background-color: #FAFAFA; 
        height: 2.5rem; 
        border-radius: 0.25rem; 
        border-width: 1px; 
        border-color: #EB615B; 
        outline: 0; 
		width: 100%;
	}
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
		appearance: none;
	}
.select2-search--dropdown.select2-search--hide {
	display: none;
}

.select2-close-mask {
	display: block; 
    padding: 0; 
    margin: 0; 
    width: 3rem; 
    min-width: 100%; 
	border: 0;
	position: fixed;
	left: 0;
	top: 0;
	min-height: 100%;
	height: auto;
	width: auto;
	opacity: 0;
	z-index: 99;
	background-color: #fff;
	filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important; }
