@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap&subset=cyrillic,latin-ext');

h4,
h5,
h6,
h1,
h2,
h3 {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

p {
    margin: 1em 0;
}

.pages ul, .note-editable ul {
    display: block;
    list-style-type: disc;
    margin: 1em 0 1em;
    padding-left: 40px;
}

.pages li .note-editable li {
    display: list-item;
}

*:focus {
    outline: none !important;
    box-shadow: none !important;
}

* {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    -webkit-overflow-scrolling: touch;
    border-radius: 0;
}

body > .skiptranslate {
    display: none;
}

body {
    top: 0px !important;
}

.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}

.noscroll {
    height: 100vh !important;
    width: 100vw !important;
    overflow: hidden !important;
}

.dim {
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: none;
    opacity: 0.7;
    background: white;
    z-index: 3;
    touch-action: none;
}

.block-touch {
    touch-action: none;
}

.ico-triangle {
    font-size: 4px !important;
    padding-bottom: 4px;
    vertical-align: middle;
}

.icon-red {
    background: #FF4C00;
    color: #FAFAFA !important;
}

.icon-green {
    color: #000000;
    background: #D9E021;
}

.icon-orange {
    color: #000000;
    background: #8c4315;
}

.green {
    color: #D9E021 !important;
}

.red {
    color: #FF4C00 !important;
}

.blue {
    color: #0654BA !important;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto';
    font-size: 100%;
    background: white;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

hr {
    margin: 0;
    border-top: 1px solid #E0E0E0;
}

a {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 20px;
    color: #0654BA;
}

a:hover {
    color: #0654BA;
    text-decoration: none;
}

select {
    width: 100%;
    padding-top: 3px;
    padding-bottom: 3px;
    border: 0;
    color: #000000;
    font-size: 12px;
    min-height: 36PX;
    background: url('images/triangle_select.png') no-repeat right center #FAFAFA !important;
    padding-left: 10px;
}

h3 {
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: 36px;
    letter-spacing: 0.05em;
}

h4 {
    font-weight: bold;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 1px;
    color: #000000;
    padding-top: 22px;
    padding-bottom: 19px;
}

h4.with-line {
    padding-bottom: 10px;
}

h5 {
    font-weight: normal;
    font-size: 22px;
    line-height: 36px;
    letter-spacing: 0.05em;
    color: #232323;
}

.bg-grey {
    background: #FAFAFA;
}

.border-top-grey {
    border-top: 1px solid #E0E0E0;
}

.bg-white {
    background: #EFEFEF;
}

.breadcrumbs {
    display: inline-block;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 30px;
}

.breadcrumbs li {
    list-style: none;
    float: left;
    display: block;
    margin-left: 10px;
    margin-right: 10px;
}

.breadcrumbs-item i {
    margin-right: 10px;
    color: #0654BA;
    font-size: 6px;
    vertical-align: middle;
}


/*
.breadcrumbs-item+.breadcrumbs-item::before {
  font-family: 'icomoon' !important;
  content: "\e90c";
  transform: rotate(-90deg);
  font-size: 3px;
  vertical-align: top;
  margin-top: 8px;
  color:#0654BA;
  display:block;
  float:left;
  margin-right: 10px;
} */

.breadcrumbs-item a {
    color: #737373;
}

.breadcrumbs-item.active a {
    color: #232323;
}


/* The container */

.form-container {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 18px;
}


/* Hide the browser's default radio button */

.form-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}


/* Create a custom radio button */

.form-span {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #C4C4C4;
}


/* On mouse-over, add a grey background color */

.form-container:hover input ~ .form-span {
    border: 1px solid #0654BA;
}


/* When the radio button is checked, add a blue background */

.form-container input:checked ~ .form-span {
    background-color: white;
    border: 1px solid #0654BA;
}


/* Create the indicator (the dot/circle - hidden when not checked) */

.form-span:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the indicator (dot/circle) when checked */

.form-container input:checked ~ .form-span:after {
    display: block;
}


/* Style the indicator (dot/circle) */

.form-container .form-span:after {
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0654BA;
}


/* On mouse-over, add a grey background color */

.form-container:hover input ~ .form-span.red {
    border: 1px solid red;
}


/* When the radio button is checked, add a blue background */

.form-container input:checked ~ .form-span.red {
    background-color: white;
    border: 1px solid red;
}

.form-container .form-span.red:after {
    background: red;
}

.app-container {
    max-width: 1180px;
    width: calc(100% - 20px);
    margin: auto;
}

.btn {
    background: #ffffff;
    border-radius: 30px;
    border: 1px solid #D9E021;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
    text-transform: uppercase;
    color: black;
    font-size: 11px;
    /*letter-spacing: 0.1em;*/
    padding-top: 8px;
    padding-bottom: 8px;
}

.btn-primary:hover {
    background: #FFFFFF;
    border: 1px solid #D9E021;
    color: black;
    text-shadow: 0 0 0.30px black
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    background: #C1C71D;
    color: black;
}

.btn .count {
    font-weight: normal;
    padding-left: 5px;
}

.btn-primary {
    border: 1px solid transparent;
    background: #D9E021;
    font-weight: bold;
}

.btn-primary:hover {
    background: rgb(206, 209, 102);
    border: 1px solid transparent;
}

.btn-primary.disabled {
    background: #D9E021;
    color: #232323;
    border: 1px solid transparent;
}

.btn-info {
    border: 1px solid transparent;
    background: #0654BA;
    color: #FFFFFF;
}

.btn-info:hover {
    border: 1px solid transparent;
    background: #043D87;
    color: #FFFFFF;
}

.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show > .btn-info.dropdown-toggle {
    background: #043D87;
}

.btn-light {
    border: 1px solid transparent;
    background: #E0E0E0;
    color: #000000;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
    background: #0654BA;
}

.btn-dark {
    border: 1px solid transparent;
    background: #000000;
    color: white;
}

.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show > .btn-dark.dropdown-toggle {
    background: #1f1f1f;
}

.btn-danger {
    border: 1px solid transparent;
    background: #FAFAFA;
    color: #FF0000;
}

.btn-danger:hover {
    border: 1px solid #FF0000;
    background: #FAFAFA;
    color: #FF0000;
}

.btn-danger:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show > .btn-dark.dropdown-toggle {
    background: #FF0000;
    color: #FFFFFF;
}

.btn-light-blue {
    border: 1px solid transparent;
    background: #FAFAFA;
    color: #0654BA;
}

.btn-light-blue:hover {
    border: 1px solid #0654BA;
    background: #FAFAFA;
    color: #0654BA;
}

.btn-light-blue:not(:disabled):not(.disabled).active,
.btn-light-blue:not(:disabled):not(.disabled):active,
.show > .btn-light-blue.dropdown-toggle {
    background: #0654BA;
    color: #FFFFFF;
    border: 1px solid #0654BA;
}

.btn-fixed-width {
    min-width: 205px;
}

.btn-full {
    min-width: 100%;
    width: 100%;
}

header {
    background: #FAFAFA;
    height: 92px;
    line-height: 92px;
}

.language-select a {
    color: #232323;
    font-size: 14px;
}

.search-input {
    margin-left: -20px;
}

.search-input input {
    height: 35px;
    background: #FFFFFF;
    border-radius: 30px;
    border: 0;
    font-size: 12px;
    width: 280px;
    padding-left: 35px !important;
}

.search-input input :focus {
    outline: 0;
}

.search-input .ico-search {
    position: relative;
    left: 30px;
    font-size: 15px;
    top: 3px;
    color: #232323
}

.header-links li {
    list-style: none;
    margin-right: 20px;
    float: left;
}

.header-links li a {
    font-size: 12px;
    text-transform: uppercase;
    color: #000000;
}

.header-links [class^=ico] {
    font-size: 16px;
    color: #959595;
    position: relative;
    top: 3px;
    margin-right: 10px;
}

.how-it-works {
    z-index: 9;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #232323;
    text-align: center;
    margin-top: -24px;
    position: relative;
    display: inline-block;
    margin-left: 2px
}

