/* Empty. Add your own CSS if you like */
ion-content{
    background-color: #6CB9D0;
    color: white;
}

.cc-wrapper{
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0px auto;
}

.cc-wrapper__title{
    align-self: center;
    text-align: center;
}

.cc-wrapper__sections{
    display: flex;
    flex-direction: column;
}

.cc-wrapper__sections__data{
    border: 1px solid black;
    display: flex;
    flex-direction: row;
}

.cc-wrapper__sections__data__select{
    width: 30%;
}

.cc-wrapper__sections__data__input{
    width: 70%;
}

.cc-wrapper__sections__img{
    align-self: center;
    margin: 10px 0px 10px 0px;
}

.cc-wrapper__button__btn{
    width: 100%;
    height: 40px;
    background-color: #40889E;
    font-size: 20px;
    border: 0px;
    border-radius: 5px;
    color: white;
    margin: 10px 0px 10px 0px;
}

/********currency rates table******/
.cr-wrapper{
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0px auto;
    border: 2px solid white;
}
.cr-wrapper__table-title{
    text-align: center;
    font-size: 20px;
    color: white;
    height: 40px;
    padding-top: 10px;
}
.cr-wrapper__table-header{
    display: flex;
    flex-direction: row;
    border-top: 1px solid white;
    background-color: #40889E;
    height: 40px;    
}
.cr-wraper__table-header_col{
    width: 25%;
    color: white;
    font-size: 18px;
    border-right: 1px solid white;    
    text-align: center;
    height: 40px;
    padding-top: 10px;
}
.cr-wraper__table-header_col:last-child{
    border: 0px;
}
.cr-wrapper_table-body{
    display: flex;
    flex-direction: row;
    border-top: 1px solid white;
    height: 40px;
}
.cr-wrapper_table-body:nth-child(even) {
    background-color: #40889E;
}
.cr-wrapper_table-body_col-one_img{
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 50%;
    margin-left: 4px;
    align-self: center;
}
.cr-wrapper_table-body_col-one_curr{
    margin-left: 4px;
    align-self: center;
}
.cr-wrapper_table-body_col-one{
    display: flex;
    flex-direction: row;
    width: 25%;
    border-right: 1px solid white;
    font-size: 16px;
}
.cr-wrapper_table-body_col{
    width: 25%;
    border-right: 1px solid white;
    display: flex;
    justify-content: center;
    font-size: 16px;
}
.cr-wrapper_table-body_col:last-child{
    border: 0px;
}
.cr-wrapper_table-body_col_val{
    align-self: center;
}
/********end currency rates table******/

.tabs-top >.tabs, .tabs.tabs-top
{
    top: 0 !important;
}

.has-tabs-top {
  top: 50px!important;
}

.tabs-striped .tab-item.tab-item-active, 
.tabs-striped > .tabs
{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
}
.tabs-background-positive{
	background-color:#40889E !important;
}


/******** currency drop down ******/
.wrapp-curr-dropdown{
    height: 40px;
    width: 40%;
    background-color: white;
    position: relative;
    border-radius: 4px 0px 0px 4px;
}
.wrapp-curr-dropdown:after{
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 8px;
    top: 50%;
    margin-top: -4px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid black;
}
.wrapp-curr-dropdown__box{
    display: flex;
    padding: 4px;
    flex-direction: row;
    color: black;
}
.wrapp-curr-dropdown__box__pict{
    margin-left: 2px;
    vertical-align: middle;
    margin-top: 1px;
}
.wrapp-curr-dropdown__box__text{
    margin-left: 2px;
    margin-top: 7px;
    font-size: 18px;
}
.wrapp-curr-dropdown__box__pict__img{
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 50%;
}
.wrapp-curr-dropdown__box:hover{
    background-color: #40889E;
    height: 40px;
}
.dropdown {
    opacity: 0;
    background-color: white;
    top: 100%;
    height: 100%;
    pointer-events: none;
}
.dropdown.togg {
    opacity: 1;
    background-color: white;
    top: 100%;
    height: 100%;
    pointer-events: auto;
   
}
.wrapp-curr{
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0px auto;
}
.wrapp-curr__input{
    height: 40px !important;
    width: 60%;
    border-radius: 0px 4px 4px 0px;
    text-align: right;
    padding-right: 5px;
    font-size: 18px !important;
}
/******** end currency drop down ******/

.curr-modal{
    width: 80%; 
    height: 70%; 
    top: 0%; 
    left: 10%; 
    right: 10%;
}
.modal-color{
    background-color: white !important;
}

@media (max-width: 680px) {
    .active .modal-backdrop-bg {
    opacity: .5;
    transition: opacity 300ms ease-in-out;
    background-color: #000;
    }
}

.modal-wrapper{
    position: absolute;
    width: 90vw;
    max-height: 90vh;
    top: 0; 
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

