    
        .custom-select {
            position: relative;
            width: 100%;
            display:flex;
            font-size: 16px;
            cursor: pointer;
            padding:0;
        }
         .custom-select .selected-option {
            position:relative;
            width: 100%;
            background-color: #fff;  
            padding: 8px 32px 8px 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 20px 0px 0px 20px;
        }
      
          .custom-select .selected-option::before {
              content: "\25BC"; 
              display: inline-block; 
              font-size: 12px;
              transform: rotate(0deg);
              transition: transform 0.3s ease-in-out;
                position: absolute; 
                top: 50%;
                right: 10px;  
                transform:  translateY(-50%);
                color:#5296d5;
        }
 
          .custom-select .selected-option.open::before {
              transform: rotate(180deg) translateY(50%);
        } 
        .custom-select .options-container {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            z-index: 1;
            padding-top:20px;
            padding-bottom:20px;
        }
  .container_scroll{
            height: 50vh;
            overflow: auto;
        }
        .custom-select .option {
            padding: 8px 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .custom-select .option:hover {
            background-color: #f1f1f1;
        }

        .custom-select .hide {
            display: none;
        } 
        .h_50{
            height:50px;
        }
        .flag-icon {
    border-radius: 20%; 
        }
        .country-emoji{
            padding-left:30px;
        }
        .select_placeholder{
            color:gray;
        }