
@import url("https://p.typekit.net/p.css?s=1&k=nvn3gpi&ht=tk&f=32211.32212.42831.42832.32217.32219&a=98383959&app=typekit&e=css");

* {
	box-sizing: border-box;
	&:after,&:before {
		box-sizing: border-box;
	}
}

html {
	height: 100%;
}

body {
    margin: 0;
    padding: 0;
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-color: #CD4631;
	font-family: Circe,Arial,Tahoma, sans-serif;
}

.wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
    width: 100%;
}

.container {
    width: 320px;
    margin: 0 auto;
}

.header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
    margin-bottom: 30px;
    padding-top: 10px;
}


.okwine-bot__heading {
	font-size: 20px;
	color: #fff;
	margin: 0 0 15px;
	padding: 0;
	text-align: center;
}

.okwine-bot__list {
	list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.okwine-bot__list-app {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: space-between;
}

.okwine-bot__item-app {
    width: 48%;
}

.okwine-bot__link-app {
    display: block;
    padding: 0;
    width: 100%;
}

.okwine-bot__app-img {
    display: block;
    width: 100%;
}
.okwine-bot__app-img img{
    width: 100%;
}



.okwine-bot__link {
	background-color: #fff;
    border: 1px solid #fff;
	padding: 5px 5px;
	border-radius: 40px;
	margin-bottom: 10px;
	display: flex;
    align-items: center;
    position: relative;
    text-align: center;
    height: 50px;
    cursor: pointer;
    transition: all .5s ease;
    text-decoration: none;
}

.okwine-bot__link:hover {
    background-color: transparent;
}

.okwine-bot__link:hover .okwine-bot__link-text{
    color: #fff;
}

.okwine-bot__link-text{
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    padding-left: 15px;
    color: #333;
}

.okwine-bot__link-img {
    width: 40px;
    height: 40px;
	overflow: hidden;
	display: inline-block;
	border-radius: 50%;
    position: absolute;
    left: 5px;
}

.okwine-bot__link-img img {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 420px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }
}