.in-bubble {
    background: #dce001;
    display: inline-block;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.in-bubble .ico-new {
    font-size: 12px;
    top: 0;
    margin-right: 0;
    left: 3px;
}

.in-bubble .ico-new:before {
    font-weight: bold;
    color: black;
}

.in-big-bubble {
    background: #dce001;
    display: inline-block;
    border-radius: 50%;
    padding-left: 0px;
    cursor: pointer;
    position: relative;
}

.in-big-bubble [class^=ico] {
    position: relative;
    top: 1px;
    left: 1px;
}

.in-big-bubble-blue {
    background: #0754b9;
}

.in-big-bubble-blue [class^=ico]:before {
    color: white;
}


.in-big-bubble .ico-new {
    font-size: 44px;
}

.in-big-bubble .ico-new:before {
    color: black;
}

.how-it-works-icon-question {
    font-size: 44px;
}

.how-it-works-icon-x {
    font-size: 44px;
}

.how-it-works .how-it-works-icon-question {
    display: inline-block !important;
}

.how-it-works .how-it-works-icon-x {
    display: none !important;
}

.how-it-works.open .how-it-works-icon-question {
    display: none !important;
}

.how-it-works.open .how-it-works-icon-x {
    display: inline-block !important;
}


.big-bubble-blue {
    background: #0754b9;
}

.big-bubble [class^=ico] {
    color: white;
}


/*.how-it-works [class^=ico] {*/
/*    font-size: 44px;*/
/*    padding-bottom: 5px;*/
/*    cursor: pointer;*/
/*}*/

/*.how-it-works .ico-help-round .path2 {*/
/*    margin-left: -2px;*/
/*}*/

/*.how-it-works .ico-new .path2 {*/
/*    margin-left: -2px;*/
/*}*/

/*.how-it-works .ico-x-round {*/
/*    display: none;*/
/*}*/

/*.how-it-works .ico-x-round .path2 {*/
/*    margin-left: -2px;*/
/*}*/

.how-it-works .title {
    padding-top: 5px;
    cursor: pointer;
    color: #000000;
}

.how-it-works-modal {
    display: none;
    position: relative;
    left: 0;
    height: calc(100vh - 92px);
    overflow-y: scroll;
    width: 100%;
    text-align: center;
    background: white;
    vertical-align: middle;
    align-content: center;
    align-items: center;
    background: white;
    z-index: 100;
}

.how-it-works-icon-div {
    cursor: pointer;
}

.how-it-works-icon-div.not-approved {
    opacity: 0.5;
}

.hohow-it-works-big + .app-container {
    margin-top: -50px;
}

.how-it-works-big {
    margin-top: -50px;
}

.mobile-icons li {
    list-style: none;
    float: left;
    margin-right: 20px;
}

.mobile-icons .fas {
    font-size: 16px;
}

.icon-menu i {
    background: #E0E0E0;
    color: black;
}

.icon-menu.open i {
    background: black;
    color: white;
}

.icon-x-blue {
    background: transparent !important;
    color: #0654BA !important;
}

.icon-profile {
    background: #FF4C00;
    color: white;
}

.icon-round {
    display: inline-block;
    border-radius: 60px;
    box-shadow: 0px 0px 2px #888;
    padding: 7px;
    text-align: center;
    height: 32px;
    width: 32px;
    /* line-height: 32px; */
    padding-top: 10px;
}

.icon-small {
    width: 16px;
    height: 16px;
    box-shadow: none;
}


/*
.how-it-works {
  cursor: pointer;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  z-index: 9;

  font-size: 10px;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #232323;
  margin-top: -20px;


  left: 50%;
transform: translateX(-50%);

} */

.how-it-works img {
    margin-bottom: 20px;
}

.how-it-works-steps-div {
    width: 100%;
}

.how-it-works-step {
    width: 100%;
}

.how-it-works-step .btn {
    margin-top: 50px;
}

.how-it-works-step .step {
    min-width: 180px;
    padding-top: 15px;
}

.how-it-works-li {
    background: url('/images/line.svg') repeat-x center center transparent;
    list-style: none;
    width: 80%
}

.how-it-works-li li {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #FFFFFF;
}

.step [class^=ico-step] {
    background: url('/images/ellipse.svg') #FFFFFF;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.how-it-works-li li.flex-fill {
    background: transparent !important;
}

.how-it-works-li li i {
    font-size: 82px;
    color: #0654BA
}

.how-it-works-li .number {
    font-size: 15px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 1px;
    color: #232323;
    padding-bottom: 7px;
}

.how-it-works-li .title {
    font-size: 15px;
    line-height: 26px;
    text-align: center;
    letter-spacing: 1px;
    color: #232323;
    font-weight: bold;
    padding-top: 13px;
    text-transform: uppercase;
}

.index-header {
    height: 400px;
    width: 100%;
}

.index-header-left {
    background: white;
}

.index-header-left h2,
.index-header-left p {
    width: 100%;
    padding-right: 30px;
}

.index-header-left p {
    font-size: 14px;
    line-height: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.index-header-left h2 {
    font-weight: bold;
    font-size: 42px;
    line-height: 46px;
    letter-spacing: 0.03em;
    color: #000000;
}


/* .index-header-right {
    overflow: hidden;
    background: #ffffff url('/images/header_bg.png') no-repeat center bottom;
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-image: url('/images/header_bg.png');
    background-image: -image-set (url("/images/header_bg.png") 1x, url("/images/header_bg@2x.png") 2x, url("/images/header_bg@3x.png") 3x);
    background-image: -webkit-image-set (url("/images/header_bg.png") 1x, url("/images/header_bg@2x.png") 2x, url("/images/header_bg@3x.png") 3x);
    background-position: center bottom;
    height: 100%;
} */

.index-header-right {
    overflow: hidden;
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-position: center bottom;
    height: 100%;
}

.index-header-right img {
    overflow: hidden;
    bottom: 0;
    max-height: 600px;;
    float: right;
}

.bold {
    font-weight: bold;
}

.bold-text {
    font-weight: bold;
    font-size: 13px;
    line-height: 16px;
    float: left;
}

.categories-list {
    display: flex;
    width: 100%;
    border-top: 1px solid #D9E021;
}


/*
.categories-list li {
  list-style:none;
  display:block;
  float:left;
  background:#FAFAFA;
  width:147.5px;
  height:125px;
  text-align:center;
} */

.categories-list li {
    list-style: none;
    /* display: flex; */
    /* float: left; */
    background: #FAFAFA;
    /* width: 147.5px; */
    height: 125px;
    text-align: center;
    /* flex-direction: row; */
    /* margin: auto;*/
    flex: 1;
}

/*.categories-list li img {*/
/*    padding-top: 30px;*/
/*}*/

.categories-list li.selected,
.categories-list li:hover {
    background: #D9E021;
    cursor: pointer;
}

.categories-list .title {
    font-size: 12px;
    line-height: 20px;
    display: block;
    color: #000000;
    padding-top: 10px;
}

.categories-list .count {
    font-size: 12px;
    line-height: 20px;
    display: block;
    color: #C4C4C4;
}

.categories-list li.selected .count,
.categories-list li:hover .count {
    color: #000000;
}

.categories-list.with-padding {
    flex-wrap: wrap;
    border-top: 0;
}

.categories-list.with-padding li {
    margin: 20px;
    width: 120px;
    height: 120px;
}

label {
    font-size: 12px;
    line-height: 12px;
    align-items: center;
    letter-spacing: 0.1em;
}

label.error {
    color: red !important;
}

.labels-grey label {
    color: #959595 !important;
}

.left-search div {
    line-height: 36px;
}

.open-more-filters .fas {
    margin-top: 5px;
}

.search-inputs li {
    list-style: none;
    float: left;
}

.auction-items {
    margin-top: 50px;
    margin-bottom: 120px;
}

.auction-items li {
    list-style: none;
    margin: 7px;
    transition: all 0.5s;
    margin-top: 28px !important;
    margin-bottom: 28px !important;
}

.auction-items li:hover,
.auction-items li.active {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.auction-items .title,
.auction-items .price {
    width: 100%;
    overflow: hidden;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
    max-width: 200px;
}

.auction-items .title {
    height: 55px;
    display: flex;
}

.auction-items .price {
    background: #FAFAFA;
    height: 52px;
    line-height:34px;
}

.auction-items .price {
    font-size: 22px;
    font-weight: bold;
}

.auction-items .title {
    font-size: 15px;
    line-height: 25px;
    text-align: center;
    color: #0654BA;
}

.auction-items .price {
    color: #000000;
}

.auction-items a {
    font-size:100%;
}

.auction-items a:hover {
    text-decoration: none;
    font-weight:normal;
}

.auction-items .end-time {
    background: #FAFAFA;
    height: 52px;
    line-height: 52px;
    border-top: 1px solid #E0E0E0;
    text-align: center;
}

.auction-items .end-time {
    color: #FF4C00;
    font-size: 15px;
    letter-spacing: 1px;
}

.auction-items img {
    width: 200px;
    /*height: 200px;*/
}

.auction-items .winning .price {
    background: #D9E021;
}

.auction-items .losing .price {
    background: #FF4C00;
}

.auction-items .total-bids-count {
    font-weight: bold;
}

.auction-items .image {
    position: relative
}

.auction-items .watch {
    position: absolute;
    right: 0;
    top: 0;
    padding: 5px;
    color: white;
    background: rgb(0 0 0 / 50%);
}

.auction-items .watch .ico-heart-o:before {
    color: #b6b2b2;
    transition: all 1s;
}

.auction-items .watch:hover .ico-heart-o:before {
    color: white;
    transition: all 1s;
}

.auction-items .watch.active .ico-heart-o:before {
    color: #d9e021;
    transition: all 1s;
}

.ads-actions .watch .ico-heart-o:before {
    transition: all 1s;
}

.ads-actions .watch.active .ico-heart-o:before {
    color: #d9e021;
    transition: all 1s;
}

.ico-heart-o.active:before {
    color: #d9e021;
}

.pagination {
    margin-bottom:10px;
}

.pagination li {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    font-size: 12px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
}

.pagination li.selected {
    background: #d9e021;
}

.sponsors-list {
    padding-top: 44px;
    padding-bottom: 44px;
}

.sponsors-list li {
    list-style: none;
    text-align: center;
}

.sponsors-list a {
    display: inline-block;
}

.sponsors-list img {
    max-width: 130px;
}

.index-footer h3 {
    font-weight: bold;
    font-size: 22px;
    line-height: 36px;
    letter-spacing: 0.05em;
    color: #1A1A1A;
    padding-top: 88px;
    padding-left: 15px;
}

footer {
    font-size: 12px;
    line-height: 12px;
    box-shadow: 5px 40px 60px 0px rgba(0, 0, 0, 0.75)
}

footer.in-index {
    margin-top: 0 !important;
}

.footer-mini .footer-left {
    margin-top: 25px;
    padding-bottom: 45px;
}

.footer-mini .footer-logo {
    margin-bottom: 0;
}

.footer-mini .footer-items {
    margin-top: 0;
}

footer a {
    color: #0654BA;
}

footer h3 {
    font-weight: bold;
    font-size: 22px;
    line-height: 36px;
}

footer h4 {
    font-weight: bold;
    font-size: 18px;
}

footer input[type="email"] {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.input-underline {
    border: 0;
    border-bottom: 1px solid #232323;
    color: #232323;
    min-width: 100px;
    max-width: 300px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: all 0.5s;
}

.input-underline::placeholder {
    color: #232323;
}

.input-underline:focus {
    border-bottom: 1px solid #D9E021;
}

.footer-logo {
    margin-bottom: 20px;
    display: block;
}

.footer-left {
    margin-top: 70px;
    padding-bottom: 20px;
}

.footer-right {
    padding-bottom: 20px;
}

.footer-items {
    margin-top: 25px;
}

footer a {
    display: table-row;
}

.footer-items li {
    float: left;
    width: 50%;
    padding-top: 20px;
    padding-bottom: 0px;
    list-style: none;
}

.footer-items .ico-right {
    font-size: 7px;
    color: #232323 !important;
    padding-right: 10px;
    vertical-align: middle;
    display: table-cell;
}

.footer-items .text {
    display: table-cell;
    vertical-align: middle;
}

.mobile-nav {
    display: none;
    position: fixed;
    width: 100%;
    z-index: 99;
    top: 92px;
    left: 0;
    max-height: calc(100vh - 92px); /*calc(100vh - 92px - 20px); */
    overflow-y: scroll;
    overflow-x: none;
    background: #FAFAFA;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    padding-bottom: 20px;
}

.mobile-nav-ul li {
    list-style: none;
    padding: 10px;
}

.mobile-nav-ul .btn {
    /*width:180px; buvo, netelpa naujas auckionas buttonas */
    width: 200px
}

.mobile-nav .ico-search {
    background: #E0E0E0;
    color: #232323;
}

.mobile-nav-bottom {
    height: 36px;
    line-height: 36px;
}

.mobile-nav-bottom a {
    color: black;
}


/*
// Extra small devices (portrait phones, less than 576px)
// No media query since this is the default in Bootstrap

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... } */


/* // Medium devices (tablets, 768px and up) */


/*
body {
  min-height:100vh;
}

footer {
  position: absolute;
  bottom: 0;
  width:100%;
} */


/* HAMGURGER */

.nav-icon {
    width: 15px;
    height: 25px;
    position: relative;
    /* margin: 50px auto; */
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: inline-block;
    border-radius: 60px;
    box-shadow: 0px 0px 2px #888;
    padding: 0.5em 0.6em;
}

.nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 80%;
    background: black;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}


/* Icon 3 */

.nav-icon span:nth-child(1) {
    top: 0px;
}

.nav-icon span:nth-child(2),
.nav-icon span:nth-child(3) {
    top: 8px;
}

.nav-icon span:nth-child(4) {
    top: 16px;
}

.nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}


/* TODO: perkelti */

.p2 {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 1px;
    color: #232323;
}

input[type="text"],
input[type="password"],
input[type="email"] {
    border: 0;
    border-bottom: 1px solid #232323;
    color: #232323;
    min-width: 100px;
    max-width: 300px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: all 0.5s;
    border-radius: 0;
    background: transparent;
    /* inputai profilyje */
    font-size: 12px;
    line-height: 20px;
    padding-left: 0;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus {
    background-color: transparent;
    border-color: transparent;
    border-bottom: 1px solid #D9E021;
    box-shadow: none;
}

input.error[type="text"],
input.error[type="password"],
input.error[type="email"] {
    border: 1px solid red !important;
}

select.error {
    border: 1px solid red !important;
}

input.error[type="text"]:focus,
input.error[type="password"]:focus,
input.error[type="email"]:focus {
    border-bottom: 1px solid rgb(255, 98, 98);
}

input.rounded {
    padding-left: 1.5rem;
    border-radius: 30px !important;
}

input.rounded:focus {
    border: 1px solid #D9E021;
}

.card {
    border: 0;
}

.card-alone {
    max-width: 420px;
}

.card-header {
    border: 0;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0.2em;
    color: #232323;
    background: transparent;
    text-transform: uppercase;
}

.card-body {
    background: #FAFAFA;
}

.card-body .col-form-label {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 1px;
    color: #232323;
    padding-left: 30px;
}

.card-body hr {
    padding-bottom: 32px;
}

.card-body h5 {
    padding-bottom: 15px;
    padding-top: 30px;
    font-weight: bold;
}

.card-body a {
    font-size: 100%;
}

.ads-options li {
    list-style: none;
    padding-bottom: 20px;
    width: 45%;
    margin-right: 5%;
    float: left;
    border-bottom: 1px solid transparent;
    display: table;
}

.ads-options li:hover {
    border-bottom: 1px solid #D9E021;
}

.ads-options li label {
    font-size: 12px;
    line-height: 20px;
    width: 100%;
    height: 100%;
    display: table-cell;
}

.ads-options li span {
    font-weight: bold;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 1px;
    display: table-cell;
}

.map-frame {
    border: 0 !important;
    height: 30vh;
    max-height: 800px;
    min-height: 400px
}

.input-text-div label {
    font-size: 12px !important;
    line-height: 20px !important;
    padding-bottom: 0;
    padding-left: 15px !important;
}

.input-text {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 1px;
    color: #232323;
    color: black !important;
    font-weight: bold
}

.input-text-div .editable {
    display: none;
}

.user-status {
    font-weight: bold;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 1px;
    color: #232323;
}

.user-status-title {
    font-size: 12px;
    line-height: 12px;
    color: #737373;
}

.user-status-title i {
    padding-left: 8px;
}

.toast-z-index {
    z-index: 999;
}

.toast-right {
    right: 0;
}

.toast-z-index .toast {
    min-width: 190px;
}

.progress {
    z-index: 999;
    display: none;
    height: 0;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: #D9E021;
}

[data-form-submit] {
    display: none;
}

.ads-create {
    overflow-x: hidden;
    overflow-y: auto;
}

.header-step {
    height: 2px;
    width: 100%;
    background: #C4C4C4;
}

.header-step-bar {
    background: #0654BA;
    height: 2px;
    width: 10%;
}

.left-links li {
    list-style: none;
}

.left-links li a {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 14px;
}

.left-links li a:hover {
    text-decoration: underline;
}

.admin-table {
    width: 100%;
}

.admin-table tr:hover td {
    background: #EFEFEF;
    transition: all 0.5s;
}

.admin-table td {
    font-size: 11px;
    padding: 15px;
    transition: all 0.5s;
}

.admin-table td:last-child {
    text-align: right;
    min-width: 300px
}

.admin-table.without-last-child td:last-child {
    text-align: right;
    min-width: auto !important;
}

.admin-table th {
    font-size: 11px;
    padding: 15px;
    transition: all 0.5s;
    font-weight: bold;
    text-align:center;
}

.nice {
    width: 100%;
}

.nice tr:hover td {
    background: #EFEFEF;
    transition: all 0.5s;
}

.nice td {
    font-size: 11px;
    padding: 15px;
    transition: all 0.5s;
}

.nice td:last-child {
    text-align: right;
}

.nice th {
    font-size: 11px;
    padding: 15px;
    transition: all 0.5s;
    font-weight: bold;
    text-align:center;
}

[data-icon-select] {
    cursor: pointer;
    border: 1px solid transparent;
    font-size: 24px !important;
    margin: 15px;
    padding: 15px;
    display: inline-block;
}

[data-icon-select].active {
    border: 1px solid #D9E021;
}

.admin-form-div {
    width: 100%;
}

.admin-form .form-group {
    font-weight: bold;
    padding-bottom: 15px;
}

.admin-form input[type="text"],
.admin-form input[type="email"],
.admin-form select {
    max-width: 100%;
    width: 100%;
    border-bottom: 1px solid #232323;
}

.admin-toolbar {
    margin-top: -10px;
    padding-bottom: 20px;
}

.in-admin .breadcrumbs {
    margin-top: 20px !important;
    margin-bottom: 0px !important;
}

.super-hide {
    display: none !important;
}

.ads-create h3 {
    padding-bottom: 50px;
}

.ads-create select {
    border: 1px solid black;
}

.ads-create .textarea {
    width: 100%;
    min-height: 200px;
}

.ads-create-card-header {
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: #E0E0E0;
    font-size: 15px;
    align-items: center;
    text-align: center;
    letter-spacing: 1px;
    font-weight: bold;
}

.ads-create-card-header-witout-title {
    background: #FAFAFA;
}

.ads-create-card-body {
    width: 100%;
    background: #FAFAFA;
}

.category-fields .form-group {
    text-align: left;
    font-weight: bold;
}

.upload-images {
    border: 2px dashed #0654BA;
    font-size: 12px;
}

.upload-images i {
    font-size: 60px;
    padding-bottom: 10px;
    display: block;
}

.ads-create-contracts li {
    list-style: none;
    text-align: left;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.ads-create-contracts li.without-border {
    border-bottom: 0;
}

.ads-create-contracts li a {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 1px;
    color: #0654BA;
}

.ads-show-input {
    height: 40px !important;
    line-height: 40px !important;
}

.ads-enter-max-bid-text {
    font-size: 12px;
    line-height: 20px;
    color: #CC3D00;
}

/*.ads-create-price {*/
/*    display: block;*/
/*    font-weight: bold;*/
/*    margin-bottom: 35px;*/
/*    font-size: 52px;*/
/*    line-height: 66px;*/
/*    letter-spacing: 0.03em;*/
/*    color: #232323;*/
/*}*/

/*.ads-create-price-div .form-container {*/
/*    text-align: left;*/
/*}*/

/*.ads-create-price-div #price {*/
/*    margin-top: 35px;*/
/*    margin-bottom: 35px;*/
/*    display: block;*/
/*}*/

/*.ads-create-price-info {*/
/*    font-size: 12px;*/
/*    line-height: 20px;*/
/*    margin-top: 35px;*/
/*    display: block;*/
/*}*/

.ads-create-card-body .form-group {
    position: relative;
}

.ads-create-remove-live-value {
    position: absolute;
    margin-top: 5px;
    right: 5px;
    z-index: 1;
}

.delete-photo {
    background: #dc3545;
    border-radius: 3px;
    line-height: 10px;
    color: white;
    position: absolute;
    right: 0;
    padding: 5px;
    bottom: 0;
}

.delete-photo:hover {
    color: white;
    text-decoration: underline;
}

.ads-red-message {
    background: #FF4C00;
    color: #FAFAFA;
    font-size: 15px;
    line-height: 25px;
}

.ads-green-message {
    background: #D9E021;
    color: black;
    font-size: 15px;
    line-height: 25px;
}

input[type="text"],
input[type="email"],
input[type="password"],
select {
    max-width: 100%;
    width: 100%;
}

.upload-photos-list {
    display: inline-block;
}

.upload-photos-list li {
    list-style: none;
    padding: 5px;
    float: left;
    position: relative;
}

.upload-photos-list li img {
    width: 136px;
    height: 136px;
    cursor: pointer;
    filter: grayscale(100%);
    transition: all 0.5s;
}

.upload-photos-list li img:hover {
    filter: none;
    transition: all 0.5s;
}

.upload-photo-no-photo {
    cursor: pointer;
}

.ad-photos-main {
    width: 100%;
}

.ad-photos i,
.ad-photos i {
    font-size: 14px !important;
    color: #959595;
}

.ad-photo-thumbs {
    overflow: hidden;
    display: inline-block;
}

#ads_thumbs {
    height: 68px;
    overflow: hidden;
    left: 0;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 9000px;
}

#ads_thumbs li {
    display: block;
    cursor: pointer;
    margin-left: 5px;
    margin-right: 5px;
    border: 3px solid transparent;
    float: left;
    list-style: none;
    padding: 0;
    width: 66px;
}

#ads_thumbs li.selected {
    border: 3px solid #D9E021;
    transition: all 0.5s;
}

#ads_thumbs li img {
    width: 60px;
    height: 60px;
}

