/*
 * Site
 * ----------------------------------------------------------------------
 */

  * {
    padding: 0;
    margin: 0;
  }

  html,body {
    font-family: Arial;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

/*
 * Header
 * ----------------------------------------------------------------------
 */

.header {
  width:100%;
  height:47px;
  min-width: 370px;
  border-bottom: 1px solid #ccc;
  background-color: #f1f1f1;
  position: relative;
}

.header_title {
    font-size: 17px;
    font-weight: bolder;
    position: absolute;
    margin-left:18px;
    top: 50%;
    transform: translateY(-50%);
}


/*
 * Tab content
 * ----------------------------------------------------------------------
 */

/* Style the tab content */
.tabcontent {
  display: none;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;

  position: absolute;
  
  margin: 12px 0px;
  padding: 0px 12px;
  top:48px;
  bottom:0px;
  width:100%;
  box-sizing: border-box;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}


/*
 * Drowdown Menu
 * ----------------------------------------------------------------------
 */

  .dropdown {
    float: right;
    margin-top: 4px;
    margin-right: 10px;
  }

  .dropdown__face {
    background-color: #fff;
    padding: 10px 10px;
    border-radius: 15px;
    display: block;
    position: relative;
    height:18px;
    min-width: 60px;
    font-weight: bolder;
    background-size: 25px 25px; 
    background-repeat: no-repeat;
    background-position: center left 10px;
  } 

  .dropdown__text {
    margin-left: 35px;
    white-space: nowrap;
    margin-right: 50px;
    min-width: 180px;
  }

  .dropdown__arrow {
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    position: absolute;
    top: 47%;
    right: 30px;
    width: 10px;
    height: 10px;
      transform: rotate(45deg) translateY(-50%);
      transform-origin: right;
  }

  .dropdown input {
    display: none;
  }

  .dropdown button {
    padding: 10px 10px;
    display: block;
    position: relative;
    border: none;
    border-top: solid 1px #ccc;
    width: 100%;
    text-align: left;
    background-size: 25px 25px; 
    background-repeat: no-repeat;
    background-position: center left 10px;
    background-color: #fff;
    float: left;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    padding-left:45px;
    font-size: 17px;  
  }

  .dropdown button:hover {
    background-color: #ddd;
  }

  .dropdown_item_type1 {
    background-color: #f1f1f1 !important;
    font-weight: bold;
  }

  .dropdown_item_divider {
    border-top: solid 1px black !important;
  }

  .dropdown__items {
    background-color: #fff;
    border-radius: 0px 0px 15px 15px;  
    position: absolute;
    width: 280px;
    right:0px;
    margin-right:10px;
    list-style: none;
    list-style-type: none;
    justify-content: space-between;
    visibility: hidden;
    opacity: 0;
    z-index: 999999;
    transition: all 0.4s cubic-bezier(0.93, 0.88, 0.1, 0.8);
    border: solid 1px black;
  }

  .dropdown__items li:last-child button{
    border-radius: 0px 0px 15px 15px;
  }


  @media (max-width: 700px) {

    .dropdown {
      width: 80px;
    } 
  
    .dropdown__text {
      visibility: hidden;
    }
  }