/*progress {
  width: 100%;
  height: 10px;
  border: none;
  background-color: #ddd;
}*/
.test {
  background-color: red !important;
}

hr {
  border: none;
  color: #47526b;
  background-color: #47526b;
  height: 1px;
  margin-top: 25px;
  margin-bottom: 20px;
}

a:link {
	color: #47526b; /*#383c45;*/
}

::-webkit-progress-bar {
    background: #47526b;
}
::-webkit-progress-value {
    background: #47526b;
}
::-moz-progress-bar {
    background: #47526b;
}

#progress {
    margin-top: 9px;
}

#skills>div {
	margin-top: 10px;
}

#skills .row img {
  margin-left: 2em;
}

#right-bar {
  border-left: solid 2px #47526b;
}

#right-bar>div {
	margin-top: 10px;
}

#game {
  width: 90px;
  height: 90px;
  margin-right: 20px;
  float: right;
  transform: rotate(10deg);
}

#game .point-game {
  width: 30px;
  height: 30px;
  float: left;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
}

#game .point-game:nth-child(4), 
#game .point-game:nth-child(5), 
#game .point-game:nth-child(6) {
  border-top: 1px solid #47526b;
  border-bottom: 1px solid #47526b;
}

#game .point-game:nth-child(2), 
#game .point-game:nth-child(5), 
#game .point-game:nth-child(8) {
  border-left: 1px solid #47526b;
  border-right: 1px solid #47526b;
}

#game button {
  color: #47526b;
  background-color: #1E1E1E;
  border: 1px solid #47526b;
  overflow: hidden;
  visibility: hidden;
}

#out {text-align: center;}

#skills span {
    display: none;
    float: left;
}

.skl {
    height: 50px;
}