.icon-youtube {
    content: "\e920";
    font-family: 'icomoon' !important;
    position: absolute;
    margin-left: 20px;
    margin-top: 18px;
    border-radius: 50%;
    padding: 5px;
    min-width: 20px;
    background: red;
    display: inline-block;
    text-align: center;
    padding-left: 6px;
}

.icon-youtube::before {
    color: white !important;
}

.icon-youtube-big {
    content: "\e920";
    font-family: 'icomoon' !important;
    position: absolute;
    margin-left: 47%;
    margin-top: 34%;
    border-radius: 50%;
    padding: 15px;
    /* min-width: 43px; */
    background: red;
    display: inline-block;
    text-align: center;
    font-size: 30px !important;
    padding-left: 19px;
}

.icon-youtube-big::before {
    color: white !important;
}

.ad-photos .carousel-item {
    list-style: none;
    float: left;
    padding: 8px;
    cursor: pointer;
}

.ad-photos .carousel-item a {
    border: 3px solid transparent;
    transition: all 0.5s;
    display: inline-block;
}

.ad-photos .carousel-item a.selected {
    border: 3px solid #D9E021;
    transition: all 0.5s;
}

.ad-photo-link {
    width: 60px;
    display: block;
    float: left;
    height: 60px;
    line-height: 60px;
    cursor: pointer;
}

