.my-select {
    display: inline-block;
    width: auto;
    min-width: 100%;
    box-sizing: border-box;
    vertical-align: middle;
    /* color: #515a6e; */
    font-size: 14px;
    line-height: normal;
    position: relative;
}

.select-selection {
    display: block;
    box-sizing: border-box;
    outline: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    position: relative;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #E2E2E2;
    transition: all .2s ease-in-out;
}

.select-selection:hover,
.select-selection.select-focus {
    /*border-color: #57a3f3;
    box-shadow: 0 0 0 1px rgba(45, 140, 240, .1);*/
}

.select-selected-value {
    display: block;
    height: 0.32rem;
    line-height: 0.32rem;
    font-size: 0.15rem;
    /* color: #313340; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 0.1rem;
    padding-right: 24px;
}
.select-selected-value.select-selected-default{
	color: #B1B3BD;
}
.my-select  .icon-select-arrow {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 30px;
    width: 6px;
    height: 4px;
    line-height: 1;
    font-size: 14px;
    color: #E2E2E2;
    transition: all .2s ease-in-out;
    display: inline-block;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: middle;
}
.my-select .icon-select-arrow{
	background: url(../../img/verification/down.png) no-repeat center;
	background-size:contain ;
}
.my-select .icon-select-arrow::before{
	content: none;
}
.select-dropdown {
    width: 100%;
    min-width: 100%;
    max-height: 200px;
    overflow: auto;
    margin: 5px 0;
    padding: 5px 0;
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 4px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .2);
    position: absolute;
    z-index: 2;
    transform-origin: center top 0px;
    transition: all 0.3s;
    will-change: top, left;
    top: 100%;
    left: 0;
    transform: scale(1, 0);
    opacity: 0;
}

.select-item {
    line-height: normal;
    padding: 7px 16px;
    clear: both;
    color: #515a6e;
    font-size: 12px !important;
    white-space: nowrap;
    list-style: none;
    cursor: pointer;
    transition: background .2s ease-in-out;
}

.select-item.select-item-selected,
.select-item:hover {
    color: #2d8cf0;
    background-color: #f3f3f3;
}

.login-area-code-select .select-selection{
  border: 0;
  background-color:transparent;
  padding-right: 0.05rem;
}
.login-area-code-select .select-selected-value{
    padding-right: 0;
    text-align: left;
    max-width: 0.55rem;
}
.login-area-code-select .my-select .icon-select-arrow{
    right:  0;
}