/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 18.06.2020, 23:41:32
    Author     : roman
*/

.tx-tradesystem {
   padding:20px 0;   
   font-size: 14px;
}

.clearDiv { clear:both; }

.user-image {
    max-height:150px;
    max-width:150px;
    border: #FF0000 2px soild;
    padding-bottom: 10px;
}


.login-form-row {
    margin-bottom: 5px;
}

.login-form-row label {
    min-width:130px;
}

.login-form-row input {
    
}


.logout-button {
    float: none;
    padding: 0.2em;
    margin: 10px 0;
}

.tx-tradesystem .button-link {
    margin: 0 10px 1em 0;
}

.account-area {
    float:left;
    clear:both;
    width:100%;
    margin-bottom: 10px;
}

.account-area-left {
    float:left; 
    width:70%;
}
.account-area-right {
    float:right;
     width:30%;  
}
.account-area-right .user-image {  float:right;  }


.account-info {
    display: flex; 
}
.account-info-left { min-width:150px;  padding:10px; margin-right: 20px;   background-color: #F2F3F4; }
.account-info-right { min-width:150px;  padding:10px; background-color: #F2F3F4; }


/* ------- statisik ------ */

.stats {
    background-color: #F2F3F4;
}

.stats .topic {
    background-color: #0A0;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color:#FFFFFF;
    padding:4px;
}
.stats .buyer, .stats .seller { display:flex; padding:10px;  margin-bottom: 10px; font-size: 13px;}
.stats .buyer  { margin-top:10px; }

.stats .rating { 
    flex:column;
    min-width: 150px;
    text-align: center;
}

.stats .rating span { 
    font-size: 18px;
    font-weight: bold;
}


.stats .info { 
    flex-grow: 4;
    flex:column;
}

.negative { color:#FF0000; }
.neutral { color:#0072ffe8; }
.positive { color:#00AA00; }

.star { height: 16px; width: 16px;}
.icon-delete { height: 16px; width: 16px; margin-right:10px; }

.feedback-info {font-size: 13px;}


/* profile */
.btn { display:block; padding:5px 15px; }
.buy-big { background-color: #00FF00; float:left; }
.sell-big { background-color: #3399FF; float:right; }





/*search resultlist*/
.tx-femanager .list-group-item .user-image {
    height: auto;
    width:100%;
    max-height:90px;
    max-width:90px;
    float:right!important;
}

.tx-femanager .list-group-item:hover {
   background-color: #F2F3F4;
}






.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}