.ad-photo-link i {
    margin-top: 28px;
    font-size: 14px;
}

.rotate-left {
    transform: rotate(90deg);
    display: block;
}

.rotate-right {
    transform: rotate(-90deg);
    display: block;
}

.grey-box {
    background: #FAFAFA;
}

.auction-end-time {
    color: #232323;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 1px;
}

.ads-last-bid-text {
    font-size: 12px;
    line-height: 20px;
    color: #959595;
}

.auction-bids {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 1px;
    color: #000000;
}

.auction-bids-count {
    color: #0654BA;
}

.ads-agent h3 {
    font-size: 22px;
    line-height: 28px;
    color: #232323;
    font-weight: bold;
}

.ads-agent .grey-box {
    border-top: 1px solid #D9E021;
}

.ads-grey-info {
    font-size: 12px;
    line-height: 20px;
}

.ads-actions {
    list-style: none;
}

.ads-actions li {
    border-bottom: 2px solid white;
    font-size: .85rem;
}

.ads-actions li a {
    display: block;
    padding: .75rem 0;
    color: #6c757d;
    text-decoration: none;
}

.ads-actions li a i {
    margin-right: .5rem;
}

.ads-actions li a:hover span {
    text-decoration: underline;
}

.ads-actions li i {
    padding-right: 10px;
}

