/*
####################################################################################
-- make it @ 02/02/2017 by KMK
-- This to make loader roundable icon .
####################################################################################
*/

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.more {
	background-color: #ededed;
	color: ##0c518b;
	display: inline-block;
	font-size: 14px;
	line-height: 30px;
	width: 100px;
	text-align: center;
	text-decoration: none;
}
.more:hover, .message input[type='submit']:hover {
	background-color: #f99600;
	color: #000;
}


////////////////////////////////////////////////////
// This for  Image in album mouse over 
////////////////////////////////////////////////////

 
.containerkmk {
    position: relative;
    width: 50%;
}

.image {
  opacity: 1;
  display: block;
  width: 50;
  height: 50;
  transition: .5s ease;
  backface-visibility: hidden;
  border-radius: 50%;
}

.imageround {
  opacity: 1;
  display: block;
  width: 126;
  height: 74;
  transition: .5s ease;
  backface-visibility: hidden;
  border-radius: 10%;
  
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%)
}

.containerkmk:hover .image {
  opacity: 0.3;
}

.containerkmk:hover .middle {
  opacity: 1;
}

.containerkmk:hover .imageround {
  opacity: 0.3;
}


.text {
  background-color: #4CAF50;
  color: white;
  font-size: 16px;
  padding: 16px 32px;
}


////////////////////////////////////////////

/*
####################################################################################
-- make it @ 02/04/2017 by KMK
-- This to make grad of image dependent on avialiabl area .
####################################################################################
*/

.wrapper {
     width: 250px;
      float: right;}
      .wrapper img {
            float: left;
            width: 100px;
            height: 100px;
            margin: 5px 7px;}