/*!
 * Toastify js 1.12.0
 * https://github.com/apvarun/toastify-js
 * @license MIT licensed
 *
 * Copyright (C) 2018 Varun A P
 */

.toastify {
    padding: 12px 20px;
    color: #ffffff;
    display: inline-block;
    box-shadow: 0 0 10px rgb(255 119 38);
    border: 1px solid #ff7726;
    background: #101113;
    position: fixed;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    max-width: calc(50% - 20px);
    z-index: 2147483647;
}
.toastify.on {
    opacity: 1;
}

.toast-close {
    background: transparent;
    border: 0;
    color: #ff7726;
    cursor: pointer;
    font-family: inherit;
    font-size: 20px;
    font-weight: 300;
    opacity: 0.8;
    margin: -6px 0 0 10px;
    vertical-align: middle;
}

.toastify-right {
    right: 15px;
}

.toastify-left {
    left: 15px;
}

.toastify-top {
    top: -150px;
}

.toastify-bottom {
    bottom: -150px;
}

.toastify-rounded {
    border-radius: 25px;
}

.toastify-avatar {
    width: 20px;
    height: auto;
    margin: -2px 7px 0 0;
    vertical-align: middle;
}

.toastify-center {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: fit-content;
    max-width: -moz-fit-content;
}

.follow .toastify-avatar {width: 17px;}

@media only screen and (max-width: 767px) {
  .toastify-right, .toastify-left {
    max-width: fit-content;
  }
  .toastify-right {
    right: 0;
  }
  .toastify {font-size: 12px;}
  .toast-close {font-size: 14px; margin-top: -2px;}
  .follow .toastify-avatar {width: 15px;}
}

@media only screen and (max-width: 360px) {
    
}