.ads-actions li a i:before {
    color: #000000;
}

.ads-actions li.red a,
.ads-actions li.red a i:before {
    color: #FF0000;
}

.ads-actions li.blue a,
.ads-actions li.blue a i:before {
    color: #0654BA;
}

.p1-text {
    font-size: 22px;
    line-height: 28px;
    color: #232323;
}

.p2-text {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 1px;
}

.p3-text {
    font-size: 12px;
    line-height: 20px;
    color: #000000;
}

.dark-grey {
    color: #737373;
}

.card-menu li {
    border-bottom: 1px solid #E0E0E0;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 1px;
    list-style: none;
    margin-bottom: 20px;
}

.card-menu li a {
    color: #0654BA;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 1px;
}

.card-menu li a.selected {
    font-weight: bold;
}

.card-menu li a.disabled {
    opacity: 0.5;
}

.card-menu .count {
    float: right;
    color: #232323;
    font-size: 15px;
    line-height: 25px;
    font-weight: normal;
}

.card-mini .card-header {
    font-size: 10px;
    line-height: 16px;
    text-transform: uppercase;
}

[data-search-icon-select] {
    font-size: 30px !important;
    display: inline-block;
    margin-top: 25px;
}

.selectpicker {
    display: inline-block;
    background: transparent !important;
    border-radius: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid #232323 !important;
}

.selectpicker.dropdown-toggle.error {
    border-bottom: 1px solid red !important;
}

.dropdown-menu.inner.selectpicker {
    position: relative;
    border: 0 !important;
}

.bootstrap-select {
    width: 100%;
}

.bootstrap-select .dropdown-menu.open.show {
    width: 100%;
    border-radius: 0 !important;
    padding: 15px;
}

.bootstrap-select .dropdown-menu .dropdown-menu {
    width: 100%;
    border: 0;
}

.bootstrap-select .dropdown-menu .dropdown-menu li {
    padding: 3px;
    border-bottom: 1px solid #EFEFEF;
}

.bootstrap-select .dropdown-menu .dropdown-menu li a:hover {
    cursor: pointer;
    text-decoration: underline;
}

.bootstrap-select .dropdown-menu .dropdown-menu li .muted {
    display: none;
}


/*
/** initial setup /
.nano {
  position : relative;
  width    : 100%;
  height   : 100%;
  overflow : hidden;
}
.nano > .nano-content {
  position      : absolute;
  overflow      : scroll;
  overflow-x    : hidden;
  top           : 0;
  right         : 0;
  bottom        : 0;
  left          : 0;
}
.nano > .nano-content:focus {
  outline: thin dotted;
}
.nano > .nano-content::-webkit-scrollbar {
  display: none;
}
.has-scrollbar > .nano-content::-webkit-scrollbar {
  display: block;
}
.nano > .nano-pane {
  background : rgba(0,0,0,.25);
  position   : absolute;
  width      : 10px;
  right      : 0;
  top        : 0;
  bottom     : 0;
  visibility : hidden\9; / Target only IE7 and IE8 with this hack /
  opacity    : .01;
  -webkit-transition    : .2s;
  -moz-transition       : .2s;
  -o-transition         : .2s;
  transition            : .2s;
  -moz-border-radius    : 5px;
  -webkit-border-radius : 5px;
  border-radius         : 5px;
}
.nano > .nano-pane > .nano-slider {
  background: #444;
  background: rgba(0,0,0,.5);
  position              : relative;
  margin                : 0 1px;
  -moz-border-radius    : 3px;
  -webkit-border-radius : 3px;
  border-radius         : 3px;
}
.nano:hover > .nano-pane, .nano-pane.active, .nano-pane.flashed {
  visibility : visible\9; /* Target only IE7 and IE8 with this hack /
  opacity    : 0.99;
}

.nano .nano-slider { background: #111; } */

.bottom-0 {
    position: absolute;
    bottom: 0;
}

.timer {
    color: #FF4C00
}

.bubble {
    color: white;
    font-size: 12px;
    position: relative;
    top: -10px;
    border-radius: 50%;
    line-height: 1;
    padding: 5px;
    min-width: 10px;
    background: red;
    display: inline-block;
}

.bubble-mobile {
    left: -13px;
    top: -7px;
}

.bubble-with-count {
    color: black;
    font-size: 12px;
    position: relative;
    top: -12px;
    border-radius: 50%;
    line-height: 1;
    padding: 3px;
    min-width: 17px;
    background: #d9e021;
    display: inline-block;
    margin-left: -9px;
    text-align: center;
    font-weight: bold;
    font-family: 'Roboto';
}

.hide {
    display: none;
}

.auto {
    background: #D9E021;
    color: black;
    font-weight: bold;
    display: block;
    padding: 5px;
    border-radius: 3px;
}

.pages h1 {
    font-weight: bold;
    font-size: 42px;
    line-height: 46px;
    letter-spacing: 0.03em
}

.pages p {
    font-size: 15px;
    line-height: 25px;
}

.pages img {
    max-height:80vh;
    border-radius:10px;
    max-width:100%;
}

.big-timer .col-3 {
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    color: #232323;
    font-weight: normal;
}

.big-timer .red {
    color: #CC3D00;
}

.big-timer .col-3 span {
    font-size: 42px;
    line-height: 46px;
    letter-spacing: 0.03em;
    font-weight: bold;
}

.rounded-select {
    border-radius: 30px !important;
    border: 1px solid #232323;
    font-size: 15px;
    background: transparent !important;
    height: 54px;
    line-height: 43px;
    padding-left: 35px;
    color: #959595;
}

.per-page {
    max-width:100px;
    position: absolute;
    right:0;
}

.auction-items-index {
    margin-top:10px
}

.ads-owner-info div {
    font-size:10pt;
}

