/* Copyright (C) YOOtheme GmbH, YOOtheme Proprietary Use License (http://www.yootheme.com/license) */

/*
 * Custom Style Sheet - Use this file to style your content
 */

.box-hint-2 {
  margin: 60px auto;
  padding: 5em 10em;
  width: 90%;
  border: 3px solid #f4424b;
  border-radius: 30px;
}

.red-box {
  width: 90%;
  padding: 10px;
  margin: 15px auto;
  border: 3px solid #f4424b;
  border-radius: 15px;
  clear: left;
}

.blue-box {
  border: 1px solid #DDD;
  background: #ebf5fa
  padding: 40px 0px;
  position: relative;
  text-align: center;
  width: 100%;
}

.blue-box img, p, h3 {
  margin: 10px auto;
  text-align: left;
  padding: 10px;
}

ul:not([class]),
ol:not([class]) {
    padding-left: 0;
    padding-right: 2.5em;
}

/*
 * Пробуем излечить списки от наплывания на картинки
 */

ul:not([class]) li,
ol:not([class]) li {
    transform: translateX(1.5em);
    animation: fixlists 1s;
}

@keyframes fixlists {
    0% {
        text-indent: -0.001em;
    }
    100% {
        text-indent: 0;
    }
}