/* Add News Styles */
/* by Brankov */

.add_news__button {
    display: block;
    position: fixed;
    bottom: 23px;
    right: 23px;
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
	
	background-color: rgba(200,200,200,0.5);
	z-index: 901;
}

.add_news__button img {
	display:block;
	margin: 7px auto;
	height: 50px;
	opacity: 0.5;
}


.add_news__button:hover {
	/* background-color: rgba(200,0,0,0.9);*/
}

.add_news__button:hover img {
	opacity: 0.9;
}


.add_news__form {
}

.modal--news .modal-header {
  background-image: url("../images/news_bg.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
@media (min-width: 992px) {
  .modal--news {
	  width: 800px;
	}
	
  .modal--news .modal-header {
    height: 90px;
  }
}

.modal--news .modal-header .close {
  width: 33px;
  height: 33px;
  padding: 0;
  line-height: 33px;
  border-radius: 50%;
  background-color: #31404b;
  color: #fff;
  opacity: 1;
  margin: 0;
  text-shadow: none;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.modal--news .modal-header .close span {
  margin-left: 2px;
}

.modal--news .modal-header .close:hover {
  background-color: #ffcc00;
}

.modal--news .modal-body {
  padding: 0;
}

.modal--news .modal-account-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.modal--news .modal-account__item {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  padding: 20px;
}

@media (min-width: 768px) {
  .modal--news .modal-account__item {
    -ms-flex-preferred-size: 100%; /* 50%; BRANKOV */
        flex-basis: 100%; /* 50%; BRANKOV */
    padding: 30px 20px;
  }
  .modal--news .modal-account__item:nth-child(2) {
    border-left: 1px solid #e4e7ed;
  }
}

@media (min-width: 992px) {
  .modal--news .modal-account__item {
    -ms-flex-preferred-size: 50%; 
        flex-basis: 50%; 
    padding: 50px 38px;
  }
}

.modal--news .modal-account__item--logo {
  background-image: url("../images/news_bg.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  color: #fff;
  position: relative;
}

@media (max-width: 991px) {
  .modal--news .modal-account__item--logo {
    display: none;
  }
}

.modal--news .modal-account__item--logo a {
  color: #9a66ca;
  font-weight: bold;
}

.modal--news .modal-account__item--logo a:hover {
  color: #fff;
}


.add_news__thumb {
	width: calc(25% - 3px);
	margin-right: 3px;
	display:inline-block;
}

.add_news__del_pic {
	width: 33px;
    height: 33px;
    padding: 0;
    line-height: 30px;
    border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.6);
    background-color: rgba(49,64,75,0.6);
    color: #fff;
	text-align:center;
	font-weight:bold;
    opacity: 1;
    margin: 0;
    text-shadow: none;
    position: relative;
    top: 0;
    right: 0;
    -webkit-transform: translate(120%, 120%);
    transform: translate(120%, 120%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.add_news__del_pic:hover {
	background-color: #ffcc00;
}