/* Enter Your Custom CSS Here */
.site-branding .custom-logo
{
	border: 5px solid #841515;
    border-radius: 40px;
	margin: 0px 0 -0.5em;
}

.widget-title {
    border-bottom: 1px solid #e8e8e8;
}

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}
.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.btn-warning.active.focus, .btn-warning.active:focus, .btn-warning.active:hover, .btn-warning:active.focus, .btn-warning:active:focus, .btn-warning:active:hover, .open>.dropdown-toggle.btn-warning.focus, .open>.dropdown-toggle.btn-warning:focus, .open>.dropdown-toggle.btn-warning:hover {
    color: #fff;
    background-color: #d58512;
    border-color: #985f0d;
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
.btn-warning.active, .btn-warning:active, .open>.dropdown-toggle.btn-warning {
    color: #fff;
    background-color: #ec971f;
    background-image: none;
    border-color: #d58512;
}
.btn-warning:hover {
    color: #fff!important;
    background-color: #ec971f;
    border-color: #d58512;
}
.btn-warning.focus, .btn-warning:focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d;
}
.btn.active, .btn:active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}

.btn.focus, .btn:focus, .btn:hover {
    color: #333;
    text-decoration: none;
}
.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.btn-success.active.focus, .btn-success.active:focus, .btn-success.active:hover, .btn-success:active.focus, .btn-success:active:focus, .btn-success:active:hover, .open>.dropdown-toggle.btn-success.focus, .open>.dropdown-toggle.btn-success:focus, .open>.dropdown-toggle.btn-success:hover {
    color: #fff;
    background-color: #398439;
    border-color: #255625;
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
.btn-success.active, .btn-success:active, .open>.dropdown-toggle.btn-success {
    color: #fff;
    background-color: #449d44;
    background-image: none;
    border-color: #398439;
}
.btn-success:hover {
    color: #fff!important;
    background-color: #449d44;
    border-color: #398439;
}
.btn-success.focus, .btn-success:focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625;
}
.btn.active, .btn:active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}
.btn.focus, .btn:focus, .btn:hover {
    color: #333;
    text-decoration: none;
}
button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, button:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus, button:active, input[type="button"]:active, input[type="reset"]:active, input[type="submit"]:active {
    color: #fff;
    color: var(--button-hover-text-color);
    background-color: #D5001A;
    background-color: var(--button-hover-color);
}
.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}


/*Profil Başlangıç*/

.profile{
  box-sizing: border-box;
  /*max-width: 380px;*/
  padding-top: 40px;

  font-family: "Roboto Condensed", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 400;  
  color: #222;
  
  background-color: #fff;
  /* box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12), 0 3px 1px -2px rgba(0, 0, 0, .2);*/
  text-align: center;
  box-shadow: 0px 0px 20px 3px #9a9a9a;
  position: relative;
  z-index: 0;
  overflow: hidden;
	margin-bottom: 50px;
    margin-top: 20px;
}

.profile:before{
  content: "";
  width: 85px;
  height: 50px;

  transition: transform .5s cubic-bezier(0.42, 0.04, 0.13, 0.92);
  border-radius: 50%;
  background-color: #7B1FA2;

  position: absolute;
  top: -70px;
  left: 50%;
  z-index: -1;  
  transform: translateX(-50%) scale(7);
}

.profile:hover:before{
  transition: transform .7s cubic-bezier(0.66, 0.09, 0, 1.31);
  transform: translateX(-50%) translateY(200%) scale(25);
}

.profile:hover, .profile:hover .profile__value, .profile:hover .profile__social{
  color: #fff;
}

.profile:hover .profile__group, .profile:hover .profile__avatar{
  border-color: #fff;
}

.profile:hover .profile__stats{
  background-color: #690394;  
}

.profile__header{
  transition: color .4s ease-out .1s;  
}

.profile__avatar{
  border-radius: 4px;
  width: 400px;
  height: 230px;

  border: 6px solid #7B1FA2;
  transition: border-color .4s ease-out .1s;
}

.profile:hover .profile__avatar{
  transition-delay: .2s;
}