@media (min-width: 992px) {
    /* .menu-div {
    margin-top:-30px; nes notificationai
  } */


    select {
        min-width: 80px;
    }

    header {
        height: 112px;
        line-height: 112px;
    }

    .sponsors-list {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .how-it-works-step .step {
        padding-top: 0;
    }

    .how-it-works-li li {
        background: transparent;
    }

    .how-it-works-li li i {
        font-size: 112px;
    }

    .how-it-works-modal {
        height: calc(100vh - 125px);
    }

    .footer-mini .footer-items li {
        width: 33%;
    }

    footer {
        margin-top: 120px;
    }

    .ads-create-price {
        font-size: 62px;
    }

    .ads-grey-info {
        font-size: 15px;
        line-height: 25px;
        letter-spacing: 1px;
    }

    .ads-agent .grey-box {
        border-top: 0;
    }

    .ads-agent h3 {
        font-weight: normal;
    }

    .ads-options li {
        padding-bottom: 0;
    }

    .ads-options li label {
        width: 230px;
    }
}

@media (min-width: 1180px) {
    .app-container {
        width: 100%;
    }
}

@media (max-width: 991px) {


    .ads-options li label {
        display: inline-block;
    }

    .ads-options li span {
        display: inline-block;
    }


    footer .d-flex {
        flex-direction: column-reverse !important;
    }

    .app-container.no-padding-mobile {
        margin: 0;
        width: 100%;
    }

    .nopadding-mobile {
        margin: 0;
        padding: 0;
    }

    .categories-list {
        display: block;
        border-top: 0;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        width: 100%;
    }

    .categories-list i {
        margin-top: 30px;
        padding-bottom: 0;
    }

    .categories-list li {
        flex: 0;
        margin: 20px;
        width: 110px;
        height: 110px;
        background: white;
        box-shadow: 0 0 10px 5px #EFEFEF;
        display: inline-block;
        padding-left: 5px;
        overflow: hidden;
        padding-right: 5px;
    }

    .categories-list li .count {
        display: none;
    }

    .auction-items {
        margin-bottom: 50px;
    }

    .auction-items li {
        width: 100%;
        max-width: 320px;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
        position: relative;
    }

    .auction-items .title {
        font-weight: bold;
    }

    .auction-items .price {
        background: #043D87;
        height: 28px;
        width: 100px;
        line-height: 20px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .auction-items .price {
        color: #FFFFFF;
        font-size: 14px;
        line-height: 28px;
        font-weight: normal;
    }

    .auction-items .image {
        width: 100px;
    }

    .auction-items .image img {
        width: 100px;
        height: 80px;
    }

    .auction-items .title {
        width: calc(100% - 120px);
        text-align: left;
        position: absolute;
        margin-left: 120px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        display: block;
    }

    .auction-items .end-time {
        text-align: left;
        position: absolute;
        margin-left: 120px;
        background: transparent;
        margin-top: 40px;
        border-top: 0;
        width: calc(100% - 120px);
        overflow: hidden;
        line-height: 26px;
        color: #232323;
    }

    .auction-items .end-time span {
        color: #232323 !important;
    }

    .ads-options li {
        width: 100%;
        margin-right: 0;
        float: none;
        padding-top: 10px;
    }

    .ads-show-input {
        height: 52px !important;
        line-height: 52px !important;
        padding-left: 1.5rem !important;
    }

    .ads-grey-info {
        background: transparent;
    }

    .auction-items-index {
        margin-top:20px
    }
}

.ico-blue:before {
    color: #0654BA !important;
}

.noti {
    border-radius: 50%;
    line-height: 1;
    padding: 2px;
    min-width: 5px;
    height: 5px;
    background: white;
    margin-right: 5px;
    display: inline-block;
}

.noti.blue {
    background: #0654BA;
}

.blinker {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

#rules_accept {
    border: 1px solid grey;
    position: fixed;
    bottom: 0;
    left: 10vw;
    top:10vh;
    width: 80vw;
    max-height: 80vh;
    margin: 0;
    background: #FFFFFF;
    text-align: left;
    z-index: 9999999;
    font-size: 12px;
}

.box-container {
    display: contents;
}

#rules_accept .box {
    display: flex;
    flex-flow: column;
    height: 100%;
    padding:10px;
}

#rules_accept .box .box-row {
    padding:10px;
}

#rules_accept .box .box-row.header {
    flex: 0 1 auto;
}

#rules_accept .box .box-row.content {
    flex: 1 1 auto;
    overflow-y:scroll;
}

#rules_accept .box .box-row.footer {
    flex: 0 1 40px;
}

#rules_accept_div {
    width: 100%;
    height: 100%;
    z-index: 999;
    position: fixed;
    background: white;
    opacity: 0.7;
}


#rules_rules {
    height: calc(100% - 100px);
    overflow-y: scroll;
    overflow-x: hidden;
    display: inline-block;
}


#cookie_accept {
    border: 1px solid grey;
    position: fixed;
    left: 50%;
    top: 50%;
    display: inline-block;
    padding: 20px;
    margin: 0;
    background: #FFFFFF;
    text-align: center;
    z-index: 9999999;
    font-size: 12px;
    transform: translate(-50%, -50%);
}

#cookie_accept.bottom {
    top: auto;
    bottom: 0;
    transform: translate(-50%, 0);
    width:100%;
}

#cookie_accept_div {
    background: #fff;
    height: 100%;
    left: 0;
    opacity: .7;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
}

.g-translate-icon {
    height: 15px;
    vertical-align: text-top;
}

.bootstrap-tagsinput {
    display: block !important;
}

.bootstrap-tagsinput .tag {
    margin-right: 2px;
    color: black !important;
    font-weight: normal;
    background: #D9E021;
    padding: 5px;
    font-size: 12px;
    border-radius: 3px;
    color: black;
    margin-top: 3px;
    display: inline-block;
    margin-bottom: 3px;
}

.bootstrap-tagsinput {
    display: block;
}

.ads-text-timer {
    color: grey;
    font-size: 9px;
    text-align: center;
    padding-top: 5px;
}

.news-created-at {
    color: grey;
    text-align: center;
}

.flag {
    width: 24px;
    height: 24px;
}

.sort-save-fixed {
    display: none;
    position: fixed;
    bottom: 20px;
    transform: translate(-50%, -50%);
    left: 50%;
}

.cursor-pointer {
    cursor: pointer;
}

[class^=ico-] {
    color: black;
}

.iti__flag {
    background-image: url("flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("flags@2x.png");
    }
}

.iti {
    width: 100%;
}

.iti__selected-flag {
    background: transparent !important;
}