.full-name
{
    padding: 30px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.full-name h3
{
    margin: 0;
    padding: 0 70px;
    color: #111;
}

.full-name h3 span
{
    display: table-cell;
    margin: 0;
    padding: 0;
    animation: animate 3s linear infinite;
}

.full-name h3 span:nth-child(1)
{
    animation-delay: 0s;
}

.full-name h3 span:nth-child(2)
{
    animation-delay: 0.25s;
}

.full-name h3 span:nth-child(3)
{
    animation-delay: 0.5s;
}

.full-name h3 span:nth-child(4)
{
    animation-delay: 0.75s;
}

.full-name h3 span:nth-child(5)
{
    animation-delay: 1s;
}

.full-name h3 span:nth-child(6)
{
    animation-delay: 1.25s;
}

.full-name h3 span:nth-child(8)
{
    animation-delay: 1.5s;
}

.full-name h3 span:nth-child(9)
{
    animation-delay: 1.75s;
}

.full-name h3 span:nth-child(10)
{
    animation-delay: 2s;
}

.full-name h3 span:nth-child(11)
{
    animation-delay: 2.25s;
}

.full-name h3 span:nth-child(12)
{
    animation-delay: 2.5s;
}

.full-name h3 span:nth-child(13)
{
    animation-delay: 2.75s;
}

@keyframes animate
{
    0%,100%
    {
        color: #fff;
        filter: blur(2px);
        -webkit-text-shadow: 0 0 10px #00b3ff,
                            0 0 20px #00b3ff,
                            0 0 40px #00b3ff,
                            0 0 80px #00b3ff,
                            0 0 120px #00b3ff,
                            0 0 200px #00b3ff,
                            0 0 300px #00b3ff,
                            0 0 400px #00b3ff;
        -moz-text-shadow: 0 0 10px #00b3ff,
                         0 0 20px #00b3ff,
                         0 0 40px #00b3ff,
                         0 0 80px #00b3ff,
                         0 0 120px #00b3ff,
                         0 0 200px #00b3ff,
                         0 0 300px #00b3ff,
                         0 0 400px #00b3ff;
        text-shadow: 0 0 10px #00b3ff,
                    0 0 20px #00b3ff,
                    0 0 40px #00b3ff,
                    0 0 80px #00b3ff,
                    0 0 120px #00b3ff,
                    0 0 200px #00b3ff,
                    0 0 300px #00b3ff,
                    0 0 400px #00b3ff;
    }
    5%,95%
    {
        color: #111;
        filter: blur(0px);
        -webkit-text-shadow: none;
        -moz-text-shadow: none;
        text-shadow: none;
    }
}

.full-name>span:nth-child(1)
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #1E1E1E, #1779ff);

    animation: animate1 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate1
{
    0%
    {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100%
    {
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.full-name>span:nth-child(2)
{
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #1E1E1E, #1779ff);

    animation: animate2 2s linear infinite;
}

@keyframes animate2
{
    0%
    {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100%
    {
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
}

.full-name>span:nth-child(3)
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, #1E1E1E, #1779ff);

    animation: animate3 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate3
{
    0%
    {
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }
    100%
    {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.full-name>span:nth-child(4)
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to top, #1E1E1E, #1779ff);/*0c002b*/

    animation: animate4 2s linear infinite;
}

@keyframes animate4
{
    0%
    {
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
    100%
    {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

.box-cv
{
    color: /*#1670f0;*/ #7a86a2; /*#47526b;*/
    /*background-color: #0c002b;*/
    /*background-color: rgb(38, 31, 31);*/
    border-left: 3px solid;
    border-right: 3px solid;
    padding-top: 30px;
    padding-bottom: 40px;
}

.my-foto
{
	width: 100%;
	height: 100%;
  opacity: 0.65;
	border-radius: 50px;
	object-fit: cover;
}

.glyphicon-earphone
{
 	font-size: 60px;
 	color: green;
}

@keyframes tel
{
 50%{transform:rotate(45deg)}
 100%{transform:rotate(-45deg)}
}

.tel-anim
{
 animation-name: tel;
 animation-duration: 1s;
 animation-iteration-count: infinite;
}

.icon
{
  display: inline-block;
  width: 2em;
  height: 2em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.icon-large
{
	display: inline-block;
  	width: 3em;
  	height: 3em;
  	stroke-width: 0;
  	stroke: currentColor;
  	fill: currentColor;
}

.inversion img
{
transition: 1s;
}

.inversion img:hover
{
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

#out-result
{
  width: 100%;
  text-align: right;
  border: 1px solid #47526b;
  border-radius: 0;
  -webkit-box-shadow: inset 2px 2px 7px rgba(0,0,0,0.5);
  -moz-box-shadow: inset 2px 2px 7px rgba(0,0,0,0.5);
  box-shadow: inset 2px 2px 7px rgba(0,0,0,0.5);
  resize: none;
}

#result
{
  margin-bottom: 5px;
}

#calculate-math>div>div
{
  padding: 0;
  height: 2.77em;
}

.box-calculator
{
  overflow: hidden;
}

.box-calculator>.row
{
  margin-top: 120px;
  margin-bottom: 50px;
  transform: rotate(25deg);
}

.box-calculator>div>div {
  border: 2px solid #47526b;
  border-radius: 10px;
  overflow: hidden;
}

.calculate {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}

.buttons .col-md-3, .buttons .col-md-6 {
  padding: 0;
}

.buttons {
  border: 1px solid #47526b;
}

.buttons button {
  width: 100%;
  height: 3em;
  background-color: #1E1E1E;
  color: #47526b;
  cursor: pointer;
  border: 0.5px solid #47526b;
  text-align: center;
}
 
.box-calculator .icon {
position: relative;
border-radius: 7px;
border: 1px solid #47526b;
box-sizing: border-box;
width: 30px;
height: 15.5px;
left: 17px;
top: 20px;
margin-right: 8px;
overflow: hidden;
-webkit-transition: all .25s linear;
-moz-transition: all .25s linear;
-o-transition: all .25s linear;
transition: all .25s linear;
cursor: pointer;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.box-calculator .icon .handle {
width: 12px;
height: 12px;
border-radius: 7px;
position: absolute;
top: 1px;
background: #47526b;
box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2), 0px 4px 23px 0 rgba(0, 0, 0, 0.08), -2px 4px 4px 0 rgba(0, 0, 0, 0.1);
text-decoration: none;
font-size: 4.4px;
color: #D8DAD9;
line-height: 10px;
text-align: center;
left: 1px;
-webkit-transition: all 0.4s cubic-bezier(0.33, 1.6, 0.66, 1);
-moz-transition: all 0.4s cubic-bezier(0.33, 1.6, 0.66, 1);
-o-transition: all 0.4s cubic-bezier(0.33, 1.6, 0.66, 1);
transition: all 0.4s cubic-bezier(0.33, 1.6, 0.66, 1);
}
.box-calculator .icon .handle:before {
-webkit-font-smoothing: antialiased;
}
.box-calculator .icon .handle:after {
content: "ON";
font-size: 6px;
font-weight: 100;
color: #FFF;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
position: absolute;
left: -11px;
}
.box-calculator .icon.on {
background: #FFA400;
}
.box-calculator .icon.on .handle {
left: 14.5px;
color: #FFA400;
}
.box-calculator .icon.on.green {
background: #B1CA39;
}
.box-calculator .icon.on.green .handle {
color: #B1CA39;
}

.graph {
    width: 100%;
    height: 30px;
    border: 1px solid #888;
    color: #ccc;
    background: rgb(168,168,168);
    background: -moz-linear-gradient(top, rgba(168,168,168,1) 0%, rgba(204,204,204,1) 23%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(168,168,168,1)), color-stop(23%,rgba(204,204,204,1)));
    background: -webkit-linear-gradient(top, rgba(168,168,168,1) 0%,rgba(204,204,204,1) 23%);
    background: -o-linear-gradient(top, rgba(168,168,168,1) 0%,rgba(204,204,204,1) 23%);
    background: -ms-linear-gradient(top, rgba(168,168,168,1) 0%,rgba(204,204,204,1) 23%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a8a8a8', endColorstr='#cccccc',GradientType=0 );
    background: linear-gradient(top, rgba(168,168,168,1) 0%,rgba(204,204,204,1) 23%);
    position: relative;
}

#bar {
    height: 29px;
    background: rgb(30, 30, 30);
    background: -moz-linear-gradient(top, rgba(71, 82, 107,1) 0%, rgba(30, 30, 30,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(71, 82, 107,1)), color-stop(100%,rgba(30, 30, 30,1)));
    background: -webkit-linear-gradient(top, rgba(71, 82, 107,1) 0%,rgba(30, 30, 30,1) 100%);
    background: -o-linear-gradient(top, rgba(71, 82, 107,1) 0%,rgba(30, 30, 30,1) 100%);
    background: -ms-linear-gradient(top, rgba(71, 82, 107,1) 0%,rgba(30, 30, 30,1) 100%);
    background: linear-gradient(top, rgba(71, 82, 107,1) 0%,rgba(30, 30, 30,1) 100%);
    border-top: 1px solid #47526b;
}

#bar p {
    position: absolute;
    text-align: center;
    width: 100%;
    margin: 0;
    line-height: 30px;
}

#skills .row:nth-child(6)  #progress,
#skills .row:nth-child(7)  #progress,
#languages .row:nth-child(3) #progress {
    color: #47526b;
}

#languages .row {
    margin-top: 20px;
}

#languages #progress {
    margin-top: 0;
}

@media (max-width: 992px) {
  body {
    background-color: #fff;
  }

  body div {
    overflow: hidden;
  }
  progress {
    background: white !important;
  }
  #right-bar {border-left: none;}
  #right-bar>div>div div {
    float: left !important;
    margin-left: 0 !important;
  }
  #right-bar .text-right {
    font-size: 0.85em;
  }
  #skills .row img {
    margin-left: 2em;
  }
  #skills progress {
    width: 100%;
  }
  #skills .row>div {float: left; display: inline-block;}
  #skills .row>div:nth-child(2) {width: 70%;}
  #languages .text-right {text-align: left;}
  #languages>.row {width: 100%;}
  #languages>.row>div:nth-child(2) {width: 70%;}
  .my-foto {
    opacity: 1;
  }
  .container {
    max-width: 100% !important;
    margin: 0 !important;
  }
  .hidden-xs {
    visibility: hidden;
    display: none;
  }
}