.profile__name{
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 30px;
}

.profile__stats{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;  

  margin-top: 25px;
  margin-bottom: 25px;  

  background-color: #f0f0f0;
  padding-top: 25px;
  padding-bottom: 25px;
  transition: background-color .4s ease-out .1s;
}

.profile:hover .profile__stats{
  transition-delay: .2s;
}

.profile__group{
  box-sizing: border-box;
  width: 33.3333333%;
  transition: border-color .4s ease-out .1s;

  border-right: 1px solid #BDBDBD;
  padding-left: 2%;
  padding-right: 2%;
}

profile:hover .profile__group{
  transition-delay: .4s;
}

.profile__group:nth-child(n+4){
  margin-top: 20px;
}

.profile__group:nth-child(3n+3){
  border-right: none;
}

.profile__param, .profile__value{
  display: block;
  transition: color .4s ease-out .1s;
}


.profile__value{
  font-size: 20px;
  color: #7B1FA2;
  font-weight: 700;
}

.profile__socials{
  padding-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile__social{
    border: 2px solid currentColor;
    color: #ffffff!important;
    border-radius: 5px;
    transition: color .4s ease-out .3s;
    margin-left: 10px;
    margin-right: 10px;
    padding: 6px 10px 6px 10px;
    font-weight: bold;
    font-size: 20px;
    position: relative;
    background-color: #0f7b18;
    text-decoration: none!important;
}

.profile__social-icon{
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.profile__social-name{
  position: absolute;
  left: -9999px;
}

span.profile__social-namex {
    color: #fff;
}

/*
* demo styles
*/



.page__container{
  padding-left: 10px;
  padding-right: 10px;
  margin: auto;
}
@media (max-device-width: 480px) {
   .profile__value {
    font-size: 15px;
    }
}

/*Profil Bitiş*/



/* Buton */

.yazibuttons {
    margin: 10%;
    text-align: center;
}

.yazibtn-hover {
    /* width: 200px; */
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    /* margin: 20px; */
    height: 55px;
    text-align:center;
    border: none;
    background-size: 300% 100%;

    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.yazibtn-hover:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.yazibtn-hover:focus {
    outline: none;
}

.yazibtn-hover.color-6 {
    background-image: linear-gradient(to right, #009245, #FCEE21, #00A8C5, #D9E021);
    box-shadow: 0 4px 15px 0 rgba(83, 176, 57, 0.75);
}
/* Buton Bitiş */





@media (max-device-width: 480px) {

	.tablepress-id-1 img {
		max-height: 20px;
		max-width: 65px;
	}
	.tablepress-id-1 .column-2
	{display:none;
	}

	.tablepress-id-1 {
		font-size: 11px;
	}

	.tablepress-id-1 th {
		padding: 4px;
		text-align: center;
	}
	.tablepress-id-1 td {
		text-align: center;
	}

	.tablepress-id-1 .row-1 {
		font-size: 9px;
	}

	.tablepress-id-1 span {
		font-size: 11px !important;
		padding: 3px 5px !important;
	}

	.tablepress-id-1 span i {
		font-size: 11px !important;
	}
	.tablepress-id-1 .btn {
		padding: 6px 4px;
    font-size: 9px;
	}
	.peraframe
	{
		display:none;
	}
	.profile__value {
    font-size: 15px;
}
	.site-branding .custom-logo {
    border: none!important;
    border-radius: 0px!important;
    margin: 0px 0 -1.5em;
    width: 20%;
}
	.header-main {
    display: block;
    text-align: center;
    padding-top: 0px!important;
    padding-bottom: 1.5rem;
    background-color: #7b0801;
}
}

@media only screen and (min-width: 75em) {
.header-main {
	padding-top: 0.2em;
  padding-bottom: 0.8em;
	background: -webkit-linear-gradient(top,rgb(255 51 51) 0,rgb(144 0 0) 100%);
}
}

@media only screen and (min-width: 20em) {
.site-title {
    font-size: 1.25rem;
}
}




.site-title a:link, .site-title a:visited {
    color: #202020;
    color: #ffffff;
}