@font-face {
    font-family: 'icomoon';
    src: url('fonts/icomoon.eot?j3mznyi');
    src: url('fonts/icomoon.eot?j3mznyi#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?j3mznyi') format('truetype'),
    url('fonts/icomoon.woff?j3mznyi') format('woff'),
    url('fonts/icomoon.svg?j3mznyi#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

i {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ico-share-square-solid:before {
    content: "\e901";
}
.ico-delete:before {
    content: "\e92a";
}
.ico-x:before {
    content: "\e92b";
}
.ico-search:before {
    content: "\e92c";
}
.ico-triangle:before {
    content: "\e92d";
}
.ico-user:before {
    content: "\e92e";
}
.ico-x2:before {
    content: "\e930";
}
.ico-bubble:before {
    content: "\e931";
}
.ico-question:before {
    content: "\e932";
}
.ico-menu:before {
    content: "\e933";
}
.ico-login:before {
    content: "\e934";
}
.ico-register:before {
    content: "\e935";
}
.ico-right:before {
    content: "\e936";
}
.ico-step3:before {
    content: "\e937";
}
.ico-step2:before {
    content: "\e938";
}
.ico-step1:before {
    content: "\e939";
}
.ico-info-blue:before {
    content: "\e93a";
}
.ico-watch:before {
    content: "\e93c";
}
.ico-logout:before {
    content: "\e93d";
}
.ico-new:before {
    content: "\e93e";
}
.ico-photo-upload:before {
    content: "\e93f";
}
.ico-photo-next:before {
    content: "\e940";
}
.ico-photo-prev:before {
    content: "\e941";
}
.ico-bars:before {
    content: "\e942";
}
.ico-edit:before {
    content: "\e943";
}
.ico-time:before {
    content: "\e944";
}
.ico-heart-o:before {
    content: "\e900";
}



.ico-img {
    height: 30px;
    padding: 0;
}

.product-summary-wrapper .product-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.product-summary-wrapper table {
    width: 100%;
}

.product-summary-wrapper table th {
    font-size: .85rem;
    line-height: 1.2;
    font-weight: 400;
    color: #6c757d;
    width: 100px;
}

.product-summary-wrapper table th, .product-summary-wrapper table td {
    vertical-align: middle;
}

.product-summary-wrapper table td {
    padding: .25rem .5rem;
}

.product-summary-wrapper .ads-create-price {
    font-size: 2.25rem;
    font-weight: bold;
}

.product-summary-wrapper .big-timer {
    font-size: .75rem;
    line-height: 1;
}

.product-summary-wrapper .big-timer .row {
    background-color: #fafafa;
    padding: .5rem;
}

.product-summary-wrapper .big-timer span {
    font-size: 1.5rem;
    font-weight: bold;
}

.product-summary-footer {
    border-top: 1px solid #ccc;
    padding-top: .25rem;
    font-size: .85rem;
}

.btn {
    border-radius: 10rem;
    border: 1px solid;
    background-color: #fff;
    color: #212529;
    text-align: center;
    text-transform: uppercase;
    font-size: .85rem;
    font-weight: 600;
    padding: .5rem 1.5rem;
}

.btn:hover {
    background-color: #D9E021;
    color: #212529;
    -webkit-box-shadow: 0 3px 8px -3px rgba(0, 0, 0, 0.7);
    box-shadow: 0 3px 8px -3px rgba(0, 0, 0, 0.7);
}

.btn-primary {
    background-color: #D9E021;
    border-color: #D9E021 !important;
}

.btn-primary:hover {
    -webkit-box-shadow: 0 3px 8px -3px rgba(0, 0, 0, 0.7);
    box-shadow: 0 3px 8px -3px rgba(0, 0, 0, 0.7);
}

.btn-secondary {
    background-color: #0654BA;
    border-color: #0654BA;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400;
}

.btn-secondary:hover {
    background-color: #008bee;
    border-color: #008bee;
}

.btn-outline-secondary {
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    color: #fff;
}

.btn-xl {
    padding: .75rem 2rem;
}

.auto-bid input[type=checkbox] ~ .btn:hover {
    -webkit-box-shadow: 0 3px 8px -3px rgb(0 0 0 / 70%);
    box-shadow: 0 3px 8px -3px rgb(0 0 0 / 70%);
}

.auto-bid input[type=checkbox] ~ .btn {
    background-color: #6c7a87;
    color: #fff;
    border-color: #6c7a87;
    letter-spacing: 0;
    cursor: pointer;
}


.product-summary-wrapper table {
    width: 100%;
}

.bg-extra-lg {
    background-color: #fafafa;
}


.ico-info-blue {
    position: relative;
}

.ico-info-blue span {
    position: absolute;
    display: none;
    visibility: hidden;
    background-color: #fff;
    font-family: 'Roboto';
    font-size: .85rem;
    line-height: 1.5;
    width: 300px;
    padding: 1rem;
    text-align: left;
    border-radius: .25rem;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.ico-info-blue:hover span {
    display: block;
    visibility: visible;
}

.buy-now-price-wrapper .buy-now-price {
    font-weight: bold;
}

.how-it-works-modal {
    display: none;
    height: calc(100vh - 100px);
}

.how-it-works .ico-help-round {
    color: #6c7a87;
}

.how-it-works-step .step {
    text-align: center;
}

.how-it-works-step i {
    font-size: 4.5rem;
    color: #0654BA;
}

.sidebar .block-title {
    font-size: .85rem;
    color: #212529;
}

.block-title {
    font-weight: bold;
    letter-spacing: 1.5px;
    margin: 0 0 1.5rem;
    text-align: center;
    overflow: hidden;
    text-transform: uppercase;
    color: #6c757d;
}

.block-title::before, .block-title::after {
    content: '';
    height: 1px;
    width: 50%;
    background: #adb5bd;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.block-title::before {
    right: .75em;
    margin-left: -50%;
}

.block-title::after {
    left: .75em;
    margin-right: -50%;
}

.submit-max-bid {
    background-color: #6c7a87;
    color: #fff;
    border-color: #6c7a87;
    letter-spacing: 0;
    cursor: pointer;
}

.submit-max-bid:hover {
    background-color: #6c7a87;
    color: #fff;
    -webkit-box-shadow: 0 3px 8px -3px rgb(0 0 0 / 70%);
    box-shadow: 0 3px 8px -3px rgb(0 0 0 / 70%);
}


.breadcrambs-wrapper {
    line-height: 1.3;
    margin: .5rem 0 0;
    padding-bottom: .5rem;
}

.bg-ornage {
    background-color: #FF4C00;
    color: #fff;
}


.bg-ornage .btn-outline-secondary {
    border-color: transparent;
}

.bg-ornage .link-icon {
    color: #212529;
    font-size: 1rem;
}

.bg-ornage i {
    color: #212529;
}


.logo img {
    width: 100%;
    max-width: 80px;
}

@media screen and (min-width: 768px) {
    .logo img {
        max-width: 100px;
    }
}

.mobile-search {
    background: #EFEFEF;
    text-align: center;
    padding-top: 10px;
    display: inline-block;
    width: 100%;
}

.tree-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
}

.ads-create .tree-container {
    height: 250px;
    overflow-x: auto;
    overflow-y: auto;
}

.tree {
    width: max-content;
    display: inline-block;
    /*transform:  rotate(-90deg);*/
}

.tree * {
    box-sizing: border-box;
}


.tree {
    position: relative;
}

/*.tree ul {*/
/*    position: relative;*/
/*    margin-left: 250px;*/
/*    transition: all 0.5s;*/
/*    -webkit-transition: all 0.5s;*/
/*    -moz-transition: all 0.5s;*/
/*}*/
/*.tree ul:before {*/
/*    content: "";*/
/*    width: 50px;*/
/*    border-top: 2px solid #eee9dc;*/
/*    position: absolute;*/
/*    left: -100px;*/
/*    top: 50%;*/
/*    margin-top: 1px;*/
/*}*/

/*.tree > ul {*/
/*    margin-left: -286px;*/
/*}*/

/*!*.tree > ul:before {*!*/
/*!*    width:0;*!*/
/*!*}*!*/

/*!*.tree > ul li:after {*!*/
/*!*    width:0;*!*/
/*!*}*!*/

/*!*.tree > ul {*!*/
/*!*    margin-left:0;*!*/
/*!*}*!*/

/*.tree li {*/
/*    position: relative;*/
/*    min-height: 60px;*/
/*    list-style: none;*/
/*}*/
/*.tree li:before {*/
/*    content: "";*/
/*    height: 100%;*/
/*    border-left: 2px solid #eee9dc;*/
/*    position: absolute;*/
/*    left: -50px;*/
/*}*/
/*.tree li:after {*/
/*    content: "";*/
/*    width: 50px;*/
/*    border-top: 2px solid #eee9dc;*/
/*    position: absolute;*/
/*    left: -50px;*/
/*    top: 50%;*/
/*    margin-top: 1px;*/
/*}*/
/*.tree li:first-child:before {*/
/*    width: 10px;*/
/*    height: 50%;*/
/*    top: 50%;*/
/*    margin-top: 2px;*/
/*    border-radius: 10px 0 0 0;*/
/*}*/
/*.tree li:first-child:after {*/
/*    height: 10px;*/
/*    border-radius: 10px 0 0 0;*/
/*}*/
/*.tree li:last-child:before {*/
/*    width: 10px;*/
/*    height: 50%;*/
/*    border-radius: 0 0 0 10px;*/
/*}*/
/*.tree li:last-child:after {*/
/*    height: 10px;*/
/*    border-top: none;*/
/*    border-bottom: 2px solid #eee9dc;*/
/*    border-radius: 0 0 0 10px;*/
/*    margin-top: -9px;*/
/*}*/
/*.tree li.sole:before {*/
/*    display: none;*/
/*}*/
/*.tree li.sole:after {*/
/*    width: 50px;*/
/*    height: 0;*/
/*    margin-top: 1px;*/
/*    border-radius: 0;*/
/*}*/

/*.tree a {*/
/*    display: block;*/
/*    min-width: 150px;*/
/*    max-width:150px;*/
/*    overflow: hidden;*/
/*    padding: 5px 10px;*/
/*    line-height: 20px;*/
/*    text-align: center;*/
/*    border: 2px solid #eee9dc;*/
/*    border-radius: 5px;*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 50%;*/
/*    margin-top: -15px;*/
/*    font-size: 9px;*/
/*}*/

/*.tree span {*/
/*    display:none;*/
/*}*/

/*!*Time for some hover effects*!*/
/*!*We will apply the hover effect the the lineage of the element also*!*/
/*.tree li a:hover, .tree li a:hover + ul li a {*/
/*    background: #D9E021;*/
/*    color: #000;*/
/*    border: 2px solid #D9E021;*/
/*}*/

/*!*Connector styles on hover*!*/
/*.tree li a:hover + ul li::after,*/
/*.tree li a:hover + ul li::before,*/
/*.tree li a:hover + ul::before,*/
/*.tree li a:hover + ul ul::before {*/
/*    border-color: #94a0b4;*/
/*}*/


.tree-horizontal * {
    box-sizing: border-box;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}


.tree-horizontal {
    position: relative;
}

.tree-horizontal ul {
    position: relative;
    margin-left: 250px;

}
.tree-horizontal ul:before {
    content: "";
    width: 50px;
    border-top: 2px solid #eee9dc;
    position: absolute;
    left: -100px;
    top: 50%;
    margin-top: 1px;
}

.tree-horizontal > ul {
    margin-left: 50px;
}

/*.tree-horizontal > ul:before {*/
/*    width:0;*/
/*}*/

/*.tree-horizontal > ul li:after {*/
/*    width:0;*/
/*}*/

/*.tree-horizontal > ul {*/
/*    margin-left:0;*/
/*}*/

.tree-horizontal li {
    position: relative;
    min-height: 60px;
    list-style: none;
}
.tree-horizontal li:before {
    content: "";
    height: 100%;
    border-left: 2px solid #eee9dc;
    position: absolute;
    left: -50px;
}
.tree-horizontal li:after {
    content: "";
    width: 50px;
    border-top: 2px solid #eee9dc;
    position: absolute;
    left: -50px;
    top: 50%;
    margin-top: 1px;
}
.tree-horizontal li:first-child:before {
    width: 10px;
    height: 50%;
    top: 50%;
    margin-top: 2px;
    border-radius: 10px 0 0 0;
}
.tree-horizontal li:first-child:after {
    height: 10px;
    border-radius: 10px 0 0 0;
}
.tree-horizontal li:last-child:before {
    width: 10px;
    height: 50%;
    border-radius: 0 0 0 10px;
}
.tree-horizontal li:last-child:after {
    height: 10px;
    border-top: none;
    border-bottom: 2px solid #eee9dc;
    border-radius: 0 0 0 10px;
    margin-top: -9px;
}
.tree-horizontal li:only-child:before {
    display: none;
}
.tree-horizontal li:only-child:after {
    width: 50px;
    height: 0;
    margin-top: 1px;
    border-radius: 0;
}

.tree-horizontal a {
    display: block;
    min-width: 150px;
    max-width:150px;
    overflow: hidden;
    padding: 5px 10px;
    line-height: 20px;
    text-align: center;
    border: 2px solid #eee9dc;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -15px;
    font-size: 11px;
    color:#666;
}

.tree-horizontal a.strong {
    font-weight:bold !important;
    background: #d9e027;
}

.tree-horizontal li span {
    width: 60px;
}

.tree-horizontal li span span {
    background: black;
    color: white;
    border-radius: 5px;
    width: 20px;
    margin: 5px;
}

/*Time for some hover effects*/
/*We will apply the hover effect the the lineage of the element also*/
.tree-horizontal li a:hover, .tree-horizontal li a:hover + ul li a {
    background: #D9E021;
    color: #000;
    border: 2px solid #D9E021;
}

/*Connector styles on hover*/
.tree-horizontal li a:hover + ul li::after,
.tree-horizontal li a:hover + ul li::before,
.tree-horizontal li a:hover + ul::before,
.tree-horizontal li a:hover + ul ul::before {
    border-color: #94a0b4;
}


.tree-horizontal > ul > li:only-child:after {
    width:0;
}

.tree ul {
    padding-top: 20px;
    position: relative;

    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.tree li {
    float: left;
    text-align: center;
    list-style-type: none;
    position: relative;
    padding: 20px 5px 0 5px;

    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

/*We will use ::before and ::after to draw the connectors*/

.tree li::before, .tree li::after {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    border-top: 1px solid #ccc;
    width: 50%;
    height: 20px;
}

.tree li::after {
    right: auto;
    left: 50%;
    border-left: 1px solid #ccc;
}

/*We need to remove left-right connectors from elements without
any siblings*/
.tree li:only-child::after, .tree li:only-child::before {
    display: none;
}

/*Remove space from the top of single children*/
.tree li:only-child {
    padding-top: 0;
    float:none;
}

/*Remove left connector from first child and
right connector from last child*/
.tree li:first-child::before, .tree li:last-child::after {
    border: 0 none;
}

/*Adding back the vertical connector to the last nodes*/
.tree li:last-child::before {
    border-right: 1px solid #ccc;
    border-radius: 0 5px 0 0;
    -webkit-border-radius: 0 5px 0 0;
    -moz-border-radius: 0 5px 0 0;
}

.tree li:first-child::after {
    border-radius: 5px 0 0 0;
    -webkit-border-radius: 5px 0 0 0;
    -moz-border-radius: 5px 0 0 0;
}

/*Time to add downward connectors from parents*/
.tree ul ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 1px solid #ccc;
    width: 0;
    height: 20px;
}

.tree li a {
    /*transform:  rotate(90deg);*/
    border: 1px solid #ccc;
    padding: 5px 10px;
    text-decoration: none;
    color: #666;
    font-size: 11px;
    display: inline-block;

    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;

    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.tree a.strong {
    font-weight:bold !important;
    background: #d9e027;
}

.tree-horizontal li span {
    width: 60px;
}

.tree li span span {
    background: black;
    color: white;
    border-radius: 5px;
    width: 20px;
    margin: 5px;
}

/*Time for some hover effects*/
/*We will apply the hover effect the the lineage of the element also*/
.tree li a:hover, .tree li a:hover + ul li a {
    background: #D9E021;
    color: #000;
    border: 1px solid #D9E021;
}

/*Connector styles on hover*/
.tree li a:hover + ul li::after,
.tree li a:hover + ul li::before,
.tree li a:hover + ul::before,
.tree li a:hover + ul ul::before {
    border-color: #94a0b4;
}

.ads-create .tree {
    height:250px;
}

.tree span, .tree-horizontal span {
    display:none;
}

.ads-create .tree span, .ads-create .tree-horizontal span {
    display: inline-block !important;
}

.bid-flag {
    width: auto !important;
    height: auto !important;
    margin-top: -5px;
}

.ui-sortable-helper {
     display: table;
 }


.employees-list {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width:100%;
}

.employees-list li {
    display: inline;
    list-style: none;
    background: #FAFAFA;
    padding: 10px;
    max-width: 250px;
    border: 1px solid transparent;
    border-radius: 8px 8px 0 0;
    transition: all 1s;
    margin-top:15px;
}

.employees-list li:hover {
    border: 1px solid #D9E021;
    transition: all 1s;
}

.employees-list p, .employees-list p * {
    font-size:10pt;
}

.employees-list img.employees-flag {
    padding-right:10px;
    margin-top:-2px;
}

.employees-list img.avatar {
    border-radius:8px;
    padding-bottom:5px;
    padding-left:0;
    justify-content: center;
    width:100%;
}

.employees-list p {
    padding-left:5px;
}

.header-slideshow li, .sponsors-list li {
    visibility: hidden;
}

.icon-notification {
    filter: invert(57%) sepia(2%) saturate(0%) hue-rotate(279deg) brightness(93%) contrast(91%);
    cursor: pointer;
    padding:5px;
}

.icon-active {
    filter: invert(89%) sepia(99%) saturate(595%) hue-rotate(2deg) brightness(94%) contrast(87%);
}

.pwa-footer {
    display: none;
    position:fixed;
    bottom:0;
    left:0;
    height:calc( 10vh + 20px );
    background:white;
    width:100%;
    z-index:1;
    border-top: 1px solid #EFEFEF;
    padding-top:10px;
    padding-bottom:10px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 5px #888;
}

.pwa-footer ul {
    display: flex;
    justify-content: space-around;
    width: 100%;
    list-style: none;
}

.pwa-footer li {
    text-align: center;
}

.pwa-footer a {
    color: black;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
}


.pwa-footer img {
    display: block;
}

.pwa-footer .bubble-with-count {
    position: absolute;
    margin-left: 0;
    margin-right: -20px;
}


.blog-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width:100%;
}

.blog-list li {
    list-style: none;
    background: #FAFAFA;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: all 1s;
}

.blog-list li .title {
    font-size: 14px;
    color: #000000;
    font-weight: bold;
}

.blog-list li .short-description {
    height:100px;
    overflow:hidden;
    display:inline-block;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.blog-list li:hover {
    border: 1px solid #D9E021;
    transition: all 1s;
}

.blog-list p, .blog-list p * {
    font-size:10pt;
}

.blog-list img {
    border-radius:8px;
    padding-bottom:5px;
    padding-left:0;
    justify-content: center;
    max-width:100%;
    max-height:300px;
}

.blog-list p {
    padding-left:5px;
}

.triangle-wrapper {
    -moz-transition: transform 0.3s;
    -webkit-transition: transform 0.3s;
    transition: transform 0.3s;
}

.rotate-180 {
    transform: rotate(180deg);
}

/*@media all and (display-mode: standalone) {*/
/*    .pwa-footer {*/
/*        display:flex !important;*/
/*    }*/
/*}*/
