.wrong-input-helptext {
    color: #e82d4a;
    margin-top: 2px;
    margin-bottom: 20px;

}

.wrong-input-account-helptext {
    color: #e82d4a;
    text-align: left;
    margin-top: 2px;
    margin-bottom: 20px;

}

.my-dropdown-toggle::after {
    content: none;
}

.card-body-moreButtons-icons a {
    background-color: white;
}

.card-body-moreButtons-icons a i {
    color: #c6d2e1;
}

.my-dropdown-toggle::after {
    content: none;
}

.ui-autocomplete { 
    height: 85px; /* Show 3 items  */
    overflow-y: scroll; 
    overflow-x: hidden;
}

.button-badge-filter {
    background: #e0e4e9;
    width: auto;
    height: 30px;
    font-size: 10px;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
    color: #27293b !important;
    box-shadow: 0 2px 3px rgba(0,0,0,0.4);
    pointer-events: none;
}



.button-badge-filter:before {
    content: attr(data-symbol);
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    display: block;
    border-radius: 50%;
    background: #ff3547;
    border: 1px solid #ff3547;
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
    color:white;
    position: absolute;
    top: -7px;
    left: -7px;
    pointer-events: all;
    
}


.button-badge-filter.badge-top-right:before {
    left: auto;
    right: -7px;
}


.button-badge-filter.badge-bottom-right:before {
    left: auto;
    top: auto;
    right: -7px;
    bottom: -7px;
}

.button-badge-filter.badge-bottom-left:before {
    top: auto;
    bottom: -7px;
}


/*
input[type="file"] {
    display: none;
}
*/

.custom-file-upload {
    border: 1px solid #ccc;
    border-radius: 7px;
    display: inline-block;
    padding: 5px 5px;
    cursor: pointer;
    
}
.custom-file-upload div:first-child {
  border: 3px dashed #ff3547;
  border-radius: 9px;
  padding: 40px 40px;
  
}

.custom-file-upload-excel {
    border: 1px solid #ccc;
    border-radius: 7px;
    display: inline-block;
    padding: 5px 5px;
    cursor: pointer;
    /* margin-left: 96px; */
    margin-bottom: 20px;    
}

.custom-file-upload-excel div:first-child {
  border: 3px dashed #ff3547;
  border-radius: 9px;
  padding: 40px 40px;  
}


.alert-floating {
    position: fixed;
    top: 10 px; 
    left:2%;
    width: 96%;
  }

.img-preview {
    width: 100px;
    height: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.center {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
}

.center-screen {
    position: absolute;
    top: 20%;
    left: 50%;
    margin-right: -50%;
    -webkit-transform:translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

div#my-dropzone {
    position: absolute;
    z-index: 1000;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: visibility 175ms, opacity 175ms;
    border-style:solid;
    border-width: 1px;
    border-color: rgba(255, 0, 0, 0);
    border-radius: inherit;
    text-shadow: 1px 1px 2px #000;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);    
  }


span#textnode {
    position: absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
    transition: font-size 175ms;
}

div#wrapper {
    position: relative;
    border-style:solid;
    border-width: 1px;
    border-color: rgba(255, 0, 0, 0);
    border-radius: inherit;
}

.hide-row {
    display: none;
}

.activation-title {
    position:relative;
    z-index:1;
    margin:50px auto;
    
}

.activation-title:before {
    background-color: #e82d4a;
    position:absolute;
    z-index:-1;
    top:0;
    left:0;
    width:100%;
    height:100px;
    content:"";
    border-radius: 10px 10px 0px 0px;
    
}


.icon-red{
    color: #e82d4a;
}

/********
CUSTOM-ICON
********/

.etherscan-icon{
    height: 16px;
    width: 16px;
}

/********
CUSTOM-MESSAGe
********/

