.phone-input-component {
    position: relative;
    width: 100%;
}

.phone-input-component .material-input {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-input-component .material-input .country-select {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    outline: none;
}

.phone-input-component .material-input .country-select .expand-icon {
    color: #60636C;
    transition: .3s;
}

.phone-input-component .material-input .country-select .expand-icon.active {
    color: #2188D9;
    transform: rotate(180deg);
}

.phone-input-component .material-input .country-select .code {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
}

.phone-input-component .material-input .country-select:focus .expand-icon {
    color: #2188D9;
}

.phone-input-component .material-input .phone-input {
    flex: 1;
    border: none;
    outline: none;
    box-shadow: none;
}

.phone-input-component .country-dropdown-list {
    width: inherit;
    margin-top: 8px;
}