.message {
    position: fixed; /* Sit on top of the page content */
    width: 70%; /* Full width (cover the whole page) */
    height: auto; /* Full height (cover the whole page) */
    top: 0;  /* position the top  edge of the element at the middle of the parent */
    left: 50%; /* position the left edge of the element at the middle of the parent */
    transform: translate(-50%, -50%); /* This is a shorthand of
                                         translateX(-50%) and translateY(-50%) */
    opacity: 90%;
    margin-top: 6.5rem;
    z-index: 1000000; /* Specify a stack order in case you're using a different order for other elements */
    padding: 30px;
    font-size: 15px;
  }

.message p{
    margin-bottom: 5px;
    
}

.inline-h {
    display: inline;
}

.pagination-items {
    width: 99%;
}
/*
.loader {
    width: 70px;
    height: 70px;
    top: 40%;
    left: 50%;
    display: inline-block;
    position: absolute;
    background: #e82d4a;
    box-sizing: border-box;
    animation: flipX 1s linear infinite;
  }
*/
  @keyframes flipX {
    0% {
      transform: perspective(200px) rotateX(0deg) rotateY(0deg);
    }
    50% {
      transform: perspective(200px) rotateX(-180deg) rotateY(0deg);
    }
    100% {
      transform: perspective(200px) rotateX(-180deg) rotateY(-180deg);
    }
  }

.batch-button {
      width: 100px;
  }
.custom-icon-ajust {
    padding-right: 3.75px;
}

.special {
    color: inherit;
}
.special:hover {
    color: #e82d4a;
}

.btn-save  {
    border-radius: 10px;
    background-color: #e0e4e9;
    border: none;
    outline: none;
    padding: 15px 30px;
    color: #27293b;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
}

.btn-new-collector-sale  {
    border-radius: 10px;
    background-color: #e0e4e9;
    border: none;
    outline: none;
    padding: 7px 5px;
    color: #27293b;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
}

@keyframes tipsy {
    0% {
      transform: translateX(-50%) translateY(-50%) rotate(0deg);
    }
    100% {
      transform: translateX(-50%) translateY(-50%) rotate(360deg);
    }
  }
  
  
.loader {
    color: #fffbf1;
    font-size: 60px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: -3px;
    margin: 0;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.loader:before,
.loader:after {
content: '';
padding: .9em .4em;
position: absolute;
left: 50%;
width: 120%;
top: 50%;
display: block;
border: 15px solid #e82d4a;
transform: translateX(-50%) translateY(-50%) rotate(0deg);
animation: 10s infinite alternate ease-in-out tipsy;
}

.loader:before {
border-color: #e82d4a #e82d4a rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
z-index: -1;
}

.loader:after {
border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e82d4a #e82d4a;
box-shadow: 5px 5px 5px rgba(46, 46, 49, .8);
}

.btn-search {
    background-color: #e0e4e9;
    padding: 10px 20px;
}

.td-width-medium {
    width:80px;
}

*:focus{
    outline-color: #e82d4a;  
}


.crop-control-buttons {
    font-size: 13px;
}

.crop-control-buttons:first {
    margin-right: 3px;
    border: 1px solid red;
}

.img-profile-left {
    width: 42px;
    height: 43px;
    border-radius: 100%;
}

.img-profile-top {
    width: 56px;
    height: 57px;
    border-radius: 100%;
}

.img-profile-form {
    border-radius: 100%;
}

.certificate-list-buttons {
    font-size: 70%;
}

.carousel-control-prev,
.carousel-control-next{
    bottom: 50%; /* Aligns it at the bottom */
}

.overlay-container {
    position: relative;
    width: 100%;

  }

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .3s ease;
    background-color: rgb(0, 0, 0);
    cursor: pointer;
  }

  .overlay-container:hover .overlay {
    opacity: 0.5;
  }
  
  .visualizator-icon {
    color: #e0e4e9;
    font-size: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
  }

  .visualizator-icon:hover {
    color: #e0e4e9;

  }

  .carousel-item {
    /*height: 100vh;*/
    min-height: 